1 | BP = game.workspace.baseplate |
2 |
3 | BP.BrickColor = Brickcolor.new(“Really blue” |
4 | end |
I am new to scripting so take it easy please!
ROBLOX Lua Scripting is very strict on case sensitive words. Your script should be:
1 | BP = game.Workspace.Baseplate |
2 |
3 | BP.BrickColor = BrickColor.new( "Really blue" ) |
Workspace, and Baseplate are deprecated. Also, "BrickColor" needs to be Capital for each word.