Advertisement
Darknoob2002

ROBLOX Dropper Script

Nov 2nd, 2015
6,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. wait(2)
  2. workspace:WaitForChild("PartStorage")
  3. while true do
  4. wait(1.5) -- How long in between drops
  5. local part = Instance.new("Part",workspace.PartStorage)
  6. part.BrickColor=script.Parent.Parent.Parent.DropColor.Value
  7. local cash = Instance.new("IntValue",part)
  8. cash.Name = "Cash"
  9. cash.Value = 1 -- How much the drops are worth
  10. part.CFrame = script.Parent.Drop.CFrame - Vector3.new(0,1,0)
  11. part.Size=Vector3.new(1,1,1) -- Size of the drops
  12. game.Debris:AddItem(part,60) -- How long until the drops expire
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement