I have made a script which presumably is meant to change properties of the baseplate according to an answer of 90x2. I have changed the script multiple times but its still now working if possible please spot the error. My most biggest theory is the functions but I’m not sure:
There is an error, on the first line of the function wrong, you need to make the BrickColor a string. As you see part of that line has a blue line under it, that means that there is an error in your code.
change the first line of the function wrong() to:
game.Workspace.Baseplate.CanCollide = true and game.Workspace.Baseplate.BrickColor = BrickColor.new("Really Red")
Along with that, remove the and and put the BrickColor assignment on a separate line.
Yeah you’re right, it should be:
game.Workspace.Baseplate.CanCollide = true
game.Workspace.Baseplate.BrickColor = BrickColor.new("Really Red")
