Advertisement
RyanDaCoder

Stellar (Void Script Builder Version)

Sep 2nd, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.40 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local loginpage = Instance.new("Frame")
  5. local Frame = Instance.new("Frame")
  6. local Frame_2 = Instance.new("Frame")
  7. local title = Instance.new("TextLabel")
  8. local logplease = Instance.new("TextLabel")
  9. local usr = Instance.new("TextBox")
  10. local pass = Instance.new("TextBox")
  11. local Login = Instance.new("TextButton")
  12. local exepage = Instance.new("Frame")
  13. local exec = Instance.new("TextButton")
  14. local clr = Instance.new("TextButton")
  15. local ScrollingFrame = Instance.new("ScrollingFrame")
  16. local ScriptField = Instance.new("TextBox")
  17.  
  18. -- Properties
  19.  
  20. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  21.  
  22. loginpage.Name = "loginpage"
  23. loginpage.Parent = ScreenGui
  24. loginpage.BackgroundColor3 = Color3.new(1, 0, 0)
  25. loginpage.BorderColor3 = Color3.new(1, 0, 0)
  26. loginpage.BorderSizePixel = 5
  27. loginpage.Position = UDim2.new(0, 81, 0, 258)
  28. loginpage.Size = UDim2.new(0, 338, 0, 23)
  29.  
  30. Frame.Parent = loginpage
  31. Frame.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  32. Frame.BorderColor3 = Color3.new(0.666667, 0, 0)
  33. Frame.BorderSizePixel = 5
  34. Frame.Position = UDim2.new(0, 0, 0, 23)
  35. Frame.Size = UDim2.new(0, 338, 0, 18)
  36.  
  37. Frame_2.Parent = Frame
  38. Frame_2.Active = true
  39. Frame_2.BackgroundColor3 = Color3.new(0, 0, 0)
  40. Frame_2.BorderColor3 = Color3.new(0, 0, 0)
  41. Frame_2.BorderSizePixel = 5
  42. Frame_2.Draggable = true
  43. Frame_2.Position = UDim2.new(0, 0, 0, 18)
  44. Frame_2.Size = UDim2.new(0, 338, 0, 338)
  45.  
  46. title.Name = "title"
  47. title.Parent = Frame_2
  48. title.BackgroundColor3 = Color3.new(1, 0, 0)
  49. title.BackgroundTransparency = 1
  50. title.Position = UDim2.new(0, 69, 0, 0)
  51. title.Size = UDim2.new(0, 200, 0, 50)
  52. title.Font = Enum.Font.Code
  53. title.FontSize = Enum.FontSize.Size24
  54. title.Text = "Stellar"
  55. title.TextColor3 = Color3.new(1, 0, 0)
  56. title.TextSize = 24
  57.  
  58. logplease.Name = "logplease"
  59. logplease.Parent = title
  60. logplease.BackgroundColor3 = Color3.new(1, 0, 0)
  61. logplease.BackgroundTransparency = 1
  62. logplease.Position = UDim2.new(0, -50, 0, 50)
  63. logplease.Size = UDim2.new(0, 300, 0, 50)
  64. logplease.Font = Enum.Font.Code
  65. logplease.FontSize = Enum.FontSize.Size24
  66. logplease.Text = "Login Please"
  67. logplease.TextColor3 = Color3.new(1, 0, 0)
  68. logplease.TextSize = 24
  69.  
  70. usr.Name = "usr"
  71. usr.Parent = logplease
  72. usr.BackgroundColor3 = Color3.new(0, 0, 1)
  73. usr.BorderColor3 = Color3.new(0, 0, 1)
  74. usr.BorderSizePixel = 5
  75. usr.Position = UDim2.new(0, 0, 0, 65)
  76. usr.Size = UDim2.new(0, 300, 0, 50)
  77. usr.Font = Enum.Font.Code
  78. usr.FontSize = Enum.FontSize.Size24
  79. usr.Text = "Username"
  80. usr.TextColor3 = Color3.new(1, 1, 1)
  81. usr.TextSize = 24
  82.  
  83. pass.Name = "pass"
  84. pass.Parent = usr
  85. pass.BackgroundColor3 = Color3.new(0, 0, 1)
  86. pass.BorderColor3 = Color3.new(0, 0, 1)
  87. pass.BorderSizePixel = 5
  88. pass.Position = UDim2.new(0, 0, 0, 65)
  89. pass.Size = UDim2.new(0, 300, 0, 50)
  90. pass.Font = Enum.Font.Code
  91. pass.FontSize = Enum.FontSize.Size24
  92. pass.Text = "Password"
  93. pass.TextColor3 = Color3.new(1, 1, 1)
  94. pass.TextSize = 24
  95.  
  96. Login.Name = "Login"
  97. Login.Parent = pass
  98. Login.BackgroundColor3 = Color3.new(0, 0, 0)
  99. Login.BorderColor3 = Color3.new(1, 0, 0)
  100. Login.Position = UDim2.new(0, 0, 0, 78)
  101. Login.Size = UDim2.new(0, 300, 0, 50)
  102. Login.Font = Enum.Font.SourceSans
  103. Login.FontSize = Enum.FontSize.Size24
  104. Login.Text = "Login"
  105. Login.TextColor3 = Color3.new(1, 1, 1)
  106. Login.TextSize = 24
  107.  
  108. exepage.Name = "exepage"
  109. exepage.Parent = ScreenGui
  110. exepage.Active = true
  111. exepage.BackgroundColor3 = Color3.new(1, 0, 0)
  112. exepage.BorderColor3 = Color3.new(1, 0, 0)
  113. exepage.BorderSizePixel = 5
  114. exepage.Draggable = true
  115. exepage.Position = UDim2.new(0, 451, 0, 284)
  116. exepage.Size = UDim2.new(0, 529, 0, 345)
  117. exepage.Visible = false
  118.  
  119. exec.Name = "exec"
  120. exec.Parent = exepage
  121. exec.BackgroundColor3 = Color3.new(1, 0, 0)
  122. exec.BackgroundTransparency = 1
  123. exec.Position = UDim2.new(0, 53, 0, 270)
  124. exec.Size = UDim2.new(0, 175, 0, 51)
  125. exec.Font = Enum.Font.ArialBold
  126. exec.FontSize = Enum.FontSize.Size24
  127. exec.Text = "Execute"
  128. exec.TextColor3 = Color3.new(1, 1, 1)
  129. exec.TextSize = 24
  130.  
  131. clr.Name = "clr"
  132. clr.Parent = exec
  133. clr.BackgroundColor3 = Color3.new(1, 0, 0)
  134. clr.BackgroundTransparency = 1
  135. clr.Position = UDim2.new(0, 221, 0, 0)
  136. clr.Size = UDim2.new(0, 175, 0, 51)
  137. clr.Font = Enum.Font.ArialBold
  138. clr.FontSize = Enum.FontSize.Size24
  139. clr.Text = "Clear"
  140. clr.TextColor3 = Color3.new(1, 1, 1)
  141. clr.TextSize = 24
  142.  
  143. ScrollingFrame.Parent = exepage
  144. ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  145. ScrollingFrame.Position = UDim2.new(0, 58, 0, 25)
  146. ScrollingFrame.Size = UDim2.new(0, 413, 0, 235)
  147. ScrollingFrame.BottomImage = ""
  148. ScrollingFrame.MidImage = ""
  149. ScrollingFrame.ScrollBarThickness = 15
  150. ScrollingFrame.TopImage = ""
  151.  
  152. ScriptField.Name = "ScriptField"
  153. ScriptField.Parent = ScrollingFrame
  154. ScriptField.BackgroundColor3 = Color3.new(0, 0, 0)
  155. ScriptField.Size = UDim2.new(0, 396, 0, 235)
  156. ScriptField.Font = Enum.Font.SourceSans
  157. ScriptField.FontSize = Enum.FontSize.Size18
  158. ScriptField.Text = "print(\"Hello World\");"
  159. ScriptField.TextColor3 = Color3.new(1, 1, 1)
  160. ScriptField.TextSize = 18
  161. ScriptField.TextXAlignment = Enum.TextXAlignment.Left
  162. ScriptField.TextYAlignment = Enum.TextYAlignment.Top
  163.  
  164. Login.MouseButton1Click:connect(function()
  165. if usr.Text == "RCW" then
  166. if pass.Text == "RCW" then
  167. loginpage.Visible = false
  168. exepage.Visible = true
  169. end
  170. end
  171. end)
  172.  
  173. exec.MouseButton1Click:connect(function()
  174. loadstring(ScriptField.Text)()
  175. end)
  176.  
  177. clr.MouseButton1Click:connect(function()
  178. ScriptField.Text = ""
  179. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement