How do I make the baseplate CanCollide Off and Transparency 1?

This is the script I made but it doesn’t work. How do I fix it?

game.Workspace.Baseplate.Transparency = 1

game.Workspace.Baseplate.CanCollide = Off
1 Like
-- use true and false.
game.Workspace.Baseplate.Transparency = 1

game.Workspace.Baseplate.CanCollide = false
2 Likes

I changed it to false but it still doesn’t work

Yes, whenever there is a checkbox next to a setting in the properties tab, it will be true if it is checked, and false if it is unchecked.

I changed it to false but its still not working, and the transparency one is also not working

try this in a server script. Put it in the SeverScriptService or something.

workspace.Baseplate.Transparency = 1
workspace.Baseplate.CanCollide = false

Are you getting an error?

2 Likes

Is this the only code you have in the script? And what type of script is it?

1 Like

LocalScript.

Use a server script. Local scripts don’t work there.

2 Likes

Change your local script to a server script.

2 Likes