of     1   

romana16
#181913011Monday, January 18, 2016 6:51 AM GMT

I was writing script in the STUDIO, uy when I play it it doesn't work. It is here: print 'Hello world!' local function makekartblueish() carbody.cornerbumper = brickcolor.toothpaste() carbody.FrontBumperMain = brickcolor.toothpaste() carbody.FrontBumperPlate = brickcolor.toothpaaste() carbody.FrontBumperWedge = brickcolor.toothpaste() carbody.FrontSteeringBeam = brickcolor.toothpaste() carbody.LeftBumper = brickcolor.toothpaste() carbody.NumberPlateHolder = brickcolor.toothpaste() carbody.RearBumper = brickcolor.toothpaste() carbody.RightSideBumper = brickcolor.toothpaste() carbody.SteeringColumn = brickcolor.toothpaste() end local gokartstuff = game.workspace.gokart local carbody = gokartstuff.body gokartstuff.tires.tire.friction = 0.08 gokartstuff.tires.tire.transparency = 1 gokartstuff.body.cornerbumper makekartblueish() Can anyone help me? Why isn't it working and what can I do?
SimplyGhostly
#181915468Monday, January 18, 2016 8:00 AM GMT

Try turning FilteringEnabled off under Workspace.
UltraSkiMask
#181924559Monday, January 18, 2016 2:39 PM GMT

Brickcolor is supposed to be capitalized i'm pretty sure. Also use these instead of the word "toothpaste" http://wiki.roblox.com/index.php?title=BrickColor_codes
2_GB
#181925158Monday, January 18, 2016 2:53 PM GMT

For brickcolors you want to do this. part.BrickColor = BrickColor.new('ToothPaste') -- Or what ever the color name is.

    of     1