Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Why is my script to change baseplate color not working?

Asked by 5 years ago
BP = game.workspace.baseplate

BP.BrickColor = Brickcolor.new(“Really blue”
end

I am new to scripting so take it easy please!

1 answer

Log in to vote
1
Answered by
Rinextel 291 Moderation Voter
5 years ago
Edited 5 years ago

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.

0
Oh, thank you it works! 19under19 -3 — 5y
0
virtually every scripting/programming language is very strict on case-sensitive words Bisoph 5 — 5y
Ad

Answer this question