You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
Hi i have a solution to your problem!!
Go to your client.lua and replace the
function GetJob()
local PlayerData = PlayerData()
if Framework == 1 then
return PlayerData.job.name ,PlayerData.job.grade.level
elseif Framework == 2 then
return PlayerData.job.name, PlayerData.job.grade
end
end
with
function GetJob()
local Player = PlayerData()
if not Player or not Player.job then
return nil, nil
end
if Framework == 1 then
return Player.job.name, Player.job.grade.level
elseif Framework == 2 then
return Player.job.name, Player.job.grade
else
return nil, nil
end
end
then it should work
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
it cant find an job on client 51
The text was updated successfully, but these errors were encountered: