rayiahmadjuhandi

CyberSecurity

Oct 15th, 2025
85
1
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.39 KB | None | 1 0
  1. -- Script Lua FE GUI Draggable: "CyberSecurityLoader" - Cyber Security Script List GUI (Anti-Error Universal)
  2. -- Buatan heckes15 - Persistent, Anti-Crash, Handle Respawn & Nil Checks
  3. -- Fitur: GUI bisa digeser, tombol X untuk tutup, tombol Load Scripts untuk munculkan GUI daftar script (Universal FE, cyber security theme: badge spoof, network tools, FE bypass).
  4. -- Semua script keyless, anti-error, dari sumber trusted 2025 (OP FE scripts with security/hacking sim).
  5.  
  6. local Players = game:GetService("Players")
  7. local TweenService = game:GetService("TweenService")
  8.  
  9. local player = Players.LocalPlayer
  10. local playerGui = player:WaitForChild("PlayerGui")
  11.  
  12. -- Daftar loadstring script Cyber Security Theme (FE OP 2025, keyless)
  13. local cyberScripts = {
  14. {name = "Verified Badge Spoof", url = "https://pastebin.com/raw/qJwH9964", desc = "Fake verified badge - Identity security bypass, FE universal"},
  15. {name = "Avtor FE Badge Hub", url = "https://raw.githubusercontent.com/ffedex/characters/refs/heads/main/chars", desc = "More FE badges & features - Telegram security tools sim"},
  16. {name = "Motiona Network Flood", url = "https://raw.githubusercontent.com/BeemTZy/Motiona/refs/heads/main/source.lua", desc = "Super ring parts flood - Simulate network attack, no message"},
  17. {name = "Universal Super Ring V3", url = "https://rawscripts.net/raw/Universal-Script-SUPER-RING-PARTS-V3-WITH-NO-MESSAGE-26385", desc = "OP ring parts - Cyber flood tool, FE 2025"},
  18. {name = "Qwerty Encryption Bypass", url = "https://raw.githubusercontent.com/randomstring0/Qwerty/refs/heads/main/qwerty38.lua", desc = "Qwerty FE bypass - Anti-detection encryption sim"},
  19. {name = "Kyuu Firewall Crack", url = "https://raw.githubusercontent.com/dqtixz/kyuu-is-fire/refs/heads/main/and%20projeto%20lkb%20Super%20Ring", desc = "Super ring with firewall crack - Security exploit"},
  20. {name = "Pastefy Anti-Cheat Disable", url = "https://pastefy.app/wxVAgZpT/raw", desc = "Anti-cheat disable tool - FE security fix 2025"}
  21. }
  22.  
  23. -- Fungsi load script (anti-error)
  24. local function loadScript(url, name)
  25. local success = pcall(function()
  26. loadstring(game:HttpGet(url))()
  27. end)
  28. if success then
  29. print(name .. " loaded! Cyber security tool activated. 🔒")
  30. else
  31. warn("Gagal load " .. name .. " (cek koneksi). Coba executor lain.")
  32. end
  33. end
  34.  
  35. -- Fungsi buat GUI Daftar
  36. local function createCyberGUI()
  37. local success = pcall(function()
  38. local oldCyberGui = playerGui:FindFirstChild("CyberGUI")
  39. if oldCyberGui then oldCyberGui:Destroy() end
  40.  
  41. local cyberScreenGui = Instance.new("ScreenGui")
  42. cyberScreenGui.Name = "CyberGUI"
  43. cyberScreenGui.Parent = playerGui
  44. cyberScreenGui.ResetOnSpawn = false
  45.  
  46. local cyberFrame = Instance.new("Frame")
  47. cyberFrame.Size = UDim2.new(0, 350, 0, 350)
  48. cyberFrame.Position = UDim2.new(0.5, -175, 0.5, -175)
  49. cyberFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  50. cyberFrame.BorderSizePixel = 0
  51. cyberFrame.Active = true
  52. cyberFrame.Draggable = true
  53. cyberFrame.Parent = cyberScreenGui
  54.  
  55. local cyberCorner = Instance.new("UICorner")
  56. cyberCorner.CornerRadius = UDim.new(0, 10)
  57. cyberCorner.Parent = cyberFrame
  58.  
  59. local cyberTitle = Instance.new("TextLabel")
  60. cyberTitle.Size = UDim2.new(1, 0, 0, 30)
  61. cyberTitle.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  62. cyberTitle.Text = "🔒 Cyber Security Scripts 🔒"
  63. cyberTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. cyberTitle.TextScaled = true
  65. cyberTitle.Font = Enum.Font.SourceSansBold
  66. cyberTitle.Parent = cyberFrame
  67.  
  68. local titleCorner = Instance.new("UICorner")
  69. titleCorner.CornerRadius = UDim.new(0, 10)
  70. titleCorner.Parent = cyberTitle
  71.  
  72. local scrollFrame = Instance.new("ScrollingFrame")
  73. scrollFrame.Size = UDim2.new(1, -20, 1, -80)
  74. scrollFrame.Position = UDim2.new(0, 10, 0, 40)
  75. scrollFrame.BackgroundTransparency = 1
  76. scrollFrame.BorderSizePixel = 0
  77. scrollFrame.ScrollBarThickness = 10
  78. scrollFrame.Parent = cyberFrame
  79.  
  80. local listLayout = Instance.new("UIListLayout")
  81. listLayout.SortOrder = Enum.SortOrder.LayoutOrder
  82. listLayout.Padding = UDim.new(0, 5)
  83. listLayout.Parent = scrollFrame
  84.  
  85. for i, script in ipairs(cyberScripts) do
  86. local scriptButton = Instance.new("TextButton")
  87. scriptButton.Size = UDim2.new(1, 0, 0, 40)
  88. scriptButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  89. scriptButton.Text = script.name .. "\n(" .. script.desc .. ")"
  90. scriptButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  91. scriptButton.TextScaled = true
  92. scriptButton.Font = Enum.Font.SourceSans
  93. scriptButton.TextYAlignment = Enum.TextYAlignment.Top
  94. scriptButton.LayoutOrder = i
  95. scriptButton.Parent = scrollFrame
  96.  
  97. local buttonCorner = Instance.new("UICorner")
  98. buttonCorner.CornerRadius = UDim.new(0, 5)
  99. buttonCorner.Parent = scriptButton
  100.  
  101. scriptButton.MouseEnter:Connect(function()
  102. TweenService:Create(scriptButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(0, 150, 200)}):Play()
  103. end)
  104. scriptButton.MouseLeave:Connect(function()
  105. TweenService:Create(scriptButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(0, 170, 255)}):Play()
  106. end)
  107.  
  108. scriptButton.MouseButton1Click:Connect(function()
  109. loadScript(script.url, script.name)
  110. scriptButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  111. scriptButton.Text = script.name .. " ✅\n(" .. script.desc .. ")"
  112. end)
  113. end
  114.  
  115. scrollFrame.CanvasSize = UDim2.new(0, 0, 0, listLayout.AbsoluteContentSize.Y + 10)
  116. listLayout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
  117. scrollFrame.CanvasSize = UDim2.new(0, 0, 0, listLayout.AbsoluteContentSize.Y + 10)
  118. end)
  119.  
  120. local closeCyberButton = Instance.new("TextButton")
  121. closeCyberButton.Size = UDim2.new(0, 25, 0, 25)
  122. closeCyberButton.Position = UDim2.new(1, -30, 0, 2.5)
  123. closeCyberButton.BackgroundColor3 = Color3.fromRGB(255, 50, 50)
  124. closeCyberButton.Text = "X"
  125. closeCyberButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  126. closeCyberButton.TextScaled = true
  127. closeCyberButton.Font = Enum.Font.SourceSansBold
  128. closeCyberButton.Parent = cyberTitle
  129.  
  130. local closeCyberCorner = Instance.new("UICorner")
  131. closeCyberCorner.CornerRadius = UDim.new(0, 5)
  132. closeCyberCorner.Parent = closeCyberButton
  133.  
  134. closeCyberButton.MouseButton1Click:Connect(function()
  135. cyberScreenGui:Destroy()
  136. end)
  137.  
  138. cyberFrame.Size = UDim2.new(0, 0, 0, 0)
  139. TweenService:Create(cyberFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {Size = UDim2.new(0, 350, 0, 350)}):Play()
  140.  
  141. print("Cyber Security Script List GUI loaded! 🔒")
  142. end)
  143. end
  144.  
  145. -- Fungsi load Cyber
  146. local function loadCyber()
  147. pcall(createCyberGUI)
  148. end
  149.  
  150. -- Fungsi buat GUI Utama
  151. local function createMainGUI()
  152. local success = pcall(function()
  153. local oldMain = playerGui:FindFirstChild("CyberLoader")
  154. if oldMain then oldMain:Destroy() end
  155.  
  156. local screenGui = Instance.new("ScreenGui")
  157. screenGui.Name = "CyberLoader"
  158. screenGui.Parent = playerGui
  159. screenGui.ResetOnSpawn = false
  160.  
  161. local mainFrame = Instance.new("Frame")
  162. mainFrame.Size = UDim2.new(0, 300, 0, 200)
  163. mainFrame.Position = UDim2.new(0.5, -150, 0.5, -100)
  164. mainFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  165. mainFrame.BorderSizePixel = 0
  166. mainFrame.Active = true
  167. mainFrame.Draggable = true
  168. mainFrame.Parent = screenGui
  169.  
  170. local mainCorner = Instance.new("UICorner")
  171. mainCorner.CornerRadius = UDim.new(0, 10)
  172. mainCorner.Parent = mainFrame
  173.  
  174. local titleBar = Instance.new("Frame")
  175. titleBar.Size = UDim2.new(1, 0, 0, 30)
  176. titleBar.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  177. titleBar.Parent = mainFrame
  178.  
  179. local titleCorner = Instance.new("UICorner")
  180. titleCorner.CornerRadius = UDim.new(0, 10)
  181. titleCorner.Parent = titleBar
  182.  
  183. local title = Instance.new("TextLabel")
  184. title.Size = UDim2.new(1, -30, 1, 0)
  185. title.Position = UDim2.new(0, 5, 0, 0)
  186. title.BackgroundTransparency = 1
  187. title.Text = "🔒 Cyber Security Loader 🔒"
  188. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  189. title.TextScaled = true
  190. title.Font = Enum.Font.SourceSansBold
  191. title.Parent = titleBar
  192.  
  193. local closeButton = Instance.new("TextButton")
  194. closeButton.Size = UDim2.new(0, 25, 0, 25)
  195. closeButton.Position = UDim2.new(1, -30, 0, 2.5)
  196. closeButton.BackgroundColor3 = Color3.fromRGB(255, 50, 50)
  197. closeButton.Text = "X"
  198. closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  199. closeButton.TextScaled = true
  200. closeButton.Font = Enum.Font.SourceSansBold
  201. closeButton.Parent = titleBar
  202.  
  203. local closeCorner = Instance.new("UICorner")
  204. closeCorner.CornerRadius = UDim.new(0, 5)
  205. closeCorner.Parent = closeButton
  206.  
  207. closeButton.MouseEnter:Connect(function()
  208. TweenService:Create(closeButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 0, 0)}):Play()
  209. end)
  210. closeButton.MouseLeave:Connect(function()
  211. TweenService:Create(closeButton, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 50, 50)}):Play()
  212. end)
  213.  
  214. local loadButton = Instance.new("TextButton")
  215. loadButton.Size = UDim2.new(1, -20, 0, 50)
  216. loadButton.Position = UDim2.new(0, 10, 0, 50)
  217. loadButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  218. loadButton.Text = "🔒 LOAD CYBER SECURITY SCRIPT LIST (ANTI-ERROR)"
  219. loadButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  220. loadButton.TextScaled = true
  221. loadButton.Font = Enum.Font.SourceSansBold
  222. loadButton.Parent = mainFrame
  223.  
  224. local loadCorner = Instance.new("UICorner")
  225. loadCorner.CornerRadius = UDim.new(0, 5)
  226. loadCorner.Parent = loadButton
  227.  
  228. local infoLabel = Instance.new("TextLabel")
  229. infoLabel.Size = UDim2.new(1, -20, 0, 50)
  230. infoLabel.Position = UDim2.new(0, 10, 0, 110)
  231. infoLabel.BackgroundTransparency = 1
  232. infoLabel.Text = "Klik untuk daftar cyber security tools!\n(Badge spoof, FE bypass, network sim - Universal, anti-error)"
  233. infoLabel.TextColor3 = Color3.fromRGB(200, 200, 200)
  234. infoLabel.TextScaled = true
  235. infoLabel.Font = Enum.Font.SourceSans
  236. infoLabel.TextWrapped = true
  237. infoLabel.Parent = mainFrame
  238.  
  239. local creditLabel = Instance.new("TextLabel")
  240. creditLabel.Size = UDim2.new(1, -20, 0, 20)
  241. creditLabel.Position = UDim2.new(0, 10, 1, -25)
  242. creditLabel.BackgroundTransparency = 1
  243. creditLabel.Text = "Buatan heckes15 🔥 (Anti-Error Oct 2025)"
  244. creditLabel.TextColor3 = Color3.fromRGB(255, 100, 100)
  245. creditLabel.TextScaled = true
  246. creditLabel.Font = Enum.Font.SourceSansBold
  247. creditLabel.Parent = mainFrame
  248.  
  249. loadButton.MouseButton1Click:Connect(function()
  250. loadCyber()
  251. infoLabel.Text = "Cyber Security Script List loaded! Pilih tool. 🔒"
  252. infoLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  253. loadButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  254. loadButton.Text = "✅ LOADED"
  255. end)
  256.  
  257. closeButton.MouseButton1Click:Connect(function()
  258. local tweenOut = TweenService:Create(mainFrame, TweenInfo.new(0.3, Enum.EasingStyle.Back), {Size = UDim2.new(0, 0, 0, 0)})
  259. tweenOut:Play()
  260. tweenOut.Completed:Connect(function()
  261. screenGui:Destroy()
  262. end)
  263. end)
  264.  
  265. mainFrame.Size = UDim2.new(0, 300, 0, 200)
  266. end)
  267. end
  268.  
  269. -- Jalankan
  270. createMainGUI()
  271.  
  272. -- Persistent respawn
  273. player.CharacterAdded:Connect(function()
  274. wait(1)
  275. createMainGUI()
  276. end)
Advertisement
Comments
  • User was banned
  • Garqivor
    109 days
    # CSS 0.83 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1S1iTruSLkgEPO8QtTuo2twS4f2FoJ3_l0-p4GKqeAUY/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8.  
    9. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    10.  
    11. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification).
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment