Advertisement
dubleeyrblxx

Random Load Items -- Roblox

Jan 20th, 2023
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. local drops = game.ServerStorage:WaitForChild('RandomDrops'):GetChildren() -- change RandomDrops with the folder of items
  2.  
  3. while true do
  4.    
  5.     wait()
  6.    
  7.     local dropchose = drops[math.random(1, #drops)]:Clone()
  8.    
  9.     dropchose.Parent = workspace
  10.    
  11.     wait(150)
  12.    
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement