Changer une couleur sur 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)
Brainy Bear