Hello there CookieTech community! I just started trying scripting today, and I wanted to test out a script, but I don’t have access to studio atm. I plan on trying something basic, so here it is!
game.Workspace.Part = script.Parent
while true do
game.Workspace.Part = ColorRGB(255,0,0)
wait(2)
game.Workspace.Part = ColorRGB(0,255,0)
wait(2)
game.Workspace.Part = ColorRGB(0,0,255)
end