Well i'm new in scripts i'm trying to get some beginner information.Dont close my question please: D
So can someone explain me how can I make a basic dropper? thanks
First you will need to put your part inside the ReplicatedStorage, and after put a script inside ur dropper models
after try to use this script inside
wait(2) workspace:WaitForChild("PartStorage") deb = true script.Parent.Clicker.ClickDetector.MouseClick:connect(function(wat) if deb == true then deb = false local part = Instance.new("Part",workspace.PartStorage) part.BrickColor=script.Parent.Parent.Parent.DropColor.Value part.Material=script.Parent.Parent.Parent.MaterialValue.Value local cash = Instance.new("IntValue",part) cash.Name = "Cash" cash.Value = 1 -- How much the drops are worth part.CFrame = script.Parent.Drop.CFrame - Vector3.new(0,1.3,0) part.FormFactor = "Custom" part.Size=Vector3.new(1, 1, 1) -- Size of the drops part.TopSurface = "Smooth" part.BottomSurface = "Smooth" game.Debris:AddItem(part,20) -- How long until the drops expire wait(.15) deb = true end end)
You should be good, then you will need more tutorial if you want to make a tycoon
Hello, BlackCheap!
First of all, you have to create the part will drop others... Then, you need to add a script that creates a part, resizes it(or no) and then you set the position...
Don't forget to place the script on a loop(Or use a click detector)
Useful Links:
Good Luck with your games
Closed as Not Constructive by User#21908 and User#19524
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?