RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a roblox anticheat if your walkspeed is over 16 it gets set back to 16"
-- server script game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") humanoid.WalkSpeed = 16 humanoid.Changed:Connect(function(property) if property == "WalkSpeed" and humanoid.WalkSpeed > 16 then humanoid.WalkSpeed = 16 end end) end) end)