Advertisement
Ilkailka

Practice

Jan 9th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local jumped = 100 --How many guys guys jump.
  2. local remain = 1000 --Guys that arent dead yet.
  3. local taim = 1 --Step between jump.
  4. local taimd = 1 --Time before you die after 0 "Guys" left.
  5. while true do
  6. if remain == 0 then
  7. print("Nobody left... How sad ... But Its time for you to die >:)")
  8. wait(taimd)
  9. game.Players.LocalPlayer.Character:BreakJoints()
  10. break
  11. else
  12. remain = remain - jumped
  13. print(jumped .. " Guys Jumped of the bridge " .. remain .. " Guys remain")
  14. end
  15. wait(taim)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement