Advertisement
Animescapetower

The Annoyer [EXPLOIT]

May 25th, 2020 (edited)
1,633
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.18 KB | None | 0 0
  1. --[[Annoyer V1]]
  2. --[[
  3.    Done a lot of testing, attempting to add a costume target command which i hope it works, this is in a beta testing state, use this to annoy any people, including people in prison life, with your exploit.
  4.    
  5. ]]
  6.  
  7. local name = "YetsumetakaAhimetsu"
  8. local player2 = game:GetService("Players").LocalPlayer
  9. local enable = false
  10. local dotarget = false
  11. local randomizenames = false
  12. player2.Chatted:Connect(function(m)
  13.         if m == "/enable" then
  14.                enable = not enable
  15.         end
  16.         if m == "/randomize" or m == "/random" or m == "/randnames" or m == "/rnames" then
  17.                randomizenames = not randomizenames
  18.         end
  19. end)
  20.  
  21. while wait() do
  22.        local player = workspace:WaitForChild(name)
  23.        if player ~= nil then
  24.               if enable == true then
  25.                      local c = player2.Character
  26.                      c:MoveTo(player.Torso.Position)
  27.               end
  28.               if randomizenames == true then
  29.                      local players = game:GetService("Players"):GetPlayers()
  30.                      name = players[random.new():NextInteger(1, #players)].Name            
  31.               end
  32.        end
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement