Advertisement
xmaanzach

IntermissionScript #2

Feb 6th, 2018
656
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. while true do
  2. local msg = game.ReplicatedStorage.RoundMessage
  3. wait(2)
  4. for i = 8,0,-1 do -- Cambia 8 por el tiempo que quieres que dure la intermission
  5. msg.Value = "Intermission: "..i
  6. wait(1)
  7. if i == 0 then
  8. print('Intermission Finished')
  9. local part = game.Workspace.Pad -- cambian 'Pad' por el nombre de su bloque
  10. for _, player in ipairs(game.Players:GetChildren())do
  11. player.Character:MoveTo(part.Position)
  12. end
  13. end
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement