Thank you for using our website
Your script:
local a=game:GetService("Workspace")local b=game:GetService("RunService")local c=a:WaitForChild("Panes")local function d()for e,f in ipairs(c:GetChildren())do if f:IsA("Model")then local g=f.Panel:FindFirstChild("HitPart")if g and g:IsA("BasePart")then local h=g:FindFirstChildOfClass("TouchTransmitter")g.Transparency=0.5;g.Color=h and Color3.new(1,0,0)or Color3.new(0,1,0)end end end end;while true do d()wait(1)end