of     1   

Kolvin
#141203986Tuesday, July 22, 2014 10:01 PM GMT

I want to make the brick that comes out of my tycoon dropper a robux. I have the model with the decals named Robux but how do I make it so the dropper will drop that brick with the decals and all? This is my script for the dropper: reload = 3 wait(2) while true do p = Instance.new("Part") p.Position = script.Parent.Position p.Size = Vector3.new(2,0.4,1) p.Name = "ABrick" p.BrickColor = BrickColor.new("Dark green") p.TopSurface = ("Smooth") p.BottomSurface = ("Smooth") p.Parent = script.Parent.Parent.Parent wait(reload) end
Kolvin
#141241761Wednesday, July 23, 2014 4:28 AM GMT

bump
blox6137
#141242437Wednesday, July 23, 2014 4:36 AM GMT

You could probably just have a model of the robux in some discreet location, say on a desk or something, and the just clone it, instead of creating a whole new part. I'm not too familiar with the Clone() method, but you could do: robux1 = (findmodellocation) robux2 = robux1:Clone() But I really wouldn't know.
BothAngles
#141243223Wednesday, July 23, 2014 4:44 AM GMT

reload = 3 wait(2) while true do p = Instance.new("Part") p.Position = script.Parent.Position p.Size = Vector3.new(2,4.4,1) p.Name = "ABrick" p.BrickColor = BrickColor.new("Dark green") p.TopSurface = ("Smooth") p.BottomSurface = ("Smooth") p.Parent = script.Parent.Parent.Parent Spawn(wait) end
blox6137
#141244780Wednesday, July 23, 2014 5:00 AM GMT

Lol, BothAngles.

    of     1