Advertisement
Guest User

Untitled

a guest
Dec 7th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 17.81 KB | None | 0 0
  1. -- Objects
  2.  
  3. local AzardGUI = Instance.new("ScreenGui")
  4. local LoginGUI = Instance.new("Frame")
  5. local lbar1 = Instance.new("Frame")
  6. local user = Instance.new("TextBox")
  7. local pass = Instance.new("TextBox")
  8. local submit = Instance.new("TextButton")
  9. local ltitle = Instance.new("TextLabel")
  10. local lnews1 = Instance.new("TextLabel")
  11. local lexitbutton = Instance.new("TextButton")
  12. local MainFrame = Instance.new("Frame")
  13. local mbar1 = Instance.new("Frame")
  14. local mtitle1 = Instance.new("TextLabel")
  15. local mexitbutton = Instance.new("TextButton")
  16. local silverfechecker = Instance.new("TextButton")
  17. local silverfegui = Instance.new("TextButton")
  18. local howtomakeguissoon = Instance.new("TextButton")
  19. local fecheckerframe = Instance.new("Frame")
  20. local febar = Instance.new("Frame")
  21. local fecheckfe = Instance.new("TextButton")
  22. local fetitle = Instance.new("TextLabel")
  23. local feexitbutton = Instance.new("TextButton")
  24. local feresetchecker = Instance.new("TextButton")
  25.  
  26. -- Properties
  27.  
  28. AzardGUI.Name = "AzardGUI"
  29. AzardGUI.Parent = game.CoreGui
  30.  
  31. LoginGUI.Name = "LoginGUI"
  32. LoginGUI.Parent = AzardGUI
  33. LoginGUI.Active = true
  34. LoginGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  35. LoginGUI.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  36. LoginGUI.Draggable = true
  37. LoginGUI.Position = UDim2.new(0.3216241, 0, 0.155482829, 0)
  38. LoginGUI.Selectable = true
  39. LoginGUI.Size = UDim2.new(0, 391, 0, 421)
  40.  
  41. lbar1.Name = "lbar1"
  42. lbar1.Parent = LoginGUI
  43. lbar1.BackgroundColor3 = Color3.new(0, 0, 0)
  44. lbar1.BorderColor3 = Color3.new(0, 0, 0)
  45. lbar1.Size = UDim2.new(0, 391, 0, 19)
  46.  
  47. user.Name = "user"
  48. user.Parent = LoginGUI
  49. user.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  50. user.BorderColor3 = Color3.new(1, 1, 1)
  51. user.Position = UDim2.new(0.163682863, 0, 0.304038018, 0)
  52. user.Size = UDim2.new(0, 262, 0, 27)
  53. user.Font = Enum.Font.SourceSansBold
  54. user.FontSize = Enum.FontSize.Size24
  55. user.Text = "Username"
  56. user.TextColor3 = Color3.new(1, 1, 1)
  57. user.TextSize = 20
  58.  
  59. pass.Name = "pass"
  60. pass.Parent = LoginGUI
  61. pass.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  62. pass.BorderColor3 = Color3.new(1, 1, 1)
  63. pass.Position = UDim2.new(0.163682863, 0, 0.593824267, 0)
  64. pass.Size = UDim2.new(0, 262, 0, 27)
  65. pass.Font = Enum.Font.SourceSansBold
  66. pass.FontSize = Enum.FontSize.Size24
  67. pass.Text = "Password"
  68. pass.TextColor3 = Color3.new(1, 1, 1)
  69. pass.TextSize = 20
  70.  
  71. submit.Name = "submit"
  72. submit.Parent = LoginGUI
  73. submit.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  74. submit.BorderColor3 = Color3.new(1, 1, 1)
  75. submit.Position = UDim2.new(0.326086968, 0, 0.748218536, 0)
  76. submit.Size = UDim2.new(0, 135, 0, 68)
  77. submit.Font = Enum.Font.SourceSansBold
  78. submit.FontSize = Enum.FontSize.Size32
  79. submit.Text = "Submit"
  80. submit.TextColor3 = Color3.new(1, 1, 1)
  81. submit.TextSize = 30
  82.  
  83. submit.MouseButton1Down:connect(function()
  84.     if user.Text == "Hacker" and pass.Text == "Cool" then
  85.         LoginGUI.Visible = false
  86.         MainFrame.Visible = true
  87.     end
  88. end)
  89.  
  90. ltitle.Name = "ltitle"
  91. ltitle.Parent = LoginGUI
  92. ltitle.BackgroundColor3 = Color3.new(1, 1, 1)
  93. ltitle.BackgroundTransparency = 3
  94. ltitle.Position = UDim2.new(0.332480818, 0, 0.0783847943, 0)
  95. ltitle.Size = UDim2.new(0, 130, 0, 36)
  96. ltitle.Font = Enum.Font.SourceSansBold
  97. ltitle.FontSize = Enum.FontSize.Size32
  98. ltitle.Text = "Silver HUB"
  99. ltitle.TextColor3 = Color3.new(1, 1, 1)
  100. ltitle.TextSize = 30
  101. ltitle.TextWrapped = true
  102. ltitle.TextXAlignment = Enum.TextXAlignment.Left
  103.  
  104. lnews1.Name = "lnews1"
  105. lnews1.Parent = LoginGUI
  106. lnews1.BackgroundColor3 = Color3.new(1, 1, 1)
  107. lnews1.BackgroundTransparency = 3
  108. lnews1.Position = UDim2.new(0.38107416, 0, 0.945368171, 0)
  109. lnews1.Size = UDim2.new(0, 242, 0, 23)
  110. lnews1.Font = Enum.Font.SourceSansBold
  111. lnews1.FontSize = Enum.FontSize.Size24
  112. lnews1.Text = "I don't know what to put here"
  113. lnews1.TextColor3 = Color3.new(1, 1, 1)
  114. lnews1.TextSize = 20
  115. lnews1.TextWrapped = true
  116.  
  117. lexitbutton.Name = "lexitbutton"
  118. lexitbutton.Parent = LoginGUI
  119. lexitbutton.BackgroundColor3 = Color3.new(1, 1, 1)
  120. lexitbutton.BackgroundTransparency = 2
  121. lexitbutton.Position = UDim2.new(0.946291506, 0, -0.00118765142, 0)
  122. lexitbutton.Size = UDim2.new(0, 15, 0, 16)
  123. lexitbutton.Font = Enum.Font.SourceSansBold
  124. lexitbutton.FontSize = Enum.FontSize.Size24
  125. lexitbutton.Text = "X"
  126. lexitbutton.TextColor3 = Color3.new(1, 1, 1)
  127. lexitbutton.TextSize = 23
  128.  
  129. lexitbutton.MouseButton1Down:connect(function()
  130.     AzardGUI:Destroy()
  131. end)
  132.  
  133. MainFrame.Name = "MainFrame"
  134. MainFrame.Parent = AzardGUI
  135. MainFrame.Active = true
  136. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  137. MainFrame.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  138. MainFrame.Draggable = true
  139. MainFrame.Position = UDim2.new(0.331204355, 0, 0.259410828, 0)
  140. MainFrame.Selectable = true
  141. MainFrame.Size = UDim2.new(0, 381, 0, 294)
  142. MainFrame.Visible = false
  143.  
  144. mbar1.Name = "mbar1"
  145. mbar1.Parent = MainFrame
  146. mbar1.BackgroundColor3 = Color3.new(0, 0, 0)
  147. mbar1.BorderColor3 = Color3.new(0, 0, 0)
  148. mbar1.Size = UDim2.new(0, 381, 0, 22)
  149.  
  150. mtitle1.Name = "mtitle1"
  151. mtitle1.Parent = MainFrame
  152. mtitle1.BackgroundColor3 = Color3.new(1, 1, 1)
  153. mtitle1.BackgroundTransparency = 3
  154. mtitle1.Position = UDim2.new(0.186351717, 0, 0.0731292516, 0)
  155. mtitle1.Size = UDim2.new(0, 222, 0, 37)
  156. mtitle1.Font = Enum.Font.SourceSansBold
  157. mtitle1.FontSize = Enum.FontSize.Size24
  158. mtitle1.Text = "Welcome to Silver HUB, "..plr.Name
  159. mtitle1.TextColor3 = Color3.new(1, 1, 1)
  160. mtitle1.TextSize = 20
  161.  
  162. mexitbutton.Name = "mexitbutton"
  163. mexitbutton.Parent = MainFrame
  164. mexitbutton.BackgroundColor3 = Color3.new(1, 1, 1)
  165. mexitbutton.BackgroundTransparency = 3
  166. mexitbutton.Position = UDim2.new(0.944881916, 0, 0.00680271536, 0)
  167. mexitbutton.Size = UDim2.new(0, 21, 0, 18)
  168. mexitbutton.Font = Enum.Font.SourceSansBold
  169. mexitbutton.FontSize = Enum.FontSize.Size24
  170. mexitbutton.Text = "X"
  171. mexitbutton.TextColor3 = Color3.new(1, 1, 1)
  172. mexitbutton.TextSize = 20
  173.  
  174. mexitbutton.MouseButton1Down:connect(function()
  175.     AzardGUI:Destroy()
  176. end)
  177.  
  178. silverfechecker.Name = "silverfechecker"
  179. silverfechecker.Parent = MainFrame
  180. silverfechecker.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  181. silverfechecker.BorderColor3 = Color3.new(1, 1, 1)
  182. silverfechecker.Position = UDim2.new(0.0813648328, 0, 0.278911561, 0)
  183. silverfechecker.Size = UDim2.new(0, 127, 0, 78)
  184. silverfechecker.Font = Enum.Font.SourceSansBold
  185. silverfechecker.FontSize = Enum.FontSize.Size24
  186. silverfechecker.Text = "FE checker (GUI)"
  187. silverfechecker.TextColor3 = Color3.new(1, 1, 1)
  188. silverfechecker.TextSize = 20
  189.  
  190. silverfechecker.MouseButton1Down:connect(function()
  191.     fecheckerframe.Visible = true
  192. end)
  193.  
  194. silverfegui.Name = "silverfegui"
  195. silverfegui.Parent = MainFrame
  196. silverfegui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  197. silverfegui.BorderColor3 = Color3.new(1, 1, 1)
  198. silverfegui.Position = UDim2.new(0.553805768, 0, 0.278911561, 0)
  199. silverfegui.Size = UDim2.new(0, 127, 0, 78)
  200. silverfegui.Font = Enum.Font.SourceSansBold
  201. silverfegui.FontSize = Enum.FontSize.Size24
  202. silverfegui.Text = "FE Gui"
  203. silverfegui.TextColor3 = Color3.new(1, 1, 1)
  204. silverfegui.TextSize = 20
  205.  
  206. silverfechecker.MouseButton1Down:connect(function()
  207.     --Made By Balkus/ISpent
  208.  
  209. local Fe = Instance.new("ScreenGui")
  210. local Open = Instance.new("Frame")
  211. local OpenGui = Instance.new("TextButton")
  212. local GuiFrame = Instance.new("Frame")
  213. local God = Instance.new("TextButton")
  214. local ShutDown = Instance.new("TextButton")
  215. local FeBtools = Instance.new("TextButton")
  216. local Headless = Instance.new("TextButton")
  217. local Bricks = Instance.new("TextButton")
  218. local TextBox_2 = Instance.new("TextLabel")
  219. local p = game.Players.LocalPlayer
  220.  
  221. Fe.Name = "Fe"
  222. Fe.Parent = game.CoreGui
  223.  
  224. Open.Name = "Open"
  225. Open.Parent = Fe
  226. Open.BackgroundColor3 = Color3.new(0.352941, 0.6, 1)
  227. Open.Position = UDim2.new(0, 0, 0, 351)
  228. Open.Size = UDim2.new(0, 105, 0, 117)
  229.  
  230. OpenGui.Name = "OpenGui"
  231. OpenGui.Parent = Open
  232. OpenGui.BackgroundColor3 = Color3.new(1, 1, 1)
  233. OpenGui.Size = UDim2.new(0, 105, 0, 117)
  234. OpenGui.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  235. OpenGui.Font = Enum.Font.SourceSans
  236. OpenGui.FontSize = Enum.FontSize.Size14
  237. OpenGui.Text = "Open"
  238. OpenGui.TextSize = 14
  239.  
  240. GuiFrame.Name = "GuiFrame"
  241. GuiFrame.Parent = Fe
  242. GuiFrame.Visible = false
  243. GuiFrame.Active = true
  244. GuiFrame.BackgroundColor3 = Color3.new(0.415686, 1, 0.254902)
  245. GuiFrame.Draggable = true
  246. GuiFrame.Position = UDim2.new(0, 100, 0, 400)
  247. GuiFrame.Selectable = true
  248. GuiFrame.Size = UDim2.new(0, 449, 0, 290)
  249. GuiFrame.Style = Enum.FrameStyle.RobloxSquare
  250.  
  251. God.Name = "God"
  252. God.Parent = GuiFrame
  253. God.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  254. God.Size = UDim2.new(0, 200, 0, 50)
  255. God.Font = Enum.Font.SourceSans
  256. God.FontSize = Enum.FontSize.Size14
  257. God.Text = "God"
  258. God.TextSize = 14
  259.  
  260. ShutDown.Name = "ShutDown"
  261. ShutDown.Parent = GuiFrame
  262. ShutDown.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  263. ShutDown.Position = UDim2.new(0, 0, 0, 67)
  264. ShutDown.Size = UDim2.new(0, 200, 0, 50)
  265. ShutDown.Font = Enum.Font.SourceSans
  266. ShutDown.FontSize = Enum.FontSize.Size14
  267. ShutDown.Text = "Shutdown"
  268. ShutDown.TextSize = 14
  269.  
  270. FeBtools.Name = "FeBtools"
  271. FeBtools.Parent = GuiFrame
  272. FeBtools.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  273. FeBtools.Position = UDim2.new(0, 224, 0, 66)
  274. FeBtools.Size = UDim2.new(0, 200, 0, 50)
  275. FeBtools.Font = Enum.Font.SourceSans
  276. FeBtools.FontSize = Enum.FontSize.Size14
  277. FeBtools.Text = "FeBtools"
  278. FeBtools.TextSize = 14
  279.  
  280.  
  281. Headless.Name = "Headless"
  282. Headless.Parent = GuiFrame
  283. Headless.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  284. Headless.Position = UDim2.new(0, 224, 0, 0)
  285. Headless.Size = UDim2.new(0, 200, 0, 50)
  286. Headless.Font = Enum.Font.SourceSans
  287. Headless.FontSize = Enum.FontSize.Size14
  288. Headless.Text = "Headless"
  289. Headless.TextSize = 14
  290.  
  291. Bricks.Name = "Bricks"
  292. Bricks.Parent = GuiFrame
  293. Bricks.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  294. Bricks.Position = UDim2.new(0, 0, 0, 145)
  295. Bricks.Size = UDim2.new(0, 200, 0, 50)
  296. Bricks.Font = Enum.Font.SourceSans
  297. Bricks.FontSize = Enum.FontSize.Size14
  298. Bricks.Text = "Bricks"
  299. Bricks.TextSize = 14
  300.  
  301. TextBox_2.Parent = GuiFrame
  302. TextBox_2.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  303. TextBox_2.Position = UDim2.new(0, 0, 0, 254)
  304. TextBox_2.Size = UDim2.new(0, 200, 0, 19)
  305. TextBox_2.Font = Enum.Font.SourceSans
  306. TextBox_2.FontSize = Enum.FontSize.Size14
  307. TextBox_2.Text = "Made By ISpent/Balkus"
  308. TextBox_2.TextSize = 14
  309. God.MouseButton1Down:connect(function()
  310. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  311. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  312. l.Parent = game.Players.LocalPlayer.Character
  313. l.Name = "Humanoid"
  314. wait(0.1)
  315. game.Players.LocalPlayer.Character["1"]:Destroy()
  316. game.Workspace.CurrentCamera.CameraSubject =
  317. game.Players.LocalPlayer.Character
  318. game.Players.LocalPlayer.Character.Animate.Disabled = true
  319. wait(0.1)
  320. game.Players.LocalPlayer.Character.Animate.Disabled = false
  321. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  322. end)
  323. ShutDown.MouseButton1Down:connect(function()
  324.     while wait() do
  325.    for i,v in pairs(game:GetService'Players':GetPlayers()) do
  326.        if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  327.            for _,x in pairs(v.Character.Head:GetChildren()) do
  328.                if x:IsA'Sound' then x.Playing = true end
  329.            end
  330.        end
  331.    end
  332. end
  333. while wait() do
  334.    for i,v in pairs(game:GetService'Players':GetPlayers()) do
  335.        if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  336.            for _,x in pairs(v.Character.Head:GetChildren()) do
  337.                if x:IsA'Sound' then x.Playing = false end
  338.            end
  339.        end
  340.    end
  341. end
  342. end)
  343. FeBtools.MouseButton1Down:connect(function()
  344. --Ur mom is lesbian if u leak this--
  345. maind = nil
  346. if workspace:FindFirstChild'GiveSystem' then
  347. if workspace.GiveSystem:FindFirstChild'GiveItem' then
  348. maind = workspace.GiveSystem.GiveItem
  349. end
  350. end
  351. if workspace:FindFirstChild'HandToCentre' then
  352. if workspace.HandToCentre:FindFirstChild'SendItem' then
  353. maind = workspace.HandToCentre.SendItem
  354. end
  355. end
  356. if maind == nil then
  357. print'Try another game.'
  358. return
  359. end
  360. tool = Instance.new'Tool'
  361. me = game:GetService'Players'.LocalPlayer
  362. tool.RequiresHandle = false
  363. tool.TextureId = 'http://www.roblox.com/asset/?id=12223874'
  364. tool.Name = 'Destroy!!!!'
  365. tool.Parent = me.Backpack
  366. buttonf = nil
  367. tool.Equipped:connect(function()
  368. local m = game:GetService'Players'.LocalPlayer:GetMouse()
  369. m.Icon = 'rbxasset://textures/HammerCursor.png'
  370. buttonf = m.Button1Down:connect(function()
  371. if m.Target == nil then return end
  372. local ob = m.Target
  373. if ob:IsA'BasePart' or ob:IsA'WedgePart' then
  374. if ob:IsDescendantOf(me.Character) then return end
  375. m.Icon = 'rbxasset://textures/HammerOverCursor.png'
  376. local ex = Instance.new'Explosion'
  377. ex.BlastRadius = 1
  378. ex.Position = ob.Position
  379. ex.Parent = workspace
  380. maind:FireServer(workspace, ob)
  381. wait(0.1)
  382. m.Icon = 'rbxasset://textures/HammerCursor.png'
  383. end
  384. end)
  385. end)
  386. tool.Unequipped:connect(function()
  387. if buttonf ~= nil then
  388. buttonf:Disconnect()
  389. buttonf = nil
  390. end
  391. local m = game:GetService'Players'.LocalPlayer:GetMouse()
  392. m.Icon = ''
  393. end)
  394. end)
  395.  
  396. Headless.MouseButton1Down:connect(function()
  397.     while true do
  398. local weld = Instance.new('Weld')
  399. weld.Parent = game.Players.LocalPlayer.Character.Torso
  400. weld.Part0 = weld.Parent
  401. weld.Part1 = weld.Parent.Parent.Head
  402. weld.C0 = CFrame.new(0, 300, 0)
  403. weld.Parent.Parent.Head.CanCollide = true
  404. wait (0.1)
  405. end
  406. end)
  407. Bricks.MouseButton1Down:connect(function()
  408. local player = game.Players.LocalPlayer
  409.  
  410. local function CreatePart()
  411.     for _,v in pairs(player.Character:GetChildren()) do v:Destroy() end
  412.     local prt = Instance.new("Model", workspace);
  413.     Instance.new("Part", prt).Name = "Torso";
  414.     Instance.new("Part", prt).Name = "Head";
  415.     Instance.new("Humanoid", prt).Name = "Humanoid";
  416.     player.Character = prt 
  417. end
  418.  
  419. local function Test(place, func)
  420.     for _, v in pairs(place:GetChildren()) do
  421.         if v:IsA'Accoutrement' then
  422.             func(v)
  423.         end
  424.     end
  425. end
  426.  
  427. for i=1, 20 do
  428.     wait(1)
  429.     Test(player.Backpack, function(p) p.Parent = player.Character p.Parent = workspace.Terrain end)
  430.    
  431.     Test(player.Character, function(p)
  432.         for _, h in pairs(p.Handle:GetChildren()) do h:Destroy() end
  433.         wait(0.1)
  434.         p.Parent = player.StarterGear
  435.     end)
  436.  
  437.     CreatePart()
  438.    
  439.     repeat wait(1) until player.Character:FindFirstChild'Torso'
  440.     Test(player.Backpack, function(p) p.Parent = player.StarterGear end)
  441.     CreatePart()
  442. end
  443. end)
  444. OpenGui.MouseButton1Down:connect(function()
  445. game.CoreGui.Fe.Open.Visible = false
  446. game.CoreGui.Fe.GuiFrame.Visible = true
  447. end)
  448. end)
  449.  
  450. howtomakeguissoon.Name = "howtomakeguissoon"
  451. howtomakeguissoon.Parent = MainFrame
  452. howtomakeguissoon.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  453. howtomakeguissoon.BorderColor3 = Color3.new(1, 1, 1)
  454. howtomakeguissoon.Position = UDim2.new(0.157480314, 0, 0.65646261, 0)
  455. howtomakeguissoon.Size = UDim2.new(0, 262, 0, 81)
  456. howtomakeguissoon.Font = Enum.Font.SourceSansBold
  457. howtomakeguissoon.FontSize = Enum.FontSize.Size24
  458. howtomakeguissoon.Text = "How to make guis (Coming soon)"
  459. howtomakeguissoon.TextColor3 = Color3.new(1, 1, 1)
  460. howtomakeguissoon.TextSize = 20
  461.  
  462. fecheckerframe.Name = "fecheckerframe"
  463. fecheckerframe.Parent = AzardGUI
  464. fecheckerframe.Active = true
  465. fecheckerframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  466. fecheckerframe.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  467. fecheckerframe.Draggable = true
  468. fecheckerframe.Position = UDim2.new(0.32162407, 0, 0.259410739, 0)
  469. fecheckerframe.Selectable = true
  470. fecheckerframe.Size = UDim2.new(0, 381, 0, 294)
  471. fecheckerframe.Visible = false
  472.  
  473. febar.Name = "febar"
  474. febar.Parent = fecheckerframe
  475. febar.BackgroundColor3 = Color3.new(0, 0, 0)
  476. febar.BorderColor3 = Color3.new(0, 0, 0)
  477. febar.Size = UDim2.new(0, 381, 0, 22)
  478.  
  479. fecheckfe.Name = "fecheckfe"
  480. fecheckfe.Parent = fecheckerframe
  481. fecheckfe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  482. fecheckfe.BorderColor3 = Color3.new(1, 1, 1)
  483. fecheckfe.Position = UDim2.new(0.333333343, 0, 0.367346942, 0)
  484. fecheckfe.Size = UDim2.new(0, 127, 0, 78)
  485. fecheckfe.Font = Enum.Font.SourceSansBold
  486. fecheckfe.FontSize = Enum.FontSize.Size24
  487. fecheckfe.Text = "Check FE"
  488. fecheckfe.TextColor3 = Color3.new(1, 1, 1)
  489. fecheckfe.TextSize = 20
  490.  
  491. fecheckfe.MouseButton1Down:connect(function()
  492.     if workspace.FilteringEnabled == true then
  493.         fecheckfe.Text = "True"
  494.     else
  495.         fecheckfe.Text = "False"
  496.     end
  497. end)
  498.  
  499. fetitle.Name = "fetitle"
  500. fetitle.Parent = fecheckerframe
  501. fetitle.BackgroundColor3 = Color3.new(1, 1, 1)
  502. fetitle.BackgroundTransparency = 3
  503. fetitle.Position = UDim2.new(0, 0, 5.58793545e-09, 0)
  504. fetitle.Size = UDim2.new(0, 99, 0, 24)
  505. fetitle.Font = Enum.Font.SourceSansBold
  506. fetitle.FontSize = Enum.FontSize.Size24
  507. fetitle.Text = "FE Checker"
  508. fetitle.TextColor3 = Color3.new(1, 1, 1)
  509. fetitle.TextSize = 20
  510.  
  511. feexitbutton.Name = "feexitbutton"
  512. feexitbutton.Parent = fecheckerframe
  513. feexitbutton.BackgroundColor3 = Color3.new(1, 1, 1)
  514. feexitbutton.BackgroundTransparency = 3
  515. feexitbutton.Position = UDim2.new(0.944881916, 0, 0.00680271536, 0)
  516. feexitbutton.Size = UDim2.new(0, 21, 0, 18)
  517. feexitbutton.Font = Enum.Font.SourceSansBold
  518. feexitbutton.FontSize = Enum.FontSize.Size24
  519. feexitbutton.Text = "X"
  520. feexitbutton.TextColor3 = Color3.new(1, 1, 1)
  521. feexitbutton.TextSize = 20
  522.  
  523. feexitbutton.MouseButton1Down:connect(function()
  524.     fecheckerframe.Visible = false
  525. end)
  526.  
  527. feresetchecker.Name = "feresetchecker"
  528. feresetchecker.Parent = fecheckerframe
  529. feresetchecker.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  530. feresetchecker.BorderColor3 = Color3.new(1, 1, 1)
  531. feresetchecker.Position = UDim2.new(0.221784785, 0, 0.744897962, 0)
  532. feresetchecker.Size = UDim2.new(0, 212, 0, 36)
  533. feresetchecker.Font = Enum.Font.SourceSansBold
  534. feresetchecker.FontSize = Enum.FontSize.Size24
  535. feresetchecker.Text = "Reset FE Checker"
  536. feresetchecker.TextColor3 = Color3.new(1, 1, 1)
  537. feresetchecker.TextSize = 20
  538.  
  539. feresetchecker.MouseButton1Down:connect(function()
  540.     fecheckfe.Text = "Check FE"
  541. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement