Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

game.Players.LocalPlayer is nil, also won't change the game.Workspace gravity. How to fix?

Asked by 7 years ago
Edited 7 years ago

So, I am making an anti-hack script. But, it doesn't work. It looks like there are no typo's, and there are no errors(underlined red). But, in the output, it says:

10:59:56.639 - ServerScriptService.Anti Hack:2: attempt to index local 'plr' (a nil value)

, also, when I change the game.Workspace gravity to 0 while testing, it doesn't turn it back to 196.2. Any help is appreciated. Here's the script:

01local plr = game.Players.LocalPlayer
02local plrc = plr.Character.Humanoid
03local admins = {"noob"} -- People who don't get kicked.
04debounce = true
05for i=1, #admins do
06    if game.Players.LocalPlayer == admins[i] then
07        debounce = false
08    end
09end
10if not plrc.WalkSpeed == 16 or not plrc.JumpPower == 50 then
11    local msg = Instance.new("Hint", workspace)
12    msg.Text = "Exploiter Detected! Kicking..."
13    plr:Kick("nice dirty hacks lol")
14    wait(5)
15    msg:Destroy()
16end
17if workspace.Gravity == not 196.2 then
18    workspace.Gravity = 196.2
19end
0
this script wouldn't work if filtering enabled was on, because walkspeed would still show as 16. i think you should detect the velocity of the torso or something like that. this doesn't mean that you shouldn't use fe, i encourage you to use it since the game will be way more secure brokenVectors 525 — 7y

1 answer

Log in to vote
2
Answered by 7 years ago

You're trying to access the local player from a serverscript.

This isn't possible, there are a few ways to get players though (playeradded, etc)

This doesn't mean you can make it client because :Kick() would not work then

To fix it I recommend using for i,v in pairs like this

01local admins = {"noob"} -- People who don't get kicked.
02debounce = true
03for i=1, #admins do
04    for index, plr in pairs(game.Players:GetChildren()) do
05        if plr == admins[i] then
06            debounce = false
07        end
08    end
09end
10 
11while wait(1) do
12    for index, plr in pairs(game.Players:GetPlayers()) do
13        local char = plr.Character or plr.CharacterAdded:wait()
14        local plrc = char:WaitForChild('Humanoid')
15        if not plrc.WalkSpeed == 16 or not plrc.JumpPower == 50 then
View all 27 lines...

If I made a mistake or you have a question, just ask :)

0
You don't have to say "not" all the time. Just say ~= and it's faster. User#19524 175 — 7y
1
I copied his script and fixed it lol, I didn't rewrite it completely, but you're right User#20388 0 — 7y
Ad

Answer this question