How to make 2 suns?

Hi,

i have a question: Is it possible to make 2 suns in one place and how? I want sunrays on different positions.

Thanks!

1 Like

I’m pretty sure that you can’t make two suns with sunrays coming from different positions. You can make a new sun image that has two balls in it so it looks like there are two suns.

1 Like

It could be possible to use a stepped loop to change the time in an interval back and forth to imitate 2 suns. that would look like this:

local RunService = game:GetService("RunService")
local Lighting = game:GetService("Lighting")

local SunTimes = {8, 12} -- Add, edit, or remove times here to add more suns. 0 to 24
local SunFrame = 1

RunService.Stepped:Connect(function()
    local SunTime = SunTimes[SunFrame]
    Lighting.ClockTime = SunTime
    SunFrame += 1
    if SunFrame > #SunTimes then SunFrame = 1 end
end)
1 Like