How do I create skybox in separate and different areas, as you go in the areas, the sky changes, how do I do that, I really need help.
put this on the ground area of the map in a local script
Player.Touched:Connect(function() workspace.(the sky box you want to go away).Transparency = "1" end)
now another local script in the same part
Player.Touched:Connect(function() workspace.(the sky box you want to come).Transparency = "0"
make sure you already placed the sky box and the one you WAnt to add is invisible and the one you want to go away is visible, if this helped accept this answer plz (the script most likely wont work and needs some tweaks)
Build a box for every area and individually add each skybox.