Advertisement
Doller3795

SSE

Aug 21st, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 11.87 KB | None | 0 0
  1. local FilteringDisabledFullLuaGUI = Instance.new("ScreenGui")
  2. local MainLoginFrame = Instance.new("Frame")
  3. local MainTitleFrame = Instance.new("Frame")
  4. local TitleLabel = Instance.new("TextLabel")
  5. local CloseTextBox = Instance.new("TextButton")
  6. local LogInTextBox = Instance.new("TextButton")
  7. local UserNameTextBox = Instance.new("TextBox")
  8. local PassWordTextBox = Instance.new("TextBox")
  9. local MainExecuteFrame = Instance.new("Frame")
  10. local MainTitleFrame_2 = Instance.new("Frame")
  11. local TitleLabel_2 = Instance.new("TextLabel")
  12. local MiniTextButton = Instance.new("TextButton")
  13. local ExecuteTextBox = Instance.new("TextButton")
  14. local ClearTextBox = Instance.new("TextButton")
  15. local ScriptTextBox = Instance.new("TextBox")
  16. local OpenTextButton = Instance.new("TextButton")
  17.  
  18. FilteringDisabledFullLuaGUI.Name = "FilteringDisabledFullLuaGUI"
  19. FilteringDisabledFullLuaGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20.  
  21. MainLoginFrame.Name = "MainLoginFrame"
  22. MainLoginFrame.Parent = FilteringDisabledFullLuaGUI
  23. MainLoginFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  24. MainLoginFrame.BorderColor3 = Color3.new(0, 0, 0)
  25. MainLoginFrame.BorderSizePixel = 5
  26. MainLoginFrame.Position = UDim2.new(0.000390174799, 0, -0.000550031662, 0)
  27. MainLoginFrame.Size = UDim2.new(0, 350, 0, 225)
  28.  
  29. MainTitleFrame.Name = "MainTitleFrame"
  30. MainTitleFrame.Parent = MainLoginFrame
  31. MainTitleFrame.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  32. MainTitleFrame.BorderColor3 = Color3.new(0, 0, 0)
  33. MainTitleFrame.Position = UDim2.new(-0.00122126192, 0, 0.00197547674, 0)
  34. MainTitleFrame.Size = UDim2.new(0, 350, 0, 50)
  35.  
  36. TitleLabel.Name = "TitleLabel"
  37. TitleLabel.Parent = MainTitleFrame
  38. TitleLabel.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  39. TitleLabel.BorderColor3 = Color3.new(1, 1, 1)
  40. TitleLabel.BorderSizePixel = 0
  41. TitleLabel.Position = UDim2.new(-0.00122123957, 0, 0.231627494, 0)
  42. TitleLabel.Size = UDim2.new(0, 350, 0, 25)
  43. TitleLabel.Font = Enum.Font.SciFi
  44. TitleLabel.Text = "ServerSidedExecute (SSE) Log In"
  45. TitleLabel.TextColor3 = Color3.new(1, 1, 1)
  46. TitleLabel.TextSize = 20
  47.  
  48. CloseTextBox.Name = "CloseTextBox"
  49. CloseTextBox.Parent = MainTitleFrame
  50. CloseTextBox.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  51. CloseTextBox.BorderColor3 = Color3.new(0, 0, 0)
  52. CloseTextBox.BorderSizePixel = 0
  53. CloseTextBox.Position = UDim2.new(0.942857206, 0, -0.0200004578, 0)
  54. CloseTextBox.Size = UDim2.new(0, 20, 0, 20)
  55. CloseTextBox.Font = Enum.Font.SourceSans
  56. CloseTextBox.Text = "X"
  57. CloseTextBox.TextColor3 = Color3.new(1, 1, 1)
  58. CloseTextBox.TextSize = 14
  59.  
  60. LogInTextBox.Name = "LogInTextBox"
  61. LogInTextBox.Parent = MainLoginFrame
  62. LogInTextBox.BackgroundColor3 = Color3.new(0, 1, 1)
  63. LogInTextBox.BorderColor3 = Color3.new(1, 1, 1)
  64. LogInTextBox.Position = UDim2.new(0.157142863, 0, 0.768888891, 0)
  65. LogInTextBox.Size = UDim2.new(0, 240, 0, 40)
  66. LogInTextBox.Font = Enum.Font.SciFi
  67. LogInTextBox.Text = "Log In"
  68. LogInTextBox.TextColor3 = Color3.new(0, 0, 0)
  69. LogInTextBox.TextSize = 20
  70.  
  71. UserNameTextBox.Name = "UserNameTextBox"
  72. UserNameTextBox.Parent = MainLoginFrame
  73. UserNameTextBox.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  74. UserNameTextBox.BorderColor3 = Color3.new(1, 1, 1)
  75. UserNameTextBox.Position = UDim2.new(0.15759334, 0, 0.28700316, 0)
  76. UserNameTextBox.Size = UDim2.new(0, 240, 0, 35)
  77. UserNameTextBox.Font = Enum.Font.SourceSans
  78. UserNameTextBox.Text = "ID"
  79. UserNameTextBox.TextColor3 = Color3.new(1, 1, 1)
  80. UserNameTextBox.TextSize = 20
  81.  
  82. PassWordTextBox.Name = "PassWordTextBox"
  83. PassWordTextBox.Parent = MainLoginFrame
  84. PassWordTextBox.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  85. PassWordTextBox.BorderColor3 = Color3.new(1, 1, 1)
  86. PassWordTextBox.Position = UDim2.new(0.15759334, 0, 0.510594785, 0)
  87. PassWordTextBox.Size = UDim2.new(0, 240, 0, 35)
  88. PassWordTextBox.Font = Enum.Font.SourceSans
  89. PassWordTextBox.Text = "Pass"
  90. PassWordTextBox.TextColor3 = Color3.new(1, 1, 1)
  91. PassWordTextBox.TextSize = 20
  92.  
  93. MainExecuteFrame.Name = "MainExecuteFrame"
  94. MainExecuteFrame.Parent = FilteringDisabledFullLuaGUI
  95. MainExecuteFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  96. MainExecuteFrame.BorderColor3 = Color3.new(0, 0, 0)
  97. MainExecuteFrame.BorderSizePixel = 5
  98. MainExecuteFrame.Position = UDim2.new(-5.96046448e-08, 0, -8.74400139e-05, 0)
  99. MainExecuteFrame.Size = UDim2.new(0, 425, 0, 240)
  100. MainExecuteFrame.Visible = false
  101.  
  102. MainTitleFrame_2.Name = "MainTitleFrame"
  103. MainTitleFrame_2.Parent = MainExecuteFrame
  104. MainTitleFrame_2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  105. MainTitleFrame_2.BorderColor3 = Color3.new(0, 0, 0)
  106. MainTitleFrame_2.Size = UDim2.new(0, 425, 0, 50)
  107.  
  108. TitleLabel_2.Name = "TitleLabel"
  109. TitleLabel_2.Parent = MainTitleFrame_2
  110. TitleLabel_2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  111. TitleLabel_2.BorderColor3 = Color3.new(1, 1, 1)
  112. TitleLabel_2.BorderSizePixel = 0
  113. TitleLabel_2.Position = UDim2.new(0, 0, 0.239999995, 0)
  114. TitleLabel_2.Size = UDim2.new(0, 425, 0, 25)
  115. TitleLabel_2.Font = Enum.Font.SciFi
  116. TitleLabel_2.Text = "Server Sided Lua Executor"
  117. TitleLabel_2.TextColor3 = Color3.new(1, 1, 1)
  118. TitleLabel_2.TextSize = 20
  119.  
  120. MiniTextButton.Name = "MiniTextButton"
  121. MiniTextButton.Parent = MainTitleFrame_2
  122. MiniTextButton.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  123. MiniTextButton.BorderColor3 = Color3.new(0, 0, 0)
  124. MiniTextButton.BorderSizePixel = 0
  125. MiniTextButton.Position = UDim2.new(0.929411769, 0, 0, 0)
  126. MiniTextButton.Size = UDim2.new(0, 20, 0, 20)
  127. MiniTextButton.Font = Enum.Font.SourceSans
  128. MiniTextButton.Text = "_"
  129. MiniTextButton.TextColor3 = Color3.new(1, 1, 1)
  130. MiniTextButton.TextSize = 14
  131.  
  132. ExecuteTextBox.Name = "ExecuteTextBox"
  133. ExecuteTextBox.Parent = MainExecuteFrame
  134. ExecuteTextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  135. ExecuteTextBox.Position = UDim2.new(0.0235294122, 0, 0.8125, 0)
  136. ExecuteTextBox.Size = UDim2.new(0, 185, 0, 35)
  137. ExecuteTextBox.Font = Enum.Font.SourceSans
  138. ExecuteTextBox.Text = "Execute"
  139. ExecuteTextBox.TextColor3 = Color3.new(0, 0, 0)
  140. ExecuteTextBox.TextSize = 20
  141.  
  142. ClearTextBox.Name = "ClearTextBox"
  143. ClearTextBox.Parent = MainExecuteFrame
  144. ClearTextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  145. ClearTextBox.Position = UDim2.new(0.541176498, 0, 0.8125, 0)
  146. ClearTextBox.Size = UDim2.new(0, 185, 0, 35)
  147. ClearTextBox.Font = Enum.Font.SourceSans
  148. ClearTextBox.Text = "Clear"
  149. ClearTextBox.TextColor3 = Color3.new(0, 0, 0)
  150. ClearTextBox.TextSize = 20
  151.  
  152. ScriptTextBox.Name = "ScriptTextBox"
  153. ScriptTextBox.Parent = MainExecuteFrame
  154. ScriptTextBox.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  155. ScriptTextBox.BorderColor3 = Color3.new(1, 1, 1)
  156. ScriptTextBox.Position = UDim2.new(0.0235294122, 0, 0.25, 0)
  157. ScriptTextBox.Size = UDim2.new(0, 405, 0, 125)
  158. ScriptTextBox.Font = Enum.Font.SourceSans
  159. ScriptTextBox.MultiLine = true
  160. ScriptTextBox.Text = ""
  161. ScriptTextBox.TextColor3 = Color3.new(1, 1, 1)
  162. ScriptTextBox.TextSize = 20
  163.  
  164. OpenTextButton.Name = "OpenTextButton"
  165. OpenTextButton.Parent = FilteringDisabledFullLuaGUI
  166. OpenTextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  167. OpenTextButton.BorderColor3 = Color3.new(0, 1, 1)
  168. OpenTextButton.BorderSizePixel = 5
  169. OpenTextButton.Position = UDim2.new(0, 0, 0.667774081, 0)
  170. OpenTextButton.Size = UDim2.new(0, 135, 0, 50)
  171. OpenTextButton.Visible = false
  172. OpenTextButton.Font = Enum.Font.SciFi
  173. OpenTextButton.Text = "Open GUI"
  174. OpenTextButton.TextColor3 = Color3.new(0, 0, 0)
  175. OpenTextButton.TextSize = 25
  176.  
  177. function SCRIPT_VQXD81_FAKESCRIPT()
  178.     getfenv().script = Instance.new('LocalScript', CloseTextBox)
  179.  
  180.     -- Locals
  181.     local MainLogin = script.Parent.Parent.Parent
  182.     local Button = script.Parent
  183.    
  184.     -- Close
  185.     Button.MouseButton1Down:connect(function()
  186.         MainLogin.Visible = false
  187.     end)
  188.  
  189. end
  190. coroutine.resume(coroutine.create(SCRIPT_VQXD81_FAKESCRIPT))
  191. function SCRIPT_ZKKX89_FAKESCRIPT()
  192.     getfenv().script = Instance.new('LocalScript', LogInTextBox)
  193.  
  194.     -- Locals
  195.     local MainExecute = script.Parent.Parent.Parent:FindFirstChild("MainExecuteFrame")
  196.     local MainLogin = script.Parent.Parent
  197.     local Button = MainLogin:FindFirstChild("LogInTextBox")
  198.     local User = MainLogin:FindFirstChild("UserNameTextBox")
  199.     local Pass = MainLogin:FindFirstChild("PassWordTextBox")
  200.     local Script = MainLogin.Parent:FindFirstChild("MainExecuteFrame"):FindFirstChild("ScriptTextBox")
  201.     local Filter = workspace.FilteringEnabled
  202.    
  203.     -- Log In
  204.     Button.MouseButton1Down:connect(function()
  205.         if User.Text == "Doller3795" and Pass.Text == "hellohi" then
  206.             Button.Text = "Logged In!"
  207.             wait(2)
  208.             Button.Text = "Checking FilteringEnabled."
  209.             wait(0.5)
  210.             Button.Text = "Checking FilteringEnabled.."
  211.             wait(0.5)
  212.             Button.Text = "Checking FilteringEnabled..."
  213.             wait(0.5)
  214.             Button.Text = "Checking FilteringEnabled."
  215.             wait(0.5)
  216.             Button.Text = "Checking FilteringEnabled.."
  217.             wait(0.5)
  218.             Button.Text = "Checking FilteringEnabled..."
  219.             if Filter == true then
  220.                 Button.Text = "Bypassing FilteringEnabled."
  221.                 wait(0.5)
  222.                 Button.Text = "Bypassing FilteringEnabled.."
  223.                 wait(0.5)
  224.                 Button.Text = "Bypassing FilteringEnabled..."
  225.                 wait(0.5)
  226.                 Button.Text = "Bypassing FilteringEnabled."
  227.                 wait(0.5)
  228.                 Button.Text = "Bypassing FilteringEnabled.."
  229.                 wait(0.5)
  230.                 Button.Text = "Bypassing FilteringEnabled..."
  231.                 wait(0.5)
  232.                 Script.Text = "Filtering is ENABLED\nBypass failed... T.T"
  233.             elseif Filter == false then
  234.                 Button.Text = "Bypassing FilteringEnabled."
  235.                 wait(0.5)
  236.                 Button.Text = "Bypassing FilteringEnabled.."
  237.                 wait(0.5)
  238.                 Button.Text = "Bypassing FilteringEnabled..."
  239.                 wait(0.5)
  240.                 Button.Text = "Bypassing FilteringEnabled."
  241.                 wait(0.5)
  242.                 Button.Text = "Bypassing FilteringEnabled.."
  243.                 wait(0.5)
  244.                 Button.Text = "Bypassing FilteringEnabled..."
  245.                 wait(0.5)
  246.                 Script.Text = "Filtering is Bypassed\nBypass will NOT work if executed with an exploit."
  247.             else
  248.                 Script.Text = "There was something wrong when checking FilteringEnabled\nThe result was: " + Filter
  249.             end
  250.             wait(0.5)
  251.             MainLogin.Visible = false
  252.             MainExecute.Visible = true
  253.         else
  254.             Button.Text = "Invalid Account"
  255.             wait(1)
  256.             Button.Text = "Log In"
  257.         end
  258.     end)
  259.  
  260. end
  261. coroutine.resume(coroutine.create(SCRIPT_ZKKX89_FAKESCRIPT))
  262. function SCRIPT_KWNO77_FAKESCRIPT()
  263.     getfenv().script = Instance.new('LocalScript', MiniTextButton)
  264.  
  265.     -- Locals
  266.     local MainExecute = script.Parent.Parent.Parent
  267.     local OpenGUI = MainExecute.Parent:FindFirstChild("OpenTextButton")
  268.     local Button = script.Parent
  269.    
  270.     -- Minimize
  271.     Button.MouseButton1Down:connect(function()
  272.         MainExecute.Visible = false
  273.         OpenGUI.Visible = true
  274.     end)
  275.  
  276. end
  277. coroutine.resume(coroutine.create(SCRIPT_KWNO77_FAKESCRIPT))
  278. function SCRIPT_CIGZ75_FAKESCRIPT()
  279.     getfenv().script = Instance.new('LocalScript', ExecuteTextBox)
  280.  
  281.     -- Locals
  282.     local Script = script.Parent.Parent:FindFirstChild("ScriptTextBox")
  283.     local Button = script.Parent
  284.    
  285.     -- Execute
  286.     Button.MouseButton1Down:connect(function()
  287.         loadstring(Script.Text)()
  288.         Button.Text = "Executed"
  289.         wait(1)
  290.         Button.Text = "Execute"
  291.     end)
  292.  
  293. end
  294. coroutine.resume(coroutine.create(SCRIPT_CIGZ75_FAKESCRIPT))
  295. function SCRIPT_RSQM73_FAKESCRIPT()
  296.     getfenv().script = Instance.new('LocalScript', ClearTextBox)
  297.  
  298.     -- Locals
  299.     local Button = script.Parent
  300.     local Script = script.Parent.Parent:FindFirstChild("ScriptTextBox")
  301.    
  302.     -- Clear
  303.     Button.MouseButton1Down:connect(function()
  304.         Script.Text = ""
  305.         Button.Text = "Cleared"
  306.         wait(1)
  307.         Button.Text = "Clear"
  308.     end)
  309.  
  310. end
  311. coroutine.resume(coroutine.create(SCRIPT_RSQM73_FAKESCRIPT))
  312. function SCRIPT_HIYD71_FAKESCRIPT()
  313.     getfenv().script = Instance.new('LocalScript', OpenTextButton)
  314.  
  315.     -- Locals
  316.     local MainExecute = script.Parent.Parent:FindFirstChild("MainExecuteFrame")
  317.     local Button = script.Parent
  318.    
  319.     -- Open GUI
  320.     Button.MouseButton1Down:connect(function()
  321.         MainExecute.Visible = true
  322.         Button.Visible = false
  323.     end)
  324.  
  325. end
  326. coroutine.resume(coroutine.create(SCRIPT_HIYD71_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement