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

Is there anyway you can make a dance floor using SurfaceGUIs, if so, how?

Asked by 10 years ago

Making a game that needs a dance floor. I have no clue how to script that using SurfaceGUIs. The base block color is black, but I don't know how to make it random colors. Any tips/help?

4 answers

Log in to vote
0
Answered by 10 years ago

Yes, there are also much simpler ways to do it. If you do something to the effect of wait(time) and then a line that changes the color property of the brick and repeat it until you feel satisfied with how many times it changes colors.

0
But how would I do that with a SurfaceGUI? Pawsability 65 — 10y
0
You would have to make it an animated GUI, which starts going into much more complicated scripting and values and things that I would normally explain, but as I already said, I'm cramming like crazy and really wish I could help you more. Any particular reason why you want to do it with surface GUIs instead of a normal script? areiydenfan00 115 — 10y
Ad
Log in to vote
0
Answered by 10 years ago

Just put it in a basic script, why use a surfacegui?

for i=1,10 do

wait(2)

game.Workspace.Part.BrickColor = BrickColor.Random()

end

0
SurfaceGUIs color comes out better and blocks. Pawsability 65 — 10y
Log in to vote
0
Answered by 10 years ago
for i=1,10 do
wait(1) -- *Change the number to whatever you want*
game.Workspace.Part.BrickColor = BrickColor.Random()
end
0
wow someone already posted :P NinjoOnline 1146 — 10y
Log in to vote
0
Answered by 10 years ago

I think Diver wants to do it surface GUI because it shows up in the dark

Answer this question