Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --PresidentIvan
- --This is some of the simple cmds that can kick a player out!
- local Players = game:GetService("Players")
- local LocalPlayer = Players.LocalPlayer
- repeat wait() until LocalPlayer.Character
- repeat wait() until LocalPlayer:FindFirstChild("Backpack")
- local Character = LocalPlayer.Character
- local Backpack = LocalPlayer:WaitForChild("Backpack")
- --BTools
- Backpack.ChildAdded:Connect(function(Obj)
- if Obj:IsA("HopperBin") then
- LocalPlayer:Kick("Stop exploiting or else...")
- end
- end)
- --Fly
- Character:WaitForChild("HumanoidRootPart").ChildAdded:Connect(function(Obj)
- if Obj:IsA("BodyGyro") or Obj:IsA("BodyVelocity") or Obj:IsA("BodyPosition") then
- LocalPlayer:Kick("Stop exploiting or else...")
- end
- end)
- --FE Godmode/the humanoid remover
- Character.ChildRemoved:Connect(function(Obj)
- if Obj:IsA("Humanoid") then
- LocalPlayer:Kick("Stop exploiting or else")
- end
- end)
- ----------------------------------------------------------------------------------------------------------
- local Player = game.Players.LocalPlayer
- repeat wait() until Player.Character
- local Character = Player.Character
- local h = Character.Humanoid
- while true do
- wait()
- if h.MaxHealth > 100 then
- Player:Kick("Stop exploiting or else...")
- wait(10)
- end
- if h.WalkSpeed > 32 then
- Player:Kick("Stop exploiting or else...")
- end
- if h.JumpPower > 100 then
- Player:Kick("Stop exploiting or else...")
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement