Hello, I’ve encountered a programming issue, where I’ve made an attempt to change the skybox, but it’s not working.
The script:
local Lighting = game:GetService("Lighting")
--...
local Sky = Instance.new("Sky")
Sky.Parent = Lighting
Sky.SunAngularSize = 10
-- credits to @UndiscoveredLimited
Sky.SkyboxBk = "144933338"
Sky.SkyboxDn = "144931530"
Sky.SkyboxFt = "144933262"
Sky.SkyboxLf = "144933244"
Sky.SkyboxRt = "144933299"
Sky.SkyboxUp = "144931564"
But when I run it in studio, there is no sky parented to Lighting. Any help please?