Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --uzyskujemy dostęp do naszego obiektu
- local meteoryt = game:GetService("ServerStorage").Meteoryt
- while true do
- wait(0.5)
- local newMeteoryt = meteoryt:clone()
- local randomX = math.random(-400,400)
- local randomZ = math.random(-400,400)
- --dla nowego obiektu ustawiamy pozycję
- newMeteoryt.Position = Vector3.new(randomX, 500 ,randomZ)
- --wskazujemy, że rodzicem naszego obiektu ma być workspace, tylko wtedy będziemy mogli zobaczyć dany obiekt w grze
- newMeteoryt.Parent = workspace
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement