Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[Annoyer V1]]
- --[[
- 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.
- ]]
- local name = "YetsumetakaAhimetsu"
- local player2 = game:GetService("Players").LocalPlayer
- local enable = false
- local dotarget = false
- local randomizenames = false
- player2.Chatted:Connect(function(m)
- if m == "/enable" then
- enable = not enable
- end
- if m == "/randomize" or m == "/random" or m == "/randnames" or m == "/rnames" then
- randomizenames = not randomizenames
- end
- end)
- while wait() do
- local player = workspace:WaitForChild(name)
- if player ~= nil then
- if enable == true then
- local c = player2.Character
- c:MoveTo(player.Torso.Position)
- end
- if randomizenames == true then
- local players = game:GetService("Players"):GetPlayers()
- name = players[random.new():NextInteger(1, #players)].Name
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement