Is there a way to change the cloud's properties through the script?

I heard that there’s no possible way to change the cloud’s properties through the script.

I want to make the clouds darker when it’s nighttime.

Any help is appreciated, thanks.

You can, just set the clouds.Color property. Learn more here.

But how?

mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm

In your script, first reference the Clouds object, like this:

local clouds = game.Workspace.Terrain.Clouds

Then change the color by modifying the Color property.

clouds.Color = Color3.fromRGB(255, 255, 255) -- Set this to the color you want
2 Likes

It worked, thanks for solving.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.