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
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
-- use true and false.
game.Workspace.Baseplate.Transparency = 1
game.Workspace.Baseplate.CanCollide = false
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?
Is this the only code you have in the script? And what type of script is it?
Use a server script. Local scripts don’t work there.
Change your local script to a server script.