Advertisement
IsaacScripts

Anticheat (customize seu descrição de kick)

Jan 30th, 2021
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local player = game.Players.LocalPlayer
  2.  
  3. repeat wait() until player.Character
  4. local character = player.Character
  5. local humanoid = character:WaitForChild("Humanoid")
  6. local KickMessage = "Cheater! Dont Use Never More!"
  7.  
  8. while true do
  9.     wait()
  10.     if humanoid.WalkSpeed > 16 or humanoid.JumpPower > 50 or humanoid.MaxHealth > 100 or humanoid.Health >100 then
  11.         player:Kick(KickMessage)
  12.     end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement