3008 [2.7] Script | ADMIN SPOOFER – FREE SCRIPT – UNFINISHED

Created by Jaydenn#7592

Features:

  • ADMIN SPOOFER
  • DEV NOTES:
  • i was making a spoofer for 3008 so that it would allow me to call admin commands such as ban, ChangeTime, Punish, etc.. I’ve gotten pissed off with working on it and im not gonna complete this.
  • If you want to finish it feel free. So far it spoofs the users rank to Admin, gets the KickMenu localscript’s environment, and grabs the ModMenuGuiHandler.
local kickmenu
local modmenuguihandler
for _,v in next, getgc(true) do
if typeof(v) == "table" then
if rawget(v, "CreateAlert") then

local func = rawget(v, "CreateAlert")
print("Found CreateAlert Function!")
kickmenu = getfenv(func).script
elseif rawget(v, "UpdateRanks") then
print("Found UpdateRanks Function!")
modmenuguihandler = v
end
end
end

local RankModule = require(game:GetService("ReplicatedStorage").RankModule)

local Hook = hookfunction(RankModule.GetGroupRank, function(...)
local args = {...}
print("RankModule:GetGroupRank("..args[2]..") called")
return RankModule.Ranks.Admin
end)

local KickMenuEnvironment = kickmenu

print(KickMenuEnvironment:CanPunishUser("XBOXletourneau6"))