Thecodeeasar

Fe void kill

Nov 9th, 2024 (edited)
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.70 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local fuckbyfron = Instance.new("ScreenGui")
  7. local window = Instance.new("Frame")
  8. local main = Instance.new("Frame")
  9. local input = Instance.new("TextBox")
  10. local exe = Instance.new("TextButton")
  11. local inj = Instance.new("TextButton")
  12. local open = Instance.new("TextButton")
  13. local clea = Instance.new("TextButton")
  14. local output = Instance.new("TextBox")
  15. local title = Instance.new("TextLabel")
  16. local logo = Instance.new("ImageLabel")
  17. local close = Instance.new("TextButton")
  18. local minimize = Instance.new("TextButton")
  19. local mini = Instance.new("ImageButton")
  20.  
  21. --Properties:
  22.  
  23. fuckbyfron.Name = "fuckbyfron"
  24. fuckbyfron.Parent = game.CoreGui
  25. fuckbyfron.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. window.Name = "window"
  28. window.Parent = fuckbyfron
  29. window.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  30. window.BorderColor3 = Color3.fromRGB(0, 0, 0)
  31. window.Position = UDim2.new(0.0651315823, 0, 0.17032434, 0)
  32. window.Size = UDim2.new(0, 306, 0, 364)
  33.  
  34. main.Name = "main"
  35. main.Parent = window
  36. main.BackgroundColor3 = Color3.fromRGB(236, 236, 236)
  37. main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  38. main.BorderSizePixel = 0
  39. main.Position = UDim2.new(0, 0, 0.0769230798, 0)
  40. main.Size = UDim2.new(0, 306, 0, 336)
  41.  
  42. input.Name = "input"
  43. input.Parent = main
  44. input.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  45. input.BorderColor3 = Color3.fromRGB(185, 185, 185)
  46. input.Position = UDim2.new(0.0205278583, 0, 0.0714285746, 0)
  47. input.Size = UDim2.new(0, 293, 0, 186)
  48. input.Font = Enum.Font.Arial
  49. input.MultiLine = true
  50. input.Text = ""
  51. input.TextColor3 = Color3.fromRGB(0, 0, 0)
  52. input.TextSize = 13.000
  53. input.TextWrapped = true
  54. input.TextXAlignment = Enum.TextXAlignment.Left
  55. input.TextYAlignment = Enum.TextYAlignment.Top
  56.  
  57. exe.Name = "exe"
  58. exe.Parent = main
  59. exe.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  60. exe.BorderColor3 = Color3.fromRGB(198, 198, 198)
  61. exe.Position = UDim2.new(0.0196078438, 0, 0.645833313, 0)
  62. exe.Size = UDim2.new(0, 64, 0, 23)
  63. exe.Font = Enum.Font.SourceSans
  64. exe.Text = "Execute"
  65. exe.TextColor3 = Color3.fromRGB(0, 0, 0)
  66. exe.TextSize = 14.000
  67. exe.MouseButton1Down:connect(function()
  68. loadstring(input.Text)()
  69. output.Text = "Script executed successfully!"
  70. wait(3)
  71. output.Text " "
  72. end)
  73.  
  74. inj.Name = "inj"
  75. inj.Parent = main
  76. inj.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  77. inj.BorderColor3 = Color3.fromRGB(198, 198, 198)
  78. inj.Position = UDim2.new(0.76797384, 0, 0.645833313, 0)
  79. inj.Size = UDim2.new(0, 64, 0, 23)
  80. inj.Font = Enum.Font.SourceSans
  81. inj.Text = "Inject"
  82. inj.TextColor3 = Color3.fromRGB(0, 0, 0)
  83. inj.TextSize = 14.000
  84. inj.MouseButton1Down:connect(function()
  85. wait(1)
  86. output.Text = "ShitSploit Injected!"
  87. wait(3)
  88. output.Text = " "
  89. end)
  90.  
  91. open.Name = "open"
  92. open.Parent = main
  93. open.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  94. open.BorderColor3 = Color3.fromRGB(198, 198, 198)
  95. open.Position = UDim2.new(0.264705896, 0, 0.645833313, 0)
  96. open.Size = UDim2.new(0, 64, 0, 23)
  97. open.Font = Enum.Font.SourceSans
  98. open.Text = "Open"
  99. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  100. open.TextSize = 14.000
  101. open.MouseButton1Down:connect(function()
  102. loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/ScriptHub"))()
  103. end)
  104.  
  105. clea.Name = "clea"
  106. clea.Parent = main
  107. clea.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  108. clea.BorderColor3 = Color3.fromRGB(198, 198, 198)
  109. clea.Position = UDim2.new(0.522875845, 0, 0.645833313, 0)
  110. clea.Size = UDim2.new(0, 64, 0, 23)
  111. clea.Font = Enum.Font.SourceSans
  112. clea.Text = "Clear"
  113. clea.TextColor3 = Color3.fromRGB(0, 0, 0)
  114. clea.TextSize = 14.000
  115. clea.MouseButton1Down:connect(function()
  116. input.Text = " "
  117. end)
  118.  
  119. output.Name = "output"
  120. output.Parent = main
  121. output.BackgroundColor3 = Color3.fromRGB(236, 236, 236)
  122. output.BorderColor3 = Color3.fromRGB(185, 185, 185)
  123. output.Position = UDim2.new(0.0205278583, 0, 0.747023821, 0)
  124. output.Size = UDim2.new(0, 293, 0, 70)
  125. output.Font = Enum.Font.Arial
  126. output.Text = ""
  127. output.TextColor3 = Color3.fromRGB(0, 0, 0)
  128. output.TextSize = 13.000
  129. output.TextXAlignment = Enum.TextXAlignment.Left
  130. output.TextYAlignment = Enum.TextYAlignment.Top
  131.  
  132. title.Name = "title"
  133. title.Parent = window
  134. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  135. title.BackgroundTransparency = 1.000
  136. title.BorderColor3 = Color3.fromRGB(0, 0, 0)
  137. title.BorderSizePixel = 0
  138. title.Position = UDim2.new(0.0909090936, 0, 0, 0)
  139. title.Size = UDim2.new(0, 110, 0, 28)
  140. title.Font = Enum.Font.SourceSans
  141. title.Text = "ShitSploit"
  142. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  143. title.TextSize = 14.000
  144. title.TextXAlignment = Enum.TextXAlignment.Left
  145.  
  146. logo.Name = "logo"
  147. logo.Parent = title
  148. logo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  149. logo.BackgroundTransparency = 1.000
  150. logo.BorderColor3 = Color3.fromRGB(0, 0, 0)
  151. logo.BorderSizePixel = 0
  152. logo.Position = UDim2.new(-0.218181819, 0, 0.142857149, 0)
  153. logo.Size = UDim2.new(0, 24, 0, 20)
  154. logo.Image = "http://www.roblox.com/asset/?id=1212687121"
  155.  
  156. close.Name = "close"
  157. close.Parent = window
  158. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  159. close.BackgroundTransparency = 1.000
  160. close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  161. close.BorderSizePixel = 0
  162. close.Position = UDim2.new(0.869281054, 0, 0, 0)
  163. close.Size = UDim2.new(0, 40, 0, 28)
  164. close.Font = Enum.Font.Arial
  165. close.Text = "X"
  166. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  167. close.TextSize = 14.000
  168. close.MouseButton1Down:connect(function()
  169. window.Visible = false
  170. end)
  171.  
  172. minimize.Name = "minimize"
  173. minimize.Parent = window
  174. minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  175. minimize.BackgroundTransparency = 1.000
  176. minimize.BorderColor3 = Color3.fromRGB(0, 0, 0)
  177. minimize.BorderSizePixel = 0
  178. minimize.Position = UDim2.new(0.637254894, 0, -0.000915757904, 0)
  179. minimize.Size = UDim2.new(0, 40, 0, 28)
  180. minimize.Font = Enum.Font.Arial
  181. minimize.Text = "-"
  182. minimize.TextColor3 = Color3.fromRGB(255, 255, 255)
  183. minimize.TextSize = 14.000
  184. minimize.MouseButton1Down:connect(function()
  185. window.Visible = false
  186. mini.Visible = true
  187. end)
  188.  
  189.  
  190. mini.Name = "mini"
  191. mini.Parent = fuckbyfron
  192. mini.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  193. mini.BorderColor3 = Color3.fromRGB(0, 0, 0)
  194. mini.BorderSizePixel = 0
  195. mini.Position = UDim2.new(0, 0, 0.90840143, 0)
  196. mini.Size = UDim2.new(0, 54, 0, 52)
  197. mini.Style = Enum.ButtonStyle.RobloxButton
  198. mini.Image = "http://www.roblox.com/asset/?id=1212687121"
  199. mini.Visible = false
  200. mini.MouseButton1Down:connect(function()
  201. mini.Visible = false
  202. window.Visible = true
  203. end)
  204.  
  205. -- Scripts:
  206.  
  207. local function SZFCN_fake_script() -- window.Dragify
  208. local script = Instance.new('LocalScript', window)
  209.  
  210. local UserInputService = game:GetService("UserInputService")
  211.  
  212. local gui = script.Parent
  213.  
  214. local dragging
  215. local dragInput
  216. local dragStart
  217. local startPos
  218.  
  219. local function update(input)
  220. local delta = input.Position - dragStart
  221. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  222. end
  223.  
  224. gui.InputBegan:Connect(function(input)
  225. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  226. dragging = true
  227. dragStart = input.Position
  228. startPos = gui.Position
  229.  
  230. input.Changed:Connect(function()
  231. if input.UserInputState == Enum.UserInputState.End then
  232. dragging = false
  233. end
  234. end)
  235. end
  236. end)
  237.  
  238. gui.InputChanged:Connect(function(input)
  239. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  240. dragInput = input
  241. end
  242. end)
  243.  
  244. UserInputService.InputChanged:Connect(function(input)
  245. if input == dragInput and dragging then
  246. update(input)
  247. end
  248. end)
  249. end
  250. coroutine.wrap(SZFCN_fake_script)()
  251.  
Add Comment
Please, Sign In to add comment