So I am making a tycoon and I am trying to get the Drop not just drop a part. I mean that as in I want it to drop it with a mesh like instead of just a brick a sword but I cant find out how to get my script to do so. If you know how to get it to be like this just let me know. Thank you have a good day! :)
My drop script:
function fire() local p = Instance.new("Part") p.PosPosition = script.Parent.Position
p.BottomSurface = 0 p.TopSurface = 0 p.Name = "TycoonBrick" p.Parent = script.Parent
end
while true do wait(2.5) --Rate of drop fire() end