95audrey

remix

Mar 6th, 2016
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. while true do
  2. wait(10)
  3.  
  4. repeat wait() until
  5. #game.Players:GetPlayers() > 0 and game.Players:GetPlayers()[1].Character
  6. while game.Players:GetPlayers()[1].Character do
  7. local p = (game.Players:GetPlayers())[math.random(1, #game.Players:GetPlayers())]
  8. if p.Name ~= "Name" and p.Character and p.Character:findFirstChild"Torso" then
  9. p.Character.Torso.CFrame = CFrame.new(Vector3.new(21, 3.6, -44))
  10. local m = Instance.new("Message")
  11. m.Text = ""..p.Name.. " is now the new DJ!"
  12. m.Parent = game.Workspace
  13. wait(5) --this part still counts towards the 4 min time
  14. m:Remove()
  15. wait(5) --4 mins - 5 seconds
  16. p.Character.Torso:Remove() --deleting a person's torso or head causes them to die
  17. end
  18. end
  19. end
Add Comment
Please, Sign In to add comment