-- patjax775s menu -- Simple Admin GUI with Player Chams -- Client-side only local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local CoreGui = game:GetService("CoreGui") -- Cleanup old GUI if CoreGui:FindFirstChild("Patjax775Menu") then CoreGui.Patjax775Menu:Destroy() end -- GUI setup local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "Patjax775Menu" ScreenGui.Parent = CoreGui local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 200, 0, 120) Frame.Position = UDim2.new(0, 20, 0, 200) Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Frame.Parent = ScreenGui Frame.Active = true Frame.Draggable = true local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 30) Title.BackgroundTransparency = 1 Title.Text = "patjax775s menu" Title.TextColor3 = Color3.new(1,1,1) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 18 Title.Parent = Frame local ChamsButton = Instance.new("TextButton") ChamsButton.Size = UDim2.new(1, -20, 0, 40) ChamsButton.Position = UDim2.new(0, 10, 0, 50) ChamsButton.Text = "Toggle Player Chams" ChamsButton.Font = Enum.Font.SourceSans ChamsButton.TextSize = 16 ChamsButton.BackgroundColor3 = Color3.fromRGB(60, 60, 60) ChamsButton.TextColor3 = Color3.new(1,1,1) ChamsButton.Parent = Frame -- Chams logic local ChamsEnabled = false local Highlights = {} local function addChams(player) if player == LocalPlayer then return end if not player.Character then return end if Highlights[player] then return end local highlight = Instance.new("Highlight") highlight.FillColor = Color3.fromRGB(255, 0, 0) highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.FillTransparency = 0.5 highlight.OutlineTransparency = 0 highlight.Parent = player.Character Highlights[player] = highlight end local function removeChams() for _, h in pairs(Highlights) do if h then h:Destroy() end end table.clear(Highlights) end local function updateChams() if not ChamsEnabled then return end for _, player in ipairs(Players:GetPlayers()) do addChams(player) end end -- Button toggle ChamsButton.MouseButton1Click:Connect(function() ChamsEnabled = not ChamsEnabled ChamsButton.Text = ChamsEnabled and "Disable Player Chams" or "Enable Player Chams" if ChamsEnabled then updateChams() else removeChams() end end) -- Auto-update on respawn Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function() task.wait(1) if ChamsEnabled then addChams(player) end end) end) for _, player in ipairs(Players:GetPlayers()) do player.CharacterAdded:Connect(function() task.wait(1) if ChamsEnabled then addChams(player) end end) end