Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. -- Objects
  2.  
  3. local QTX = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Exe = Instance.new("TextButton")
  6. local Clr = Instance.new("TextButton")
  7. local Box = Instance.new("ScrollingFrame")
  8. local Script = Instance.new("TextBox")
  9. local Check = Instance.new("TextButton")
  10. local FECheck = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12. local Open = Instance.new("TextButton")
  13. local CG = game.Players.LocalPlayer.PlayerGui
  14.  
  15. -- Properties
  16.  
  17. QTX.Name = "QTX"
  18. QTX.Parent = game.Players.LocalPlayer.PlayerGui
  19. local Main = CG.QTX
  20.  
  21. Frame.Parent = QTX
  22. Frame.Active = true
  23. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Frame.Draggable = true
  25. Frame.Position = UDim2.new(0.0985401496, 0, 0.359649122, 0)
  26. Frame.Size = UDim2.new(0, 432, 0, 260)
  27. Frame.ClearTextOnFocus = false
  28. Frame.TextWrapped = true
  29.  
  30. Box.Name = "Box"
  31. Box.Parent = Frame
  32. Box.BackgroundColor3 = Color3.new(1, 1, 1)
  33. Box.Position = UDim2.new(0.0185185187, 0, 0.154116064, 0)
  34. Box.Size = UDim2.new(0, 416, 0, 173)
  35.  
  36. Script.Name = "Script"
  37. Script.Parent = Box
  38. Script.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039)
  39. Script.Size = UDim2.new(0, 402, 0, 9999)
  40. Script.Font = Enum.Font.SourceSans
  41. Script.FontSize = Enum.FontSize.Size14
  42. Script.Text = "Put Script Here"
  43. Script.TextColor3 = Color3.new(1, 1, 1)
  44. Script.TextSize = 14
  45. Script.TextXAlignment = Enum.TextXAlignment.Left
  46. Script.TextYAlignment = Enum.TextYAlignment.Top
  47.  
  48. Clr.Name = "Clr"
  49. Clr.Parent = Frame
  50. Clr.BackgroundColor3 = Color3.new(0.603922, 0.603922, 0.603922)
  51. Clr.BorderSizePixel = 0
  52. Clr.Position = UDim2.new(0.162296206, 0, 0.866767883, 0)
  53. Clr.Size = UDim2.new(0, 58, 0, 30)
  54. Clr.Font = Enum.Font.SourceSans
  55. Clr.FontSize = Enum.FontSize.Size14
  56. Clr.Text = "Clear"
  57. Clr.TextColor3 = Color3.new(0, 0, 0)
  58. Clr.TextSize = 14
  59. Clr.MouseButton1Down:connect(function()
  60. Script.Text = ""
  61. end)
  62.  
  63. Exe.Name = "Exe"
  64. Exe.Parent = Frame
  65. Exe.BackgroundColor3 = Color3.new(0.603922, 0.603922, 0.603922)
  66. Exe.BorderSizePixel = 0
  67. Exe.Position = UDim2.new(0.013888889, 0, 0.866902828, 0)
  68. Exe.Size = UDim2.new(0, 58, 0, 30)
  69. Exe.Font = Enum.Font.SourceSans
  70. Exe.FontSize = Enum.FontSize.Size14
  71. Exe.Text = "Execute"
  72. Exe.TextColor3 = Color3.new(0, 0, 0)
  73. Exe.TextSize = 14
  74. Exe.MouseButton1Down:connect(function()
  75. loadstring(Script.Text)()
  76. end)
  77.  
  78. Check.Name = "Check"
  79. Check.Parent = Frame
  80. Check.BackgroundColor3 = Color3.new(1, 1, 1)
  81. Check.Position = UDim2.new(0.0254629627, 0, 0.0269230772, 0)
  82. Check.Size = UDim2.new(0, 48, 0, 26)
  83. Check.Font = Enum.Font.SourceSans
  84. Check.FontSize = Enum.FontSize.Size14
  85. Check.Text = "Check FE"
  86. Check.TextSize = 14
  87. Check.MouseButton1Down:connect(function()
  88. if game.Workspace.FilteringEnabled == true then
  89. FECheck.Text = "Authenticated | Filtering Enabled"
  90. end
  91. if game.Workspace.FilteringEnabled == false then
  92. FECheck.Text = "Authenticated | Filtering Disabled"
  93. end
  94. end)
  95.  
  96. FECheck.Name = "FECheck"
  97. FECheck.Parent = Frame
  98. FECheck.BackgroundColor3 = Color3.new(1, 1, 1)
  99. FECheck.BorderColor3 = Color3.new(1, 1, 1)
  100. FECheck.Position = UDim2.new(0.159722209, 0, 0.0269905552, 0)
  101. FECheck.Size = UDim2.new(0, 170, 0, 26)
  102. FECheck.Font = Enum.Font.SourceSans
  103. FECheck.FontSize = Enum.FontSize.Size14
  104. FECheck.Text = "Click \"Check FE\""
  105. FECheck.TextSize = 14
  106.  
  107. Close.Name = "Close"
  108. Close.Parent = Frame
  109. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  110. Close.BorderColor3 = Color3.new(1, 1, 1)
  111. Close.BorderSizePixel = 0
  112. Close.Position = UDim2.new(0.94907409, 0, 0, 0)
  113. Close.Size = UDim2.new(0, 22, 0, 24)
  114. Close.Font = Enum.Font.SourceSansBold
  115. Close.FontSize = Enum.FontSize.Size36
  116. Close.Text = "X"
  117. Close.TextColor3 = Color3.new(1, 0, 0)
  118. Close.TextSize = 36
  119. Close.MouseButton1Down:connect(function()
  120. Main.Frame.Visible = false
  121. Open.Visible = true
  122. end)
  123.  
  124. Open.Name = "Open"
  125. Open.Parent = QTX
  126. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  127. Open.BorderColor3 = Color3.new(1, 1, 1)
  128. Open.BorderSizePixel = 0
  129. Open.Position = UDim2.new(0, 0, 0.359603018, 0)
  130. Open.Size = UDim2.new(0, 22, 0, 24)
  131. Open.Font = Enum.Font.SourceSansBold
  132. Open.FontSize = Enum.FontSize.Size36
  133. Open.Text = "O"
  134. Open.TextColor3 = Color3.new(0.0470588, 1, 0)
  135. Open.TextSize = 36
  136. Open.MouseButton1Down:connect(function()
  137. Main.Frame.Visible = true
  138. Open.Visible = false
  139. end)
  140.  
  141. if Open.Visible == true then
  142. Main.Frame.Visible = false
  143. end
  144. --[[Made By ApolloTeddy on v3rmillion
  145. 卂卩ㄖㄥㄥㄖ
  146. ㄒ乇ᗪᗪㄚ--]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement