of     1   

jo5h021
#182659384Saturday, January 30, 2016 5:11 AM GMT

So I have this script for a tycoon, and when you click this button it dispenses the brick. At the moment it dispenses Medium Stone Gray colored bricks. I am wondering how I can change the color on it (I am trying to get the color brown) wait(2) workspace:WaitForChild("PartStorage") while true do wait(0.5) -- How long in between drops local part = Instance.new("Part",workspace.PartStorage) part.BrickColor=script.Parent.Parent.Parent.DropColor.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,0) part.Size=Vector3.new(1,1,1) game.Debris:AddItem(part,20) end This is the script. I think it has something to do with part.BrickColor=script.Parent. Please help, thanks
cofunction
#182660188Saturday, January 30, 2016 5:27 AM GMT

part.BrickColor = BrickColor.new("Pink") #Code print("Song Link: http://www.roblox.com/Deorro-vs-Swedish-House-Mafia-Save-The-5-Hours-item?id=340827217")
jo5h021
#182660582Saturday, January 30, 2016 5:36 AM GMT

Sadly that didn't work. But thank you for helping my beautiful friend.
Assaultery
#182675018Saturday, January 30, 2016 3:30 PM GMT

part.Color = Color3.new("Hot Pink")
Born2Script
#182676315Saturday, January 30, 2016 3:56 PM GMT

They should work part.BrickColor = BrickColor.new("Bright red")

    of     1