Advertisement
xxPH4NTOM

Untitled

Mar 17th, 2020
1,027
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.01 KB | None | 0 0
  1. --// Football Fusion Anti-Admin //--
  2.  
  3. --[[
  4. HOW TO USE:
  5. First, put this script in the auto execute folder of your exploit. (If it doesn't have an auto execute folder, just execute it manually each time you inject.)
  6. Now, every time you join a new server, it will scan for admins.
  7. If there are any admins in the game, or if an admin joins, it will teleport you to a differnt place/game,
  8. then it will teleport you back to Football Fusion in a different server.
  9. (NOTE: if your exploit doesn't have an auto execute folder, you will have to execute the script again after it teleports you to the other game.)
  10. Remember, use an alt account and enjoy exploiting.
  11.  
  12. ***WARNING***
  13. PLEASE NOTE that there is STILL A CHANCE of joining a game with an admin IF they are not in the list of KNOWN admins, MOST of the admins ARE in the list though.
  14. USE AN ALT ACCOUNT, SERIOUSLY, DO NOT USE YOUR MAIN!!!
  15. ]]
  16.  
  17. if game.PlaceId == 324686782 then
  18. game:GetService('TeleportService'):Teleport(3694166020)
  19. end
  20. wait(1)
  21. workspace:WaitForChild(game:GetService('Players').LocalPlayer.Name)
  22. function scanChatForAdmins()
  23. for i,v in pairs(game.Players:GetPlayers()) do
  24. v.Chatted:Connect(function(msg)
  25. if msg:lower():find('/joinserver') then
  26. local tp = game:GetService('TeleportService')
  27. tp:Teleport(324686782)
  28. end
  29. end)
  30. end
  31. local chatlog = game.Players.LocalPlayer.PlayerGui.Chat.Frame.ChatChannelParentFrame.Frame_MessageLogDisplay.Scroller
  32. for i,v in pairs(chatlog:GetDescendants()) do
  33. if v:IsA('ImageLabel') and v.Image == 'rbxassetid://78848608' then
  34. local tp = game:GetService('TeleportService')
  35. tp:Teleport(324686782)
  36. end
  37. end
  38. end
  39. function scanForAdmins()
  40. local admins1 = {
  41. game.Players:GetUserIdFromNameAsync('betterzakk292'),
  42. game.Players:GetUserIdFromNameAsync('cyfiLa'),
  43. game.Players:GetUserIdFromNameAsync('E_lectrified'),
  44. game.Players:GetUserIdFromNameAsync('Noxxiiouss'),
  45. game.Players:GetUserIdFromNameAsync('Prospecct'),
  46. game.Players:GetUserIdFromNameAsync('Artfulv'), -- simple
  47. game.Players:GetUserIdFromNameAsync('SpookyBonesRummy'),
  48. game.Players:GetUserIdFromNameAsync('XfiIIed'),
  49. }
  50. local admins2 = {
  51. 1058374060,
  52. 415539545,
  53. 203254086,
  54. 787324653,
  55. 35196057,
  56. 155546317,
  57. 1305203121,
  58. 7082991,
  59. 65614771,
  60. 17135269,
  61. 1136212096,
  62. 266649303,
  63. 415539545,
  64. 747986036,
  65. 34104797,
  66. 416181091,
  67. 1196435487,
  68. 42167122,
  69. 381195616,
  70. 383920153,
  71. 493662783
  72. }
  73.  
  74.  
  75. local tp = game:GetService('TeleportService')
  76.  
  77. if game.PlaceId == 324686782 then
  78. tp:Teleport(3694166020)
  79. end
  80.  
  81. for _,v in pairs(game.Players:GetPlayers()) do
  82. local checking = v
  83. for _,adminId in pairs(admins1) do
  84. if checking.UserId == adminId then
  85. tp:Teleport(324686782)
  86. end
  87. end
  88. for _,adminId in pairs(admins2) do
  89. if checking.UserId == adminId then
  90. tp:Teleport(324686782)
  91. end
  92. end
  93. end
  94. end
  95.  
  96. scanForAdmins()
  97. scanChatForAdmins()
  98.  
  99. game.Players.PlayerAdded:Connect(scanForAdmins)
  100. game.Players.PlayerAdded:Connect(scanChatForAdmins)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement