Advertisement
RyanDaCoder

Elysian

Nov 7th, 2016
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.48 KB | None | 0 0
  1. local ElysianScreen = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  2. local ElysianFrame = Instance.new("Frame", ElysianScreen)
  3. local EXEIcon = Instance.new("ImageLabel", ElysianFrame)
  4. local Output = Instance.new("TextBox", ElysianFrame)
  5. local InputBox = Instance.new("TextBox", ElysianFrame)
  6. local Execute = Instance.new("TextButton", ElysianFrame)
  7. local GUITitle = Instance.new("TextLabel", ElysianFrame)
  8. local x_1 = Instance.new("TextButton", ElysianFrame)
  9. local Minimize = Instance.new("TextButton", ElysianFrame)
  10. local PreScripts = Instance.new("ScrollingFrame", ElysianFrame)
  11. local Bigger = Instance.new("TextButton", ElysianFrame)
  12. local User = game.Players.LocalPlayer.Name
  13.  
  14. ElysianScreen.Name = "Elysian"
  15. ElysianScreen.Parent = game.Players.LocalPlayer.PlayerGui
  16.  
  17. ElysianFrame.Name = "Executor"
  18. ElysianFrame.Parent = ElysianScreen
  19. ElysianFrame.Active = true
  20. ElysianFrame.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  21. ElysianFrame.Draggable = true
  22. ElysianFrame.Position = UDim2.new(0, 128, 0, 85)
  23. ElysianFrame.Size = UDim2.new(0, 600, 0, 340)
  24. ElysianFrame.Visible = true
  25.  
  26. Execute.Name = "Execute"
  27. Execute.Parent = ElysianFrame
  28. Execute.BackgroundColor3 = Color3.fromRGB(222, 222, 222)
  29. Execute.Position = UDim2.new(0, 11, 0, 260)
  30. Execute.Size = UDim2.new(0, 75, 0, 20)
  31. Execute.Font = Enum.Font.SourceSans
  32. Execute.FontSize = Enum.FontSize.Size14
  33. Execute.Text = "Execute"
  34. Execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  35.  
  36. Output.Name = "Output"
  37. Output.Parent = ElysianFrame
  38. Output.BackgroundColor3 = Color3.fromRGB(235, 235, 235)
  39. Output.BackgroundTransparency = 0
  40. Output.Position = UDim2.new(0, 100, 0, 260)
  41. Output.Size = UDim2.new(0, 360, 0, 70)
  42. Output.ClearTextOnFocus = false
  43. Output.Font = Enum.Font.SourceSans
  44. Output.FontSize = Enum.FontSize.Size14
  45. Output.MultiLine = true
  46. Output.Text = "Authenticating... "
  47. Output.TextWrapped = true
  48. Output.TextXAlignment = Enum.TextXAlignment.Left
  49. Output.TextYAlignment = Enum.TextYAlignment.Top
  50.  
  51. InputBox.Name = "InputBar"
  52. InputBox.Parent = ElysianFrame
  53. InputBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  54. InputBox.BackgroundTransparency = 0
  55. InputBox.Position = UDim2.new(0, 10, 0, 35)
  56. InputBox.Size = UDim2.new(0, 450, 0, 217)
  57. InputBox.ClearTextOnFocus = false
  58. InputBox.Font = Enum.Font.SourceSans
  59. InputBox.FontSize = Enum.FontSize.Size14
  60. InputBox.MultiLine = true
  61. InputBox.Text = ""
  62. InputBox.TextWrapped = true
  63. InputBox.TextXAlignment = Enum.TextXAlignment.Left
  64. InputBox.TextYAlignment = Enum.TextYAlignment.Top
  65.  
  66. EXEIcon.Size = UDim2.new(0, 30, 0, 25)
  67. EXEIcon.Position = UDim2.new(0, 5, 0, 3)
  68. EXEIcon.Image = "rbxgameasset://Images/ExeIcon"
  69. EXEIcon.Name = "EXEIcon"
  70. EXEIcon.BackgroundTransparency = 1
  71.  
  72. GUITitle.Text = "Elysian v2.9.0"
  73. GUITitle.Name = "GUITitle"
  74. GUITitle.Size = UDim2.new(0, 50, 0, 20)
  75. GUITitle.Position = UDim2.new(0, 50, 0, 5)
  76. GUITitle.BackgroundTransparency = 1
  77.  
  78. x_1.Parent = ElysianFrame
  79. x_1.Name = "x"
  80. x_1.Text = "x"
  81. x_1.Size = UDim2.new(0, 25, 0, 20)
  82. x_1.Position = UDim2.new(0, 570, 0, 5)
  83. x_1.BackgroundTransparency = 1
  84. x_1.FontSize = Enum.FontSize.Size14
  85.  
  86. PreScripts.Name = "Scripts"
  87. PreScripts.Parent = ElysianFrame
  88. PreScripts.Active = true
  89. PreScripts.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  90. PreScripts.Draggable = false
  91. PreScripts.Position = UDim2.new(0, 470, 0, 35)
  92. PreScripts.Size = UDim2.new(0, 125, 0, 295)
  93. PreScripts.Visible = true
  94. PreScripts.BottomImage = "rbxgameasset://Images/Scroling Thingy"
  95.  
  96. Minimize.Name = "minimize"
  97. Minimize.Parent = ElysianFrame
  98. Minimize.BackgroundColor3 = Color3.new(1, 1, 1)
  99. Minimize.BackgroundTransparency = 1
  100. Minimize.Position = UDim2.new(0, 540, 0, 5)
  101. Minimize.Size = UDim2.new(0, 25, 0, 25)
  102. Minimize.ZIndex = 4
  103. Minimize.Font = Enum.Font.SourceSansBold
  104. Minimize.FontSize = Enum.FontSize.Size24
  105. Minimize.Text = "-"
  106. Minimize.TextColor3 = Color3.fromRGB(0, 0, 0)
  107.  
  108. Bigger.Name = "minimize"
  109. Bigger.Parent = ElysianFrame
  110. Bigger.BackgroundColor3 = Color3.new(1, 1, 1)
  111. Bigger.BackgroundTransparency = 1
  112. Bigger.Position = UDim2.new(0, 540, 0, 5)
  113. Bigger.Size = UDim2.new(0, 25, 0, 25)
  114. Bigger.ZIndex = 4
  115. Bigger.Font = Enum.Font.SourceSansBold
  116. Bigger.FontSize = Enum.FontSize.Size24
  117. Bigger.Text = "-"
  118. Bigger.TextColor3 = Color3.fromRGB(0, 0, 0)
  119.  
  120. local ElysianUser = game.Players.LocalPlayer.Name
  121.  
  122. wait(3.734000)
  123. Output.Text = (Output.Text.."OK (3.734000s")
  124. wait(1)
  125. Output.Text = (Output.Text.."\n".."Initiating...")
  126. wait(0.3)
  127. Output.Text = (Output.Text.."\n".."Scanning...")
  128. Output.Text = (Output.Text.." OK")
  129. wait(1)
  130. Output.Text = (Output.Text.."\n".."Done!")
  131. wait(1)
  132. Output.Text = (Output.Text.."\n".."Welcome, "..ElysianUser)
  133.  
  134. function onx_1Click()
  135. ElysianFrame:Destroy()
  136. end
  137. x_1.MouseButton1Click:connect(onx_1Click)
  138.  
  139. function onExecuteScriptClick()
  140. loadstring(InputBox.Text)()
  141. end
  142. Execute.MouseButton1Click:connect(onExecuteScriptClick)
  143.  
  144. function onMinizmideClick()
  145. ElysianFrame.Size = UDim2.new(0, 600, 0, 30)
  146. ElysianFrame.BackgroundColor3 = Color3.fromRGB(90, 255, 61)
  147. Execute.Visible = false
  148. InputBox.Visible = false
  149. Output.Visible = false
  150. PreScripts.Visible = false
  151. Minimize.Visible = false
  152. Bigger.Visible = true
  153. end
  154. Minimize.MouseButton1Click:connect(onMinizmideClick)
  155.  
  156. function onBiggerClick()
  157. ElysianFrame.Size = UDim2.new(0, 600, 0, 340)
  158. Execute.Visible = true
  159. InputBox.Visible = true
  160. Output.Visible = true
  161. PreScripts.Visible = true
  162. ElysianFrame.BackgroundColor3 = Color3.fromRGB(244, 244, 244)
  163. Minimize.Visible = true
  164. Bigger.Visible = false
  165. end
  166. Bigger.MouseButton1Click:connect(onBiggerClick)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement