Advertisement
Vehnom

Assassin! Aimbot.

Aug 24th, 2018
4,171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. Okay so here comes the death of assassin. Just execute it and type ;toggle when it says "Aimbot started". Hop into game and pull out your knife and peeps will teleport to you. Once the last guy is killed. Unequip the knife else you will glitch into a wall and die. Idk I'll try fix this. Ok enough talk. Copy everything under the line.
  2. ------------------------------------------------------------------------------------------------------------------------------------------
  3.  
  4.  
  5. game.Players.LocalPlayer.PlayerScripts.reeee:Destroy()
  6.  
  7. local Active = false
  8. -- Credit to timeless for help :3
  9. -- Credit to this other dude who released sword fight script gave me this idea
  10. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Aimbot Started!", "All")
  11. game.Players.LocalPlayer.Chatted:connect(function(msg)
  12. if msg:lower() == ';toggle' then
  13. if Active then
  14. Active = false
  15. print("Stopped")
  16. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Disabled!", "All")
  17. else
  18. Active = true
  19. print("Started")
  20. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Enabled!", "All")
  21. end
  22. end
  23. end)
  24.  
  25. Loop = coroutine.wrap(function()
  26. while wait() do
  27. pcall(function()
  28. if Active then
  29. local Current = game.Players.LocalPlayer.PlayerGui.ScreenGui.UI.Target.TargetText.Text
  30. game.Players[Current].Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Knife.Handle.Position)
  31. Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  32. end
  33. end)
  34. end
  35. end)
  36.  
  37. Loop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement