Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How to make Different skyboxes in a different areas in one game?

Asked by 3 years ago

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.

2 answers

Log in to vote
0
Answered by
OFF_S4LE 127
3 years ago

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)

0
oops i forgot to add end to the 2nd script, sorry! OFF_S4LE 127 — 3y
0
I did it here but nothing happened. gta_12344567890 7 — 3y
0
delete the = OFF_S4LE 127 — 3y
0
dude nothing happened yet, did you check if that script would work? gta_12344567890 7 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

Build a box for every area and individually add each skybox.

Answer this question