Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local drops = game.ServerStorage:WaitForChild('RandomDrops'):GetChildren() -- change RandomDrops with the folder of items
- while true do
- wait()
- local dropchose = drops[math.random(1, #drops)]:Clone()
- dropchose.Parent = workspace
- wait(150)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement