ForkFullFight

Eeee

Jul 25th, 2023
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. -- Cloneref support (adds support for JJsploit/Temple/Electron and other sploits that don't have cloneref or really shit versions of it.)
  2. loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Universal/CloneRef.lua", true))()
  3.  
  4. -- Dex Bypasses
  5. loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Universal/Bypasses.lua", true))()
  6.  
  7. -- Dex with CloneRef Support (made as global)
  8. getgenv().Bypassed_Dex = game:GetObjects("rbxassetid://9352453730")[1]
  9.  
  10. local charset = {}
  11. for i = 48, 57 do table.insert(charset, string.char(i)) end
  12. for i = 65, 90 do table.insert(charset, string.char(i)) end
  13. for i = 97, 122 do table.insert(charset, string.char(i)) end
  14. function RandomCharacters(length)
  15. if length > 0 then
  16. return RandomCharacters(length - 1) .. charset[math.random(1, #charset)]
  17. else
  18. return ""
  19. end
  20. end
  21.  
  22. Bypassed_Dex.Name = RandomCharacters(math.random(5, 20))
  23. if gethui then
  24. Bypassed_Dex.Parent = gethui();
  25. elseif syn and syn.protect_gui then
  26. syn.protect_gui(Bypassed_Dex);
  27. Bypassed_Dex.Parent = cloneref(game:GetService("CoreGui"))
  28. else
  29. Bypassed_Dex.Parent = cloneref(game:GetService("CoreGui"))
  30. end
  31.  
  32. local function Load(Obj, Url)
  33. local function GiveOwnGlobals(Func, Script)
  34. local Fenv = {}
  35. local RealFenv = {script = Script}
  36. local FenvMt = {}
  37. function FenvMt:__index(b)
  38. if RealFenv[b] == nil then
  39. return getfenv()[b]
  40. else
  41. return RealFenv[b]
  42. end
  43. end
  44. function FenvMt:__newindex(b, c)
  45. if RealFenv[b] == nil then
  46. getfenv()[b] = c
  47. else
  48. RealFenv[b] = c
  49. end
  50. end
  51. setmetatable(Fenv, FenvMt)
  52. setfenv(Func, Fenv)
  53. return Func
  54. end
  55.  
  56. local function LoadScripts(Script)
  57. if Script.ClassName == "Script" or Script.ClassName == "LocalScript" then
  58. task.spawn(GiveOwnGlobals(loadstring(Script.Source, "=" .. Script:GetFullName()), Script))
  59. end
  60. for _,v in ipairs(Script:GetChildren()) do
  61. LoadScripts(v)
  62. end
  63. end
  64.  
  65. LoadScripts(Obj)
  66. end
  67.  
  68. Load(Bypassed_Dex)
Add Comment
Please, Sign In to add comment