roblox set color3 of part script code example
Example: how to make an RGB part in roblox studio lua 2020
--RGB Part
local MyPart = game.Workspace.RGBPart --[ Change "RGBPart" With Your Part Name ]--
while wait(0.1) do --[ 0.1 = Changes Color Every 0.1 Seconds ]--
MyPart.BrickColor = BrickColor.random()
end --[ Script Officially Made By Rigby#9052 on Discord or JUB0T on Roblox ]--