Advertisement
Joriangames

MeteorShower

Nov 11th, 2020
2,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. --This model is created by Joriangames/Problox Studio Scripts
  2. --If you want to know how this model works, watch my tutorial: https://youtu.be/--msdvHRD74
  3.  
  4. --Thanks for using this model!
  5. --Problox Studio Scripts
  6.  
  7. local PositionFolder = game.Workspace.MeteorPositions:GetChildren()
  8.  
  9. while wait(2) do
  10.     local randomPosition = PositionFolder[math.random(1, #PositionFolder)]
  11.     local MeteorClone = game.ServerStorage.Meteor:Clone()
  12.     MeteorClone.Parent = workspace
  13.     MeteorClone.Position = randomPosition.Position
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement