Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Cancollide = false on a specific time?

Asked by
Rdumb1 4
5 years ago
Edited 5 years ago

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

2 answers

Log in to vote
0
Answered by 5 years ago

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

Ad
Log in to vote
0
Answered by
Rdumb1 4
5 years ago

o. I just need to change the cancollide.

0
and to change timeofday to clocktime. Rdumb1 4 — 5y

Answer this question