How do i make a Part Appear at Night but, not morning.
This a crazy guess and correct me if I'm wrong.
Throw this in a script somewhere and NOT a LocalScript .
Perhaps put this script in the part you want???
1 | local Morning = game.Lighting.TimeofDay. --Right after that period, put the time of day you want here for morning. |
2 |
3 | local Night = game.Lighting.TimeofDay. --Right after that period, put the time of day you want here for Nighttime. |
4 |
5 | if Morning then |
6 | game.Workspace.WhateverPartYouWant.Transparency = 1 |
7 |
8 | if Night then |
9 | game.Workspace.WhateverPartYouWant.Transparency = 0 |
Reply if this script works or not!