Advertisement
ExecutorForALLdomain

First to join get admin vulnerabilites roblox

Oct 26th, 2024 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. -- game name is first to join get admin (with the dog avatar) https://www.roblox.com/fr/games/109262366317994/The-first-to-join-the-server-owns-the-server
  2. -- https://www.youtube.com/watch?v=ZGiERGtc6A4
  3. local lp = game.Players.LocalPlayer
  4.  
  5. local char = lp.Character
  6. local root = char:FindFirstChild("HumanoidRootPart")
  7.  
  8. local function ShowPanel()
  9. lp.PlayerGui.AnnouncementMenu.Frame.Visible = true
  10. end
  11.  
  12. local function killall()
  13. game:GetService("Players").LocalPlayer.PlayerGui.AdminButtons.main.remotes.touchey:FireServer(true)
  14. for i,v in pairs(game.Players:GetPlayers()) do
  15.     if v~= lp then
  16.         local PROOT = v.Character:FindFirstChild("HumanoidRootPart")
  17.         if PROOT then
  18.           root.CFrame = PROOT.CFrame
  19.           wait(0) -- change
  20.         end
  21.     end
  22. end
  23. end
  24.  
  25. ShowPanel()
  26. killall() -- reset admin panel when u die
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement