how to locally change a parts color on touch roblox code example
Example: change a color on touch roblox
1 script.Parent.Touched:Connect(function() --When the part is touched
2 script.Parent.Color = Color3.new(255/255,0/255,0/255) --Change the parts color
3 end)