xvc200

admin menu:)

Feb 15th, 2025
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2.  
  3. local function keepAdminMenuEnabled()
  4. local menu = p.PlayerGui:WaitForChild("AdminMenu")
  5. menu.Enabled = true
  6. menu:GetPropertyChangedSignal("Enabled"):Connect(function()
  7. menu.Enabled = true
  8. end)
  9. end
  10.  
  11. p.CharacterAdded:Connect(function()
  12. wait(0.1)
  13. keepAdminMenuEnabled()
  14. end)
  15.  
  16. keepAdminMenuEnabled()
Advertisement
Add Comment
Please, Sign In to add comment