local Players = game:GetService("Players") local player = Players.LocalPlayer -- Get GUI properly local playerGui = player:WaitForChild("PlayerGui") local adminGui = playerGui:WaitForChild("AdminGui") local adminFrame = adminGui:WaitForChild("AdminFrame") local adminButton = adminGui:WaitForChild("AdminButton") -- FORCE GUI ON adminGui.Enabled = true adminGui.ResetOnSpawn = false -- FORCE FRAME SETTINGS adminFrame.Visible = true adminFrame.Active = true adminFrame.BackgroundTransparency = 0 -- BUTTON SETTINGS adminButton.Visible = true adminButton.Active = true -- Make button toggle the frame adminButton.MouseButton1Click:Connect(function() adminFrame.Visible = not adminFrame.Visible end) -- Extra safety: reload after respawn player.CharacterAdded:Connect(function() task.wait(0.3) adminGui.Enabled = true adminFrame.Visible = false end)