When I first started scripting, the scripting book said that this script will change the brickcolor of a part or wedgepart:
WP = Instance.new("WedgePart", game.Workspace) -- This will insert a WedgePart into the workspace. WP.BrickColor = BrickColor.new("Really Red") -- This will change the WedgePart's brickcolor to Really Red.
or if I have already inserted a wedgepart into the workspace:
game.Workspace.WedgePart.BrickColor = BrickColor.new("Really Red")
I just don't know what is wrong because this script doesn't change the color of the brick. Could anyone fix the script?
"Really Red" doesn't exist try "Really red" its case sensitive.