Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local character = player.Character
- local mouse = player:GetMouse()
- local kill = "020_Millie"
- local stopkill = false
- mouse.KeyDown:connect(function(key)
- key = key:lower()
- if key == "m" then
- print("pressed M")
- stopkill = true
- elseif key == "n" then
- stopkill = false
- end
- end)
- while true do
- if (stopkill == false) or (game.Players:FindFirstChild(kill)) then
- repeat
- wait()
- if game.Workspace:FindFirstChild(kill) then
- game.Workspace:FindFirstChild(kill):Destroy()
- end
- until (game.Players:FindFirstChild(kill) == nil) or (stopkill == true)
- end
- wait()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement