#Skybox

1 messages · Page 1 of 1 (latest)

candid cape
#

How do I make the Skybox look like the one in Nulescape ? I am making inspired by it while being a beginner at roblox studio. Can someone help me do it ?

candid cape
#

Mhh, it can help but it doesn't look the same cause in Nullscape (the same for Roguesweeper) the skybox remains the same in each direction even tho it spins (idk if I explained correctly, I am bad at english lol)

next moth
#

Like a video? Im not on pc right now

candid cape
#

don't mind my PC lagging while I use OBS ;_;

next moth
#

So you mean like the sky box rotates with the kamera ?

candid cape
#

yeh

#

But also alone

#

cause it rotates like that and w/ the camera

next moth
#

i see

#

I never really did this but I do think that you can get the Orientation of the Camera and then just set that orientation to the orientation of the sky box. And to get the extra spinning effect you just give it some extra orientation

candid cape
#

Oh, looks simpler then I thought lol

#

Let me try

next moth
#

Good luck. This is just a hunch on how it might work so don't expect it to work flawlessly

candid cape
#

Okay so, I might be stupid but, how does this not work? Can ye help me ?

⁨```lua
local Camera = game.Workspace.Camera
local Lightning = game.Lighting
local Sky = Lightning:WaitForChild("Sky")

Sky.SkyboxOrientation.Y = Camera.CFrame
Sky.SkyboxOrientation.X = Camera.CFrame

next moth
candid cape
#

nope doesn't work

shy gyro
#

i lowk don't know if this will work but
⁨```lua
local Camera = game.Workspace.Camera
local Lightning = game.Lighting
local Sky = Lightning:WaitForChild("Sky")
local RunService = game:GetService("RunService")
RunService.RenderStepped:Connect(function()
Sky.SkyboxOrientation = Vector3.new(Camera.CFrame.Rotation.X, Camera.CFrame.Rotation.Y, 0)
end)

next moth
shy gyro
#

since skybox orientation is a vector value

#

iirc the xyz variables are read only in vectors

candid cape
reef cryptBOT
#

studio** You are now Level 3! **studio

shy gyro
#

i haven't really worked with skyboxes so this is just made with base docs that I flew over

shy gyro
candid cape
#

nothing at all

#

:C

shy gyro
#

oh

reef cryptBOT
#

studio** You are now Level 2! **studio

shy gyro
#

idk how to help then twin

candid cape
#

oh oke dw ! :)

#

I will try to search a tutorial somewhere

#

I think I got it

next moth