Advertisement
Josh_Irelan

TIME Roblox GUI

Sep 18th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.86 KB | None | 0 0
  1. -- Objects
  2.  
  3. local TimeGUI = Instance.new("ScreenGui")
  4. local LoginFrame = Instance.new("Frame")
  5. local Name = Instance.new("TextLabel")
  6. local Pleaselogin = Instance.new("TextLabel")
  7. local User = Instance.new("TextBox")
  8. local Pass = Instance.new("TextBox")
  9. local Submit = Instance.new("TextButton")
  10. local MainFrame = Instance.new("Frame")
  11. local Title = Instance.new("TextLabel")
  12. local Executionbutton = Instance.new("TextButton")
  13. local Scriptpackbutton = Instance.new("TextButton")
  14. local Credits = Instance.new("TextLabel")
  15. local ExitButton = Instance.new("TextButton")
  16. local ExeFrame = Instance.new("Frame")
  17. local Execute = Instance.new("TextButton")
  18. local Exit = Instance.new("TextButton")
  19. local ScrollingFrame = Instance.new("ScrollingFrame")
  20. local Input = Instance.new("TextBox")
  21. local Clear = Instance.new("TextButton")
  22. local ScriptFrame = Instance.new("Frame")
  23. local TextButton = Instance.new("TextButton")
  24. local TextButton_2 = Instance.new("TextButton")
  25. local TextButton_3 = Instance.new("TextButton")
  26. local TextButton_4 = Instance.new("TextButton")
  27.  
  28. -- Properties
  29.  
  30. TimeGUI.Name = "Time GUI"
  31. TimeGUI.Parent = game.CoreGui
  32.  
  33. LoginFrame.Name = "LoginFrame"
  34. LoginFrame.Parent = TimeGUI
  35. LoginFrame.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  36. LoginFrame.Position = UDim2.new(0.36887604, 0, 0.229982495, 0)
  37. LoginFrame.Size = UDim2.new(0, 274, 0, 359)
  38.  
  39. Name.Name = "Name"
  40. Name.Parent = LoginFrame
  41. Name.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  42. Name.BorderColor3 = Color3.new(1, 0.917647, 0)
  43. Name.Position = UDim2.new(0.133211672, 0, 0.0584958233, 0)
  44. Name.Size = UDim2.new(0, 200, 0, 50)
  45. Name.Font = Enum.Font.SourceSans
  46. Name.FontSize = Enum.FontSize.Size32
  47. Name.Text = "Time"
  48. Name.TextColor3 = Color3.new(0, 0, 0)
  49. Name.TextSize = 30
  50.  
  51. Pleaselogin.Name = "Please login"
  52. Pleaselogin.Parent = LoginFrame
  53. Pleaselogin.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  54. Pleaselogin.BorderColor3 = Color3.new(1, 0.917647, 0)
  55. Pleaselogin.Position = UDim2.new(0.133211672, 0, 0.217270195, 0)
  56. Pleaselogin.Size = UDim2.new(0, 200, 0, 50)
  57. Pleaselogin.Font = Enum.Font.SourceSans
  58. Pleaselogin.FontSize = Enum.FontSize.Size14
  59. Pleaselogin.Text = "please login with a registered account"
  60. Pleaselogin.TextColor3 = Color3.new(0, 0, 0)
  61. Pleaselogin.TextSize = 14
  62.  
  63. User.Name = "User"
  64. User.Parent = LoginFrame
  65. User.BackgroundColor3 = Color3.new(1, 1, 1)
  66. User.Position = UDim2.new(0.178832114, 0, 0.462395519, 0)
  67. User.Size = UDim2.new(0, 188, 0, 27)
  68. User.Font = Enum.Font.SourceSans
  69. User.FontSize = Enum.FontSize.Size24
  70. User.Text = "Username"
  71. User.TextSize = 20
  72. User.TextXAlignment = Enum.TextXAlignment.Left
  73.  
  74. Pass.Name = "Pass"
  75. Pass.Parent = LoginFrame
  76. Pass.BackgroundColor3 = Color3.new(1, 1, 1)
  77. Pass.Position = UDim2.new(0.178832114, 0, 0.601671278, 0)
  78. Pass.Size = UDim2.new(0, 188, 0, 27)
  79. Pass.Font = Enum.Font.SourceSans
  80. Pass.FontSize = Enum.FontSize.Size24
  81. Pass.Text = "Password"
  82. Pass.TextSize = 20
  83. Pass.TextXAlignment = Enum.TextXAlignment.Left
  84.  
  85. Submit.Name = "Submit"
  86. Submit.Parent = LoginFrame
  87. Submit.BackgroundColor3 = Color3.new(1, 1, 1)
  88. Submit.Position = UDim2.new(0.273722619, 0, 0.824512541, 0)
  89. Submit.Size = UDim2.new(0, 123, 0, 29)
  90. Submit.Font = Enum.Font.SourceSans
  91. Submit.FontSize = Enum.FontSize.Size14
  92. Submit.Text = "Login"
  93. Submit.TextSize = 14
  94. Submit.MouseButton1Down:connect(function()
  95. if User.text == flameballslayer and Pass.text == TimeZone then
  96. LoginFrame.Visible = false
  97. MainFrame.Visible = true
  98. end
  99. end)
  100. MainFrame.Name = "MainFrame"
  101. MainFrame.Parent = TimeGUI
  102. MainFrame.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  103. MainFrame.Position = UDim2.new(0.187800169, 0, 0.240055442, 0)
  104. MainFrame.Size = UDim2.new(0, 650, 0, 388)
  105. MainFrame.Visible = false
  106.  
  107. Title.Name = "Title"
  108. Title.Parent = MainFrame
  109. Title.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  110. Title.Size = UDim2.new(0, 650, 0, 67)
  111. Title.Font = Enum.Font.SourceSans
  112. Title.FontSize = Enum.FontSize.Size32
  113. Title.Text = "Time GUI"
  114. Title.TextSize = 30
  115.  
  116. Executionbutton.Name = "Executionbutton"
  117. Executionbutton.Parent = MainFrame
  118. Executionbutton.BackgroundColor3 = Color3.new(0.745098, 0.819608, 0.0745098)
  119. Executionbutton.Position = UDim2.new(0.06923078, 0, 0.784793794, 0)
  120. Executionbutton.Size = UDim2.new(0, 200, 0, 50)
  121. Executionbutton.Font = Enum.Font.SourceSans
  122. Executionbutton.FontSize = Enum.FontSize.Size14
  123. Executionbutton.Text = "Execution GUI"
  124. Executionbutton.TextSize = 14
  125. Executionbutton.MouseButton1Down:connect(function()
  126. MainFrame.Visible = false
  127. ExeFrame.Visible = true
  128. end)
  129.  
  130. Scriptpackbutton.Name = "Scriptpackbutton"
  131. Scriptpackbutton.Parent = MainFrame
  132. Scriptpackbutton.BackgroundColor3 = Color3.new(0.745098, 0.819608, 0.0745098)
  133. Scriptpackbutton.Position = UDim2.new(0.612307727, 0, 0.786082447, 0)
  134. Scriptpackbutton.Size = UDim2.new(0, 200, 0, 50)
  135. Scriptpackbutton.Font = Enum.Font.SourceSans
  136. Scriptpackbutton.FontSize = Enum.FontSize.Size14
  137. Scriptpackbutton.Text = "Script Pack"
  138. Scriptpackbutton.TextSize = 14
  139. Scriptpackbutton.MouseButton1Down:connect(function()
  140. MainFrame.Visible = false
  141. ScriptFrame.Visible = true
  142. end)
  143.  
  144. Credits.Name = "Credits"
  145. Credits.Parent = MainFrame
  146. Credits.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  147. Credits.Position = UDim2.new(0, 0, 0.172680408, 0)
  148. Credits.Size = UDim2.new(0, 650, 0, 67)
  149. Credits.Font = Enum.Font.SourceSans
  150. Credits.FontSize = Enum.FontSize.Size32
  151. Credits.Text = "By flameballslayer"
  152. Credits.TextSize = 30
  153.  
  154. ExitButton.Name = "ExitButton"
  155. ExitButton.Parent = MainFrame
  156. ExitButton.BackgroundColor3 = Color3.new(0.745098, 0.819608, 0.0745098)
  157. ExitButton.Position = UDim2.new(0.789230764, 0, 0.376288682, 0)
  158. ExitButton.Size = UDim2.new(0, 85, 0, 36)
  159. ExitButton.Font = Enum.Font.SourceSans
  160. ExitButton.FontSize = Enum.FontSize.Size14
  161. ExitButton.Text = "Exit"
  162. ExitButton.TextSize = 14
  163. ExitButton.MouseButton1Down:connect(function()
  164. TimeGUI:Destroy()
  165. end)
  166.  
  167. ExeFrame.Name = "ExeFrame"
  168. ExeFrame.Parent = TimeGUI
  169. ExeFrame.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  170. ExeFrame.Position = UDim2.new(0.341978848, 0, 0.259924173, 0)
  171. ExeFrame.Size = UDim2.new(0, 459, 0, 325)
  172. ExeFrame.Visible = false
  173.  
  174. Execute.Name = "Execute"
  175. Execute.Parent = ExeFrame
  176. Execute.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  177. Execute.Position = UDim2.new(0.0544662327, 0, 0.849230766, 0)
  178. Execute.Size = UDim2.new(0, 105, 0, 29)
  179. Execute.Font = Enum.Font.SourceSans
  180. Execute.FontSize = Enum.FontSize.Size14
  181. Execute.Text = "Execute"
  182. Execute.TextSize = 14
  183. Execute.MouseButton1Down:connect(function()
  184. if Input.Text == "ExitFrame();" then
  185. ExeFrame.Visible = false
  186. MainFrame.Visible = true
  187. else
  188. loadstring(Input.Text)
  189. end
  190. end)
  191. Exit.Name = "Exit"
  192. Exit.Parent = ExeFrame
  193. Exit.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  194. Exit.Position = UDim2.new(0.723311543, 0, 0.849230766, 0)
  195. Exit.Size = UDim2.new(0, 108, 0, 29)
  196. Exit.Font = Enum.Font.SourceSans
  197. Exit.FontSize = Enum.FontSize.Size14
  198. Exit.Text = "Exit"
  199. Exit.TextSize = 14
  200.  
  201. ScrollingFrame.Parent = ExeFrame
  202. ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  203. ScrollingFrame.Position = UDim2.new(0.0544662327, 0, 0.0830769241, 0)
  204. ScrollingFrame.Size = UDim2.new(0, 415, 0, 190)
  205.  
  206. Input.Name = "Input"
  207. Input.Parent = ScrollingFrame
  208. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  209. Input.Size = UDim2.new(0, 399, 0, 506)
  210. Input.Font = Enum.Font.SourceSans
  211. Input.FontSize = Enum.FontSize.Size24
  212. Input.Text = "Print (\"Script Here\");"
  213. Input.TextSize = 20
  214. Input.TextXAlignment = Enum.TextXAlignment.Left
  215. Input.TextYAlignment = Enum.TextYAlignment.Top
  216.  
  217. Clear.Name = "Clear"
  218. Clear.Parent = ExeFrame
  219. Clear.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  220. Clear.Position = UDim2.new(0.388888896, 0, 0.849230766, 0)
  221. Clear.Size = UDim2.new(0, 108, 0, 29)
  222. Clear.Font = Enum.Font.SourceSans
  223. Clear.FontSize = Enum.FontSize.Size14
  224. Clear.Text = "Clear"
  225. Clear.TextSize = 14
  226. Clear.MouseButton1Down:connect(function()
  227. Input.Text = ""
  228. end)
  229.  
  230. ScriptFrame.Name = "ScriptFrame"
  231. ScriptFrame.Parent = TimeGUI
  232. ScriptFrame.BackgroundColor3 = Color3.new(1, 0.917647, 0)
  233. ScriptFrame.Position = UDim2.new(0.332372725, 0, 0.15384616, 0)
  234. ScriptFrame.Size = UDim2.new(0, 330, 0, 405)
  235. ScriptFrame.Visible = false
  236.  
  237. TextButton.Parent = ScriptFrame
  238. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  239. TextButton.Position = UDim2.new(0.075757578, 0, 0.306172848, 0)
  240. TextButton.Size = UDim2.new(0, 125, 0, 41)
  241. TextButton.Font = Enum.Font.SourceSans
  242. TextButton.FontSize = Enum.FontSize.Size14
  243. TextButton.Text = "Knife"
  244. TextButton.TextSize = 14
  245. Execute.MouseButton1Down:connect(function()
  246. loadstring(game:GetObjects('rbxassetid;//198545828')[1].Source)()
  247. end)
  248.  
  249. TextButton_2.Parent = ScriptFrame
  250. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  251. TextButton_2.Position = UDim2.new(0.557575762, 0, 0.306172848, 0)
  252. TextButton_2.Size = UDim2.new(0, 125, 0, 41)
  253. TextButton_2.Font = Enum.Font.SourceSans
  254. TextButton_2.FontSize = Enum.FontSize.Size14
  255. TextButton_2.Text = "Gun"
  256. TextButton_2.TextSize = 14
  257. Execute.MouseButton1Down:connect(function()
  258. loadstring(game:GetObjects('rbxassetid;//325134513')[1].Source)()
  259.  
  260. TextButton_3.Parent = ScriptFrame
  261. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  262. TextButton_3.Position = UDim2.new(0.557575762, 0, 0.516049445, 0)
  263. TextButton_3.Size = UDim2.new(0, 125, 0, 41)
  264. TextButton_3.Font = Enum.Font.SourceSans
  265. TextButton_3.FontSize = Enum.FontSize.Size14
  266. TextButton_3.Text = "Telekinesis"
  267. TextButton_3.TextSize = 14
  268. Execute.MouseButton1Down:connect(function()
  269. loadstring(game:GetObjects('rbxassetid;//901569662')[1].Source)()
  270. end)
  271.  
  272. TextButton_4.Parent = ScriptFrame
  273. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  274. TextButton_4.Position = UDim2.new(0.0757575929, 0, 0.523456812, 0)
  275. TextButton_4.Size = UDim2.new(0, 125, 0, 41)
  276. TextButton_4.Font = Enum.Font.SourceSans
  277. TextButton_4.FontSize = Enum.FontSize.Size14
  278. TextButton_4.Text = "Exit"
  279. TextButton_4.TextSize = 14
  280. TextButton_4.MouseButton1Down:connect(function()
  281. ScriptFrame.Visible = false
  282. MainFrame.Visible = true
  283. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement