Back to Browse

rotating skybox tutorial (ROBLOX)

3.3K views
Jun 3, 2025
2:20

devform: https://devforum.roblox.com/t/studio-beta-beyond-static-skies-rotate-your-worlds-with-skyboxorientation/3674945 script: local sky = game.Lighting.Sky local rotationSpeed = 10 -- Adjust this value to control the speed game:GetService("RunService").Heartbeat:Connect(function(deltaTime) sky.SkyboxOrientation = Vector3.new(45, (sky.SkyboxOrientation.Y + rotationSpeed * deltaTime) % 360, 0) end) -- Rotate around Y (Up) first, then apply X and Z for the tilt

Download

0 formats

No download links available.

rotating skybox tutorial (ROBLOX) | NatokHD