Advertisement
Guest User

FeGUI

a guest
Jan 25th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.68 KB | None | 0 0
  1. --Work in progress Fe Gui!
  2. local RobloxFE = Instance.new("ScreenGui")
  3. local Login = Instance.new("Frame")
  4. local bar1 = Instance.new("Frame")
  5. local FeGUI = Instance.new("TextLabel")
  6. local Username = Instance.new("TextBox")
  7. local Password = Instance.new("TextBox")
  8. local LoginButton = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local MainBar1 = Instance.new("Frame")
  11. local MainFEGui = Instance.new("TextLabel")
  12. local XButton = Instance.new("TextButton")
  13. local Executor = Instance.new("TextButton")
  14. local Scripts = Instance.new("TextButton")
  15. local Credit = Instance.new("TextLabel")
  16. local Tabs = Instance.new("Frame")
  17. local abar1 = Instance.new("Frame")
  18. local ExitButton = Instance.new("TextButton")
  19. local InfYield = Instance.new("TextButton")
  20. --Properties:
  21. RobloxFE.Name = "RobloxFE"
  22. RobloxFE.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  23. RobloxFE.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  24.  
  25. Login.Name = "Login"
  26. Login.Parent = RobloxFE
  27. Login.Active = true
  28. Login.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  29. Login.BorderSizePixel = 5
  30. Login.Position = UDim2.new(0.00747384178, 0, 0.550368547, 0)
  31. Login.Selectable = true
  32. Login.Size = UDim2.new(0, 445, 0, 346)
  33.  
  34. bar1.Name = "bar1"
  35. bar1.Parent = Login
  36. bar1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  37. bar1.Position = UDim2.new(-0.00091995066, 0, -0.00289017335, 0)
  38. bar1.Selectable = true
  39. bar1.Size = UDim2.new(0, 445, 0, 48)
  40.  
  41. FeGUI.Name = "Fe GUI"
  42. FeGUI.Parent = Login
  43. FeGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  44. FeGUI.BorderSizePixel = 0
  45. FeGUI.Position = UDim2.new(0.251685381, 0, 0.158959538, 0)
  46. FeGUI.Size = UDim2.new(0, 200, 0, 50)
  47. FeGUI.Font = Enum.Font.Gotham
  48. FeGUI.Text = "Fe GUI"
  49. FeGUI.TextColor3 = Color3.new(0.407843, 0.407843, 0.407843)
  50. FeGUI.TextScaled = true
  51. FeGUI.TextSize = 14
  52. FeGUI.TextWrapped = true
  53.  
  54. Username.Name = "Username"
  55. Username.Parent = Login
  56. Username.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  57. Username.BorderColor3 = Color3.new(0.160784, 0.25098, 0.317647)
  58. Username.BorderSizePixel = 4
  59. Username.Position = UDim2.new(0.251685381, 0, 0.35549134, 0)
  60. Username.Size = UDim2.new(0, 200, 0, 36)
  61. Username.Font = Enum.Font.SourceSans
  62. Username.Text = "Username"
  63. Username.TextColor3 = Color3.new(0, 0, 0)
  64. Username.TextScaled = true
  65. Username.TextSize = 14
  66. Username.TextWrapped = true
  67.  
  68. Password.Name = "Password"
  69. Password.Parent = Login
  70. Password.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  71. Password.BorderColor3 = Color3.new(0.160784, 0.25098, 0.317647)
  72. Password.BorderSizePixel = 4
  73. Password.Position = UDim2.new(0.251685381, 0, 0.580924809, 0)
  74. Password.Size = UDim2.new(0, 200, 0, 36)
  75. Password.Font = Enum.Font.SourceSans
  76. Password.Text = "Password"
  77. Password.TextColor3 = Color3.new(0, 0, 0)
  78. Password.TextScaled = true
  79. Password.TextSize = 14
  80. Password.TextWrapped = true
  81.  
  82. LoginButton.Name = "LoginButton"
  83. LoginButton.Parent = Login
  84. LoginButton.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  85. LoginButton.BorderSizePixel = 4
  86. LoginButton.Position = UDim2.new(0.251685381, 0, 0.78323704, 0)
  87. LoginButton.Size = UDim2.new(0, 200, 0, 42)
  88. LoginButton.Font = Enum.Font.Gotham
  89. LoginButton.Text = "Login"
  90. LoginButton.TextColor3 = Color3.new(0, 0, 0)
  91. LoginButton.TextScaled = true
  92. LoginButton.TextSize = 14
  93. LoginButton.TextWrapped = true
  94.  
  95.  
  96.  
  97.  
  98.  
  99. LoginButton.MouseButton1Down:connect(function()
  100. Login.Visible = false
  101. Main.Visible = true
  102. end)
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. Main.Name = "Main"
  110. Main.Parent = RobloxFE
  111. Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  112. Main.BorderColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  113. Main.BorderSizePixel = 4
  114. Main.Position = UDim2.new(0.00672650337, 0, 0.110565096, 0)
  115. Main.Size = UDim2.new(0, 445, 0, 346)
  116. Main.Visible = false
  117. Main.Style = Enum.FrameStyle.RobloxRound
  118.  
  119. MainBar1.Name = "MainBar1"
  120. MainBar1.Parent = Main
  121. MainBar1.BackgroundColor3 = Color3.new(1, 1, 1)
  122. MainBar1.Position = UDim2.new(-0.0174118895, 0, -0.0249978863, 0)
  123. MainBar1.Size = UDim2.new(0, 444, 0, 43)
  124. MainBar1.Style = Enum.FrameStyle.RobloxRound
  125.  
  126. MainFEGui.Name = "MainFEGui"
  127. MainFEGui.Parent = MainBar1
  128. MainFEGui.BackgroundColor3 = Color3.new(0, 0, 0)
  129. MainFEGui.Position = UDim2.new(0.248559341, 0, -0.151973978, 0)
  130. MainFEGui.Size = UDim2.new(0, 200, 0, 34)
  131. MainFEGui.Font = Enum.Font.Gotham
  132. MainFEGui.Text = "Fe Gui"
  133. MainFEGui.TextColor3 = Color3.new(0.713726, 0.713726, 0.713726)
  134. MainFEGui.TextScaled = true
  135. MainFEGui.TextSize = 14
  136. MainFEGui.TextWrapped = true
  137.  
  138. XButton.MouseButton1Down:connect(function()
  139. Main.Visible = false
  140. end)
  141.  
  142. XButton.Name = "XButton"
  143. XButton.Parent = MainBar1
  144. XButton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  145. XButton.BorderSizePixel = 0
  146. XButton.Position = UDim2.new(0.911446393, 0, -0.296527773, 0)
  147. XButton.Size = UDim2.new(0, 46, 0, 42)
  148. XButton.Font = Enum.Font.SourceSans
  149. XButton.Text = "X"
  150. XButton.TextColor3 = Color3.new(1, 0, 0)
  151. XButton.TextScaled = true
  152. XButton.TextSize = 14
  153. XButton.TextWrapped = true
  154.  
  155. Executor.Name = "Executor"
  156. Executor.Parent = Main
  157. Executor.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  158. Executor.BorderSizePixel = 4
  159. Executor.Position = UDim2.new(0.0350057855, 0, 0.659570813, 0)
  160. Executor.Size = UDim2.new(0, 151, 0, 50)
  161. Executor.Font = Enum.Font.Gotham
  162. Executor.Text = "Soon..."
  163. Executor.TextColor3 = Color3.new(0.807843, 0.807843, 0.807843)
  164. Executor.TextSize = 30
  165. Executor.TextWrapped = true
  166.  
  167. Scripts.Name = "Scripts"
  168. Scripts.Parent = Main
  169. Scripts.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  170. Scripts.BorderSizePixel = 4
  171. Scripts.Position = UDim2.new(0.53837657, 0, 0.659570813, 0)
  172. Scripts.Size = UDim2.new(0, 151, 0, 50)
  173. Scripts.Font = Enum.Font.Gotham
  174. Scripts.Text = "Scripts"
  175. Scripts.TextColor3 = Color3.new(0.807843, 0.807843, 0.807843)
  176. Scripts.TextSize = 30
  177. Scripts.TextWrapped = true
  178.  
  179. Scripts.MouseButton1Down:connect(function()
  180. Tabs.Visible = true
  181. end)
  182.  
  183.  
  184.  
  185. Credit.Name = "Credit"
  186. Credit.Parent = Main
  187. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  188. Credit.BackgroundTransparency = 1
  189. Credit.Position = UDim2.new(-0.0173311047, 0, 0.953991175, 0)
  190. Credit.Size = UDim2.new(0, 200, 0, 23)
  191. Credit.Font = Enum.Font.Gotham
  192. Credit.Text = "By Maximus1027#6830"
  193. Credit.TextColor3 = Color3.new(0, 0, 0)
  194. Credit.TextSize = 14
  195.  
  196. Tabs.Name = "Tabs"
  197. Tabs.Parent = RobloxFE
  198. Tabs.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  199. Tabs.BorderSizePixel = 4
  200. Tabs.Position = UDim2.new(0.562032819, 0, 0.183046639, 0)
  201. Tabs.Size = UDim2.new(0, 386, 0, 346)
  202. Tabs.Visible = false
  203.  
  204. abar1.Name = "abar1"
  205. abar1.Parent = Tabs
  206. abar1.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  207. abar1.Size = UDim2.new(0, 386, 0, 48)
  208.  
  209.  
  210. ExitButton.MouseButton1Down:connect(function()
  211. Tabs.Visible = false
  212. end)
  213.  
  214.  
  215. ExitButton.Name = "ExitButton"
  216. ExitButton.Parent = abar1
  217. ExitButton.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  218. ExitButton.BorderSizePixel = 0
  219. ExitButton.Position = UDim2.new(0.878238499, 0, 0, 0)
  220. ExitButton.Size = UDim2.new(0, 47, 0, 48)
  221. ExitButton.Font = Enum.Font.GothamBold
  222. ExitButton.Text = "X"
  223. ExitButton.TextColor3 = Color3.new(1, 1, 1)
  224. ExitButton.TextSize = 27
  225. ExitButton.TextWrapped = true
  226.  
  227. InfYield.Name = "InfYield"
  228. InfYield.Parent = Tabs
  229. InfYield.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  230. InfYield.BorderSizePixel = 4
  231. InfYield.Position = UDim2.new(0.217616588, 0, 0.57225436, 0)
  232. InfYield.Size = UDim2.new(0, 200, 0, 50)
  233. InfYield.Font = Enum.Font.SourceSans
  234. InfYield.Text = "Infinite Yield"
  235. InfYield.TextColor3 = Color3.new(0.490196, 0.490196, 0.490196)
  236. InfYield.TextSize = 23
  237.  
  238. InfYield.MouseButton1Down:connect(function()
  239. loadstring(game:HttpGet(('https://pastebin.com/raw/MjBzRjmT'),true))()
  240. end)
  241.  
  242.  
  243. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement