XxRedBoyxX_YT

Assassin Aimbot

Feb 16th, 2019
7,661
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. game.Players.LocalPlayer.PlayerScripts.reeee:Destroy()
  2.  
  3. local Active = false
  4. -- Credit to timeless for help :3
  5. -- Credit to this other dude who released sword fight script gave me this idea
  6. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Aimbot Started!", "All")
  7. game.Players.LocalPlayer.Chatted:connect(function(msg)
  8. if msg:lower() == ';toggle' then
  9. if Active then
  10. Active = false
  11. print("Stopped")
  12. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Disabled!", "All")
  13. else
  14. Active = true
  15. print("Started")
  16. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Enabled!", "All")
  17. end
  18. end
  19. end)
  20.  
  21. Loop = coroutine.wrap(function()
  22. while wait() do
  23. pcall(function()
  24. if Active then
  25. local Current = game.Players.LocalPlayer.PlayerGui.ScreenGui.UI.Target.TargetText.Text
  26. game.Players[Current].Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Knife.Handle.Position)
  27. Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  28. end
  29. end)
  30. end
  31. end)
  32.  
  33. Loop()
Add Comment
Please, Sign In to add comment