i’m working on a game where i want the sky to get darker as you go up until it’s just stars and the planet below you, but the problem is i have no clue how to do this, as far as i know i don’t think you really can transition skyboxes smoothly, any help is appreciated
You can try:
local Lighting = game:GetService("Lighting")
local TweenService = game:GetService("TweenService")
TweenService:Create(Lighting, TweenInfo.new(.5, Enum.EasingStyle.Exponential, Enum.EasingDirection.Out), {ClockTime = 4}):Play()
1 Like
ohhhh i’m stupid, i forgot about the daylight cycle, very sorry
its fine, glad i could help. (Character Limit lol)
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.