for i,v in next, workspace.Lobby:GetChildren() do if v:IsA("MeshPart") then if v:FindFirstChildOfClass("ClickDetector") then local originalparent = v v.ClickDetector:Destroy() local cd = Instance.new("ClickDetector") cd.Parent = originalparent cd.MouseClick:Connect(function() for _, v in ipairs(game:GetService("ReplicatedStorage"):GetDescendants()) do if v:IsA("RemoteEvent") and string.match(v.Name, "{") then pcall(function() v:FireServer(originalparent.Name) end) end end end) end end end print("Made by Tesker103")