Advertisement
djghs

Untitled

Apr 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local SplashiGui = Instance.new("ScreenGui")
  7. local MainLogin = Instance.new("Frame")
  8. local SumbitLogin = Instance.new("TextButton")
  9. local UsernameBox = Instance.new("TextBox")
  10. local KeyBox = Instance.new("TextBox")
  11. local TextLabel = Instance.new("TextLabel")
  12. local TopBar = Instance.new("Frame")
  13. local MainFrame = Instance.new("Frame")
  14. local Topbar = Instance.new("Frame")
  15. local SplashiLogo = Instance.new("ImageLabel")
  16. local ScriptBox = Instance.new("ScrollingFrame")
  17. local ScriptHere = Instance.new("TextBox")
  18. local TextButton = Instance.new("TextButton")
  19. local TextButton_2 = Instance.new("TextButton")
  20.  
  21. -- Properties
  22.  
  23. SplashiGui.Name = "SplashiGui"
  24. SplashiGui.Parent = game.CoreGui
  25.  
  26. MainLogin.Name = "MainLogin"
  27. MainLogin.Parent = SplashiGui
  28. MainLogin.Active = true
  29. MainLogin.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  30. MainLogin.BorderSizePixel = 0
  31. MainLogin.Position = UDim2.new(0.370058566, 0, 0.255208313, 0)
  32. MainLogin.Selectable = true
  33. MainLogin.Size = UDim2.new(0, 355, 0, 474)
  34. MainLogin.Draggable = true
  35.  
  36. SumbitLogin.Name = "SumbitLogin"
  37. SumbitLogin.Parent = MainLogin
  38. SumbitLogin.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  39. SumbitLogin.BorderSizePixel = 0
  40. SumbitLogin.Position = UDim2.new(0.218347013, 0, 0.856278718, 0)
  41. SumbitLogin.Size = UDim2.new(0, 200, 0, 50)
  42. SumbitLogin.Font = Enum.Font.Cartoon
  43. SumbitLogin.Text = "LOGIN"
  44. SumbitLogin.TextColor3 = Color3.new(1, 1, 1)
  45. SumbitLogin.TextSize = 34
  46. SumbitLogin.TextWrapped = true
  47. SumbitLogin.MouseButton1Click:Connect(function()
  48. if UsernameBox.Text == "WaylonPlayzRoblox123" and KeyBox.Text == "Mynameiswaylon123" then
  49. MainLogin.Visible = false
  50. MainFrame.Visible = true
  51. else
  52. MainLogin:Destroy()
  53. MainFrame:Destroy()
  54. end
  55. end)
  56.  
  57. UsernameBox.Name = "UsernameBox"
  58. UsernameBox.Parent = MainLogin
  59. UsernameBox.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  60. UsernameBox.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  61. UsernameBox.BorderSizePixel = 5
  62. UsernameBox.Position = UDim2.new(0.132020235, 0, 0.283615232, 0)
  63. UsernameBox.Size = UDim2.new(0, 261, 0, 39)
  64. UsernameBox.ClearTextOnFocus = false
  65. UsernameBox.Font = Enum.Font.Code
  66. UsernameBox.Text = "USERNAME"
  67. UsernameBox.TextColor3 = Color3.new(1, 1, 1)
  68. UsernameBox.TextSize = 22
  69. UsernameBox.TextXAlignment = Enum.TextXAlignment.Left
  70.  
  71. KeyBox.Name = "KeyBox"
  72. KeyBox.Parent = MainLogin
  73. KeyBox.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  74. KeyBox.BorderColor3 = Color3.new(0.6, 0.6, 0.6)
  75. KeyBox.BorderSizePixel = 5
  76. KeyBox.Position = UDim2.new(0.133428693, 0, 0.564784706, 0)
  77. KeyBox.Size = UDim2.new(0, 261, 0, 39)
  78. KeyBox.ClearTextOnFocus = false
  79. KeyBox.Font = Enum.Font.Code
  80. KeyBox.Text = "KEY"
  81. KeyBox.TextColor3 = Color3.new(1, 1, 1)
  82. KeyBox.TextSize = 22
  83. KeyBox.TextXAlignment = Enum.TextXAlignment.Left
  84.  
  85. TextLabel.Parent = MainLogin
  86. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  87. TextLabel.BackgroundTransparency = 1
  88. TextLabel.BorderSizePixel = 0
  89. TextLabel.Position = UDim2.new(0.217374891, 0, 0.0451252647, 0)
  90. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  91. TextLabel.Font = Enum.Font.Cartoon
  92. TextLabel.Text = "LOGIN"
  93. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  94. TextLabel.TextScaled = true
  95. TextLabel.TextSize = 14
  96. TextLabel.TextWrapped = true
  97.  
  98. TopBar.Name = "TopBar"
  99. TopBar.Parent = MainLogin
  100. TopBar.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  101. TopBar.BorderSizePixel = 0
  102. TopBar.Position = UDim2.new(0.0005432904, 0, -0.0735342205, 0)
  103. TopBar.Size = UDim2.new(0, 355, 0, 46)
  104.  
  105. MainFrame.Name = "MainFrame"
  106. MainFrame.Parent = SplashiGui
  107. MainFrame.Active = true
  108. MainFrame.BackgroundColor3 = Color3.new(0.658824, 0.658824, 0.658824)
  109. MainFrame.BorderSizePixel = 0
  110. MainFrame.Position = UDim2.new(0.29428342, 0, 0.205078125, 0)
  111. MainFrame.Selectable = true
  112. MainFrame.Size = UDim2.new(0, 562, 0, 453)
  113. MainFrame.Visible = false
  114. MainFrame.Draggable = true
  115.  
  116. Topbar.Name = "Topbar"
  117. Topbar.Parent = MainFrame
  118. Topbar.Active = true
  119. Topbar.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  120. Topbar.BorderSizePixel = 0
  121. Topbar.Position = UDim2.new(0, 0, -0.0248881634, 0)
  122. Topbar.Selectable = true
  123. Topbar.Size = UDim2.new(0, 562, 0, 49)
  124.  
  125. SplashiLogo.Name = "SplashiLogo"
  126. SplashiLogo.Parent = MainFrame
  127. SplashiLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  128. SplashiLogo.BackgroundTransparency = 1
  129. SplashiLogo.Position = UDim2.new(0.882715762, 0, -0.161147907, 0)
  130. SplashiLogo.Size = UDim2.new(0, 142, 0, 111)
  131. SplashiLogo.Image = "rbxassetid://1644616407"
  132.  
  133. ScriptBox.Name = "ScriptBox"
  134. ScriptBox.Parent = MainFrame
  135. ScriptBox.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  136. ScriptBox.BorderSizePixel = 0
  137. ScriptBox.Position = UDim2.new(0.0284697507, 0, 0.103752762, 0)
  138. ScriptBox.Size = UDim2.new(0, 530, 0, 297)
  139. ScriptBox.CanvasSize = UDim2.new(0, 0, 100000, 0)
  140.  
  141. ScriptHere.Name = "ScriptHere"
  142. ScriptHere.Parent = ScriptBox
  143. ScriptHere.BackgroundColor3 = Color3.new(1, 1, 1)
  144. ScriptHere.BackgroundTransparency = 1
  145. ScriptHere.BorderSizePixel = 0
  146. ScriptHere.Size = UDim2.new(0, 508, 0, 100000)
  147. ScriptHere.ClearTextOnFocus = false
  148. ScriptHere.Font = Enum.Font.SourceSans
  149. ScriptHere.MultiLine = true
  150. ScriptHere.Text = "print(\"Hello World!\")"
  151. ScriptHere.TextColor3 = Color3.new(1, 1, 1)
  152. ScriptHere.TextSize = 25
  153. ScriptHere.TextWrapped = true
  154. ScriptHere.TextXAlignment = Enum.TextXAlignment.Left
  155. ScriptHere.TextYAlignment = Enum.TextYAlignment.Top
  156.  
  157. TextButton.Parent = MainFrame
  158. TextButton.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  159. TextButton.BorderSizePixel = 0
  160. TextButton.Position = UDim2.new(0.0980300605, 0, 0.793021917, 0)
  161. TextButton.Size = UDim2.new(0, 200, 0, 75)
  162. TextButton.Font = Enum.Font.SourceSans
  163. TextButton.Text = "EXECUTE"
  164. TextButton.TextColor3 = Color3.new(1, 1, 1)
  165. TextButton.TextSize = 34
  166. TextButton.MouseButton1Click:Connect(function()
  167. loadstring(ScriptHere.Text)()
  168. end)
  169.  
  170. TextButton_2.Parent = MainFrame
  171. TextButton_2.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  172. TextButton_2.BorderSizePixel = 0
  173. TextButton_2.Position = UDim2.new(0.54625541, 0, 0.793021917, 0)
  174. TextButton_2.Size = UDim2.new(0, 200, 0, 75)
  175. TextButton_2.Font = Enum.Font.SourceSans
  176. TextButton_2.Text = "CLEAR"
  177. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  178. TextButton_2.TextSize = 34
  179. TextButton_2.MouseButton1Click:Connect(function()
  180. ScriptHere.Text = ""
  181. end)
  182.  
  183. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement