Advertisement
ERROR_CODE

T3Xploit

Apr 27th, 2024 (edited)
867
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.66 KB | None | 1 0
  1. if game:GetService("CoreGui"):FindFirstChild("ExploitUserInterface") then
  2. game:GetService("CoreGui"):FindFirstChild("ExploitUserInterface"):Destroy()
  3. end
  4. --[[if loaded then
  5. error("Script is already runned!")
  6. return
  7. end]]
  8. pcall(function()
  9.     getgenv().loaded = true
  10. end)
  11. ExploitUserInterface = Instance.new("ScreenGui")
  12. StartUpScreen = Instance.new("ImageLabel")
  13. StartUpScreenUICorner = Instance.new("UICorner")
  14. StartUpValue = Instance.new("StringValue")
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40. ExploitUserInterface.Name = "ExploitUserInterface"
  41. ExploitUserInterface.Parent = game.CoreGui
  42. ExploitUserInterface.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  43. game.CoreGui.ExploitUserInterface.Enabled = true
  44.  
  45. StartUpScreen.Name = "StartUpScreen"
  46. StartUpScreen.Parent = ExploitUserInterface
  47. StartUpScreen.AnchorPoint = Vector2.new(0.5, 0.5)
  48. StartUpScreen.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  49. StartUpScreen.Position = UDim2.new(0.5, 0, 0.5, 0)
  50. StartUpScreen.Size = UDim2.new(0, 450, 0, 400)
  51. StartUpScreen.ZIndex = 2
  52. StartUpScreen.Image = "rbxassetid://17307350492"
  53.  
  54.  
  55. StartUpScreenUICorner.CornerRadius = UDim.new(0, 12)
  56. StartUpScreenUICorner.Parent = StartUpScreen
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. function createfolders(path)
  64.  local pathtbl = string.split(path, "/")
  65.  for i, v in pairs(pathtbl) do
  66.   if i == 1 then
  67.    if not isfolder(v) then
  68.     makefolder(v)
  69.    end
  70.   else
  71.    local newpath = pathtbl[1]
  72.    for i2=2, i-1 do
  73.     newpath = newpath.. "/" ..pathtbl[i2]
  74.    end
  75.    newpath = newpath.. "/" ..v
  76.    if not isfolder(newpath) then
  77.     makefolder(newpath)
  78.    end
  79.   end
  80.  end
  81. end
  82.  
  83. if not isfolder("T3Xploit") then
  84. createfolders("ECCS_OS/System/Files")
  85. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement