So I was trying to make a door that would be closed on a specific time but it doesn't work with this script, please help?
if game.Lighting.TimeOfDay == 06:00:00 then script.Parent.CanCollide = true end
Don't use TimeOfDay use this instead:
if game.Lighting.ClockTime >= 6 and game.Lighting.ClockTime <= 7 then script.Parent.CanCollide = false end
This will keep the door open for 1 hour