📜  在触摸 roblox 上更改颜色 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:29.951000             🧑  作者: Mango

代码示例1
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)