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

How To Add Server Sided Checks For An Anti Exploit?

Asked by 4 years ago

Is it possible to check if someone's walkspeed has changed using just a normal script? I want to do something like this but in a normal script not local: if game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed ~= 16 then game:GetService("Players").LocalPlayer:kick() end

In my normal script so far I have: game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local Humanoid = character:WaitForChild("Humanoid") Humanoid.WalkSpeed = 100 end) end)

This works, but if i try to do a check for this it doesnt work. game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local HumanoidRootPart = character:WaitForChild("HumanoidRootPart") local Humanoid = character:WaitForChild("Humanoid") while wait() do if Humanoid.WalkSpeed ~= 16 then player:kick() end end end) end)

IDK If this is possible or not but if it is pls help lol. If its not then what would be an alternative (other than local scripts)?

0
put this in code block format sean_thecoolman 189 — 4y
0
also ur script should work as you've said bc it already checks for a changed walkspeed value, or you could print something when it gets detected sean_thecoolman 189 — 4y

2 answers

Log in to vote
0
Answered by
iivSnooxy 248 Moderation Voter
4 years ago

I do t think you need one because FilteringEnabled does it all for you so even if a hacker comes and hacks in your game it will only happen on his screen not anyone else. :)

Upvote and Accept if helped!

2
This isn't exactly true, at least in the case of a humanoid's WalkSpeed. While yes, other clients won't actually see the exploiting client's WalkSpeed value itself change, they will see the exploiting client move faster as a direct result of them exploiting. GrandSnaf 77 — 4y
0
Ahhh, ok is that avoidable? iivSnooxy 248 — 4y
0
Wait you scripted shark attack? iivSnooxy 248 — 4y
0
Can you help me with a script I’ve been wanting to do for a while? iivSnooxy 248 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

Simple Just Do A Loop

01while wait() do
02    for i,plr in pairs(game.Players:GetPlayers()) do
03        if plr.Character ~= nil then
04            local hum = plr.Character:FindFirstChildOfClass("Humanoid")
05            if hum then
06                if hum.WalkSpeed > 16 or hum.WalkSpeed < 16 then
07                    plr:Kick("Speed Exploiting Is Not Tolerated!")
08                end
09            end
10        end
11    end
12end
0
thank you :D TowstedShoes 2 — 4y
0
No Problem Harry_TheKing1 325 — 4y

Answer this question