script.Baseplate.Touched:connect(function) script.Baseplate.Brickcolor = BrickColor.new("Bright red") script.Baseplate.Material = Material.new("neon") end)
So close! For the Material, you'd need to use Enum
script.Baseplate.Touched:Connect(function() -- Also messed up your connection line script.Baseplate.Brickcolor = BrickColor.new("Bright red") script.Baseplate.Material = Enum.Material.Neon end)
Note: I saw you used script.Baseplate
which means the Baseplate would be WITHIN the Script! Instead, you may be looking for script.Parent.Baseplate