Making Sun Not Setting But Still Following The Time And Space ( Sun at Midnight )

  1. What do you want to achieve?

I want to have my roblox time like this: Midnight Sun in the Arctic (Time-Lapse) - YouTube

  1. What is the issue?

I don’t know how to do it.

  1. What solutions have you tried so far?

I tried with GeographicLatitude and scripting, it didn’t work well.

Lighting = game:GetService("Lighting")


while task.wait(0.01) do
	Lighting.ClockTime = Lighting.ClockTime + 0.1
	Lighting.GeographicLatitude = Lighting.GeographicLatitude + 0.01
end

You would probably need to make your own sun system where you can manipulate it to do the behavior you’re after. I think what you’re looking for was proposed a while ago with this post:

Also assuming that’s a server script, doing task.wait(0.01) will cause lag / servers to crash.

1 Like

I checked back my old post, turned out I forgot to mark solution to your post, sorry about that

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.