BP = game.workspace.baseplate BP.BrickColor = Brickcolor.new(“Really blue” 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:
BP = game.Workspace.Baseplate BP.BrickColor = BrickColor.new("Really blue")
Workspace, and Baseplate are deprecated. Also, "BrickColor" needs to be Capital for each word.