01 | wait( 2 ) |
02 | workspace:WaitForChild( "PartStorage" ) |
03 |
04 | while true do |
05 | wait( 2.5 ) -- How long in between drops |
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) |
10 | cash.Name = "Cash" |
11 | cash.Value = 4 -- How much the drops are worth |
12 | part.CFrame = script.Parent.Drop.CFrame - Vector 3. new( 0 , 1.4 , 0 ) |
13 | part.FormFactor = "Custom" |
14 | part.Size = Vector 3. new( 0.25 , 0.25 , 0.25 ) -- Size of the drops |
15 | part.TopSurface = "Smooth" |
16 | part.BottomSurface = "Smooth" |
17 | game.Debris:AddItem(part, 200 ) -- How long until the drops expire |
18 | end |
Hey guys thats my dropper script and i want it to drop certain meshes (hats, items ect.) I am using ZedNov's tycoon kit!
Anyone gonna help?
change local part = Instance.new("Part", PartStorage) to:
01 | while true do |
02 | wait( 2.5 ) |
03 | local part = Instance.new( "MeshPart" , workspace.PartStorage) |
04 | part.Name = "Part" |
05 | part.MeshID = --Your Meshid here |
06 | part.TextureID = -- Your Textureid here |
07 | local cash = Instance.new( "IntValue" ,part) |
08 | cash.Name = "Cash" |
09 | cash.Value = 4 -- How much the drops are worth |
10 | part.CFrame = script.Parent.Drop.CFrame - Vector 3. new( 0 , 1.4 , 0 ) |
11 | part.FormFactor = "Custom" |
12 | part.Size = Vector 3. new( 0.25 , 0.25 , 0.25 ) -- Size of the drops |
13 | part.TopSurface = "Smooth" |
14 | part.BottomSurface = "Smooth" |
15 | game.Debris:AddItem(part, 200 ) -- How long until the drops expire |
16 | end |