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:
01 | local plr = game.Players.LocalPlayer |
02 | local plrc = plr.Character.Humanoid |
03 | local admins = { "noob" } -- People who don't get kicked. |
04 | debounce = true |
05 | for i = 1 , #admins do |
06 | if game.Players.LocalPlayer = = admins [ i ] then |
07 | debounce = false |
08 | end |
09 | end |
10 | if 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() |
16 | end |
17 | if workspace.Gravity = = not 196.2 then |
18 | workspace.Gravity = 196.2 |
19 | end |
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
01 | local admins = { "noob" } -- People who don't get kicked. |
02 | debounce = true |
03 | for 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 |
09 | end |
10 |
11 | while 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 |
If I made a mistake or you have a question, just ask :)