Anyone know how to make the dropper give more money when you buy a game pass?
Asked by
4 years ago Edited 4 years ago
I'm trying to make it so that when you buy a game pass the droppers drop more money. Here is the script in the droppers.
Cash.Value is how much each dropper gives.
02 | workspace:WaitForChild( "PartStorage" ) |
06 | local part = Instance.new( "Part" ,workspace.PartStorage) |
07 | part.BrickColor = script.Parent.Parent.Parent.DropColor.Value |
08 | part.Material = script.Parent.Parent.Parent.MaterialValue.Value |
09 | local cash = Instance.new( "IntValue" ,part) |
12 | part.CFrame = script.Parent.Drop.CFrame - Vector 3. new( 0 , 1.6 , 0 ) |
13 | part.FormFactor = "Custom" |
14 | part.Size = Vector 3. new( 1.4 , 1.4 , 1.4 ) |
15 | part.TopSurface = "Smooth" |
16 | part.BottomSurface = "Smooth" |
17 | game.Debris:AddItem(part, 20 ) |