Advertisement
Guest User

GUI!!!

a guest
Mar 10th, 2019
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 12.59 KB | None | 0 0
  1. -- Instances:
  2. local UltimateTrollingGUI = Instance.new("ScreenGui")
  3. local LoginFrame = Instance.new("Frame")
  4. local Bar1 = Instance.new("Frame")
  5. local Intro = Instance.new("TextLabel")
  6. local Username = Instance.new("TextBox")
  7. local Login = Instance.new("TextButton")
  8. local Password = Instance.new("TextBox")
  9. local MainFrame = Instance.new("Frame")
  10. local Title = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12. local R6 = Instance.new("TextButton")
  13. local BrokenAngel = Instance.new("TextButton")
  14. local GoldenGun = Instance.new("TextButton")
  15. local Dominus = Instance.new("TextButton")
  16. local FallenAngel = Instance.new("TextButton")
  17. local InfiniteYield = Instance.new("TextButton")
  18. local KFCMap = Instance.new("TextButton")
  19. local Pharoah = Instance.new("TextButton")
  20. local McDonalds = Instance.new("TextButton")
  21. local FEFlingGui = Instance.new("TextButton")
  22. local GrabKnifeV4 = Instance.new("TextButton")
  23. local ComingSoon = Instance.new("TextButton")
  24. local Comingsoon = Instance.new("TextButton")
  25. local Target = Instance.new("TextBox")
  26. local Credits = Instance.new("TextLabel")
  27. --Properties:
  28. UltimateTrollingGUI.Name = "Ultimate Trolling GUI"
  29. UltimateTrollingGUI.Parent = game.CoreGui
  30. UltimateTrollingGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  31.  
  32. LoginFrame.Name = "LoginFrame"
  33. LoginFrame.Parent = UltimateTrollingGUI
  34. LoginFrame.Active = true
  35. LoginFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  36. LoginFrame.BorderColor3 = Color3.new(0, 0, 0)
  37. LoginFrame.BorderSizePixel = 5
  38. LoginFrame.Position = UDim2.new(0.369929641, 0, 0.245425746, 0)
  39. LoginFrame.Selectable = true
  40. LoginFrame.Size = UDim2.new(0, 498, 0, 549)
  41. LoginFrame.Draggable = true
  42.  
  43. Bar1.Name = "Bar1"
  44. Bar1.Parent = LoginFrame
  45. Bar1.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  46. Bar1.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  47. Bar1.Position = UDim2.new(0.0149001768, 0, 0.0135255959, 0)
  48. Bar1.Size = UDim2.new(0, 482, 0, 45)
  49.  
  50. Intro.Name = "Intro"
  51. Intro.Parent = LoginFrame
  52. Intro.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  53. Intro.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  54. Intro.Position = UDim2.new(0.0923694745, 0, 0.116254352, 0)
  55. Intro.Size = UDim2.new(0, 403, 0, 77)
  56. Intro.Font = Enum.Font.Highway
  57. Intro.Text = "Ultimate Trolling Gui"
  58. Intro.TextColor3 = Color3.new(1, 1, 1)
  59. Intro.TextScaled = true
  60. Intro.TextSize = 36
  61. Intro.TextWrapped = true
  62.  
  63. Username.Name = "Username"
  64. Username.Parent = LoginFrame
  65. Username.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  66. Username.BorderColor3 = Color3.new(0, 0, 0)
  67. Username.BorderSizePixel = 7
  68. Username.Position = UDim2.new(0.0923694745, 0, 0.376524538, 0)
  69. Username.Size = UDim2.new(0, 392, 0, 40)
  70. Username.Font = Enum.Font.Highway
  71. Username.Text = "Username"
  72. Username.TextColor3 = Color3.new(1, 1, 1)
  73. Username.TextScaled = true
  74. Username.TextSize = 14
  75. Username.TextWrapped = true
  76. Username.TextXAlignment = Enum.TextXAlignment.Left
  77.  
  78. Login.Name = "Login"
  79. Login.Parent = LoginFrame
  80. Login.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  81. Login.BorderColor3 = Color3.new(0, 0, 0)
  82. Login.BorderSizePixel = 5
  83. Login.Position = UDim2.new(0.288312912, 0, 0.764315903, 0)
  84. Login.Size = UDim2.new(0, 196, 0, 59)
  85. Login.Font = Enum.Font.Highway
  86. Login.Text = "Login"
  87. Login.TextColor3 = Color3.new(1, 1, 1)
  88. Login.TextScaled = true
  89. Login.TextSize = 14
  90. Login.TextWrapped = true
  91.  
  92. Login.MouseButton1Down:connect(function()
  93.  
  94. if Username.Text == "ii_Crystic" and Password.Text == "50605060" then
  95. MainFrame.Visible = true
  96. LoginFrame.Visible = false
  97.  
  98. elseif Username.Text == "Animus" and Password.Text == "9270-833e-3221-78de" then
  99. MainFrame.Visible = true
  100. LoginFrame.Visible = false
  101. end
  102. end)
  103.  
  104. Password.Name = "Password"
  105. Password.Parent = LoginFrame
  106. Password.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  107. Password.BorderColor3 = Color3.new(0, 0, 0)
  108. Password.BorderSizePixel = 7
  109. Password.Position = UDim2.new(0.0923694745, 0, 0.578710318, 0)
  110. Password.Size = UDim2.new(0, 392, 0, 40)
  111. Password.Font = Enum.Font.Highway
  112. Password.Text = "Password"
  113. Password.TextColor3 = Color3.new(1, 1, 1)
  114. Password.TextScaled = true
  115. Password.TextSize = 14
  116. Password.TextWrapped = true
  117. Password.TextXAlignment = Enum.TextXAlignment.Left
  118.  
  119. MainFrame.Name = "MainFrame"
  120. MainFrame.Parent = UltimateTrollingGUI
  121. MainFrame.Active = true
  122. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  123. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  124. MainFrame.BorderSizePixel = 5
  125. MainFrame.Position = UDim2.new(0, 639, 0, 263)
  126. MainFrame.Selectable = true
  127. MainFrame.Size = UDim2.new(0, 641, 0, 552)
  128. MainFrame.Visible = false
  129. MainFrame.Draggable = true
  130.  
  131. Title.Name = "Title"
  132. Title.Parent = MainFrame
  133. Title.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  134. Title.BorderColor3 = Color3.new(0, 0, 0)
  135. Title.BorderSizePixel = 5
  136. Title.Position = UDim2.new(0, 98, 0, 13)
  137. Title.Size = UDim2.new(0, 442, 0, 82)
  138. Title.Font = Enum.Font.Highway
  139. Title.Text = "Ultimate Trolling Gui"
  140. Title.TextColor3 = Color3.new(1, 1, 1)
  141. Title.TextSize = 49
  142. Title.TextStrokeColor3 = Color3.new(1, 1, 1)
  143. Title.TextWrapped = true
  144.  
  145. Close.Name = "Close"
  146. Close.Parent = MainFrame
  147. Close.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  148. Close.BorderColor3 = Color3.new(0, 0, 0)
  149. Close.BorderSizePixel = 5
  150. Close.Position = UDim2.new(0, 555, 0, 13)
  151. Close.Size = UDim2.new(0, 85, 0, 82)
  152. Close.Font = Enum.Font.Highway
  153. Close.Text = "X"
  154. Close.TextColor3 = Color3.new(1, 1, 1)
  155. Close.TextScaled = true
  156. Close.TextSize = 14
  157. Close.TextWrapped = true
  158.  
  159. R6.Name = "R6"
  160. R6.Parent = MainFrame
  161. R6.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  162. R6.BorderColor3 = Color3.new(0, 0, 0)
  163. R6.BorderSizePixel = 5
  164. R6.Position = UDim2.new(0, 0, 0, 13)
  165. R6.Size = UDim2.new(0, 85, 0, 82)
  166. R6.Font = Enum.Font.Highway
  167. R6.Text = "R6"
  168. R6.TextColor3 = Color3.new(1, 1, 1)
  169. R6.TextScaled = true
  170. R6.TextSize = 14
  171. R6.TextWrapped = true
  172.  
  173. BrokenAngel.Name = "Broken Angel"
  174. BrokenAngel.Parent = MainFrame
  175. BrokenAngel.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  176. BrokenAngel.BorderColor3 = Color3.new(0, 0, 0)
  177. BrokenAngel.BorderSizePixel = 5
  178. BrokenAngel.Position = UDim2.new(0, 11, 0, 116)
  179. BrokenAngel.Size = UDim2.new(0, 194, 0, 60)
  180. BrokenAngel.Font = Enum.Font.Highway
  181. BrokenAngel.Text = "Broken Angel"
  182. BrokenAngel.TextColor3 = Color3.new(1, 1, 1)
  183. BrokenAngel.TextSize = 30
  184. BrokenAngel.TextWrapped = true
  185.  
  186. GoldenGun.Name = "Golden Gun"
  187. GoldenGun.Parent = MainFrame
  188. GoldenGun.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  189. GoldenGun.BorderColor3 = Color3.new(0, 0, 0)
  190. GoldenGun.BorderSizePixel = 5
  191. GoldenGun.Position = UDim2.new(0, 10, 0, 192)
  192. GoldenGun.Size = UDim2.new(0, 194, 0, 60)
  193. GoldenGun.Font = Enum.Font.Highway
  194. GoldenGun.Text = "Golden Gun"
  195. GoldenGun.TextColor3 = Color3.new(1, 1, 1)
  196. GoldenGun.TextSize = 30
  197. GoldenGun.TextWrapped = true
  198.  
  199. Dominus.Name = "Dominus"
  200. Dominus.Parent = MainFrame
  201. Dominus.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  202. Dominus.BorderColor3 = Color3.new(0, 0, 0)
  203. Dominus.BorderSizePixel = 5
  204. Dominus.Position = UDim2.new(0, 10, 0, 271)
  205. Dominus.Size = UDim2.new(0, 194, 0, 60)
  206. Dominus.Font = Enum.Font.Highway
  207. Dominus.Text = "Dominus"
  208. Dominus.TextColor3 = Color3.new(1, 1, 1)
  209. Dominus.TextSize = 30
  210. Dominus.TextWrapped = true
  211.  
  212. FallenAngel.Name = "Fallen Angel"
  213. FallenAngel.Parent = MainFrame
  214. FallenAngel.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  215. FallenAngel.BorderColor3 = Color3.new(0, 0, 0)
  216. FallenAngel.BorderSizePixel = 5
  217. FallenAngel.Position = UDim2.new(0, 9, 0, 345)
  218. FallenAngel.Size = UDim2.new(0, 194, 0, 60)
  219. FallenAngel.Font = Enum.Font.Highway
  220. FallenAngel.Text = "Fallen Angel"
  221. FallenAngel.TextColor3 = Color3.new(1, 1, 1)
  222. FallenAngel.TextSize = 30
  223. FallenAngel.TextWrapped = true
  224.  
  225. InfiniteYield.Name = "Infinite Yield"
  226. InfiniteYield.Parent = MainFrame
  227. InfiniteYield.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  228. InfiniteYield.BorderColor3 = Color3.new(0, 0, 0)
  229. InfiniteYield.BorderSizePixel = 5
  230. InfiniteYield.Position = UDim2.new(0, 224, 0, 116)
  231. InfiniteYield.Size = UDim2.new(0, 194, 0, 60)
  232. InfiniteYield.Font = Enum.Font.Highway
  233. InfiniteYield.Text = "Infinite Yield"
  234. InfiniteYield.TextColor3 = Color3.new(1, 1, 1)
  235. InfiniteYield.TextSize = 30
  236. InfiniteYield.TextWrapped = true
  237.  
  238. KFCMap.Name = "KFC Map"
  239. KFCMap.Parent = MainFrame
  240. KFCMap.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  241. KFCMap.BorderColor3 = Color3.new(0, 0, 0)
  242. KFCMap.BorderSizePixel = 5
  243. KFCMap.Position = UDim2.new(0, 223, 0, 192)
  244. KFCMap.Size = UDim2.new(0, 194, 0, 60)
  245. KFCMap.Font = Enum.Font.Highway
  246. KFCMap.Text = "KFC Map"
  247. KFCMap.TextColor3 = Color3.new(1, 1, 1)
  248. KFCMap.TextSize = 30
  249. KFCMap.TextWrapped = true
  250.  
  251. Pharoah.Name = "Pharoah"
  252. Pharoah.Parent = MainFrame
  253. Pharoah.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  254. Pharoah.BorderColor3 = Color3.new(0, 0, 0)
  255. Pharoah.BorderSizePixel = 5
  256. Pharoah.Position = UDim2.new(0, 223, 0, 271)
  257. Pharoah.Size = UDim2.new(0, 194, 0, 60)
  258. Pharoah.Font = Enum.Font.Highway
  259. Pharoah.Text = "Pharoah"
  260. Pharoah.TextColor3 = Color3.new(1, 1, 1)
  261. Pharoah.TextSize = 30
  262. Pharoah.TextWrapped = true
  263.  
  264. McDonalds.Name = "McDonalds"
  265. McDonalds.Parent = MainFrame
  266. McDonalds.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  267. McDonalds.BorderColor3 = Color3.new(0, 0, 0)
  268. McDonalds.BorderSizePixel = 5
  269. McDonalds.Position = UDim2.new(0, 222, 0, 345)
  270. McDonalds.Size = UDim2.new(0, 194, 0, 60)
  271. McDonalds.Font = Enum.Font.Highway
  272. McDonalds.Text = "McDonalds Clown"
  273. McDonalds.TextColor3 = Color3.new(1, 1, 1)
  274. McDonalds.TextSize = 30
  275. McDonalds.TextWrapped = true
  276.  
  277. FEFlingGui.Name = "FE Fling Gui"
  278. FEFlingGui.Parent = MainFrame
  279. FEFlingGui.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  280. FEFlingGui.BorderColor3 = Color3.new(0, 0, 0)
  281. FEFlingGui.BorderSizePixel = 5
  282. FEFlingGui.Position = UDim2.new(0, 438, 0, 116)
  283. FEFlingGui.Size = UDim2.new(0, 194, 0, 60)
  284. FEFlingGui.Font = Enum.Font.Highway
  285. FEFlingGui.Text = "FE Fling GUI"
  286. FEFlingGui.TextColor3 = Color3.new(1, 1, 1)
  287. FEFlingGui.TextSize = 30
  288. FEFlingGui.TextWrapped = true
  289.  
  290. GrabKnifeV4.Name = "Grab Knife V4"
  291. GrabKnifeV4.Parent = MainFrame
  292. GrabKnifeV4.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  293. GrabKnifeV4.BorderColor3 = Color3.new(0, 0, 0)
  294. GrabKnifeV4.BorderSizePixel = 5
  295. GrabKnifeV4.Position = UDim2.new(0, 437, 0, 192)
  296. GrabKnifeV4.Size = UDim2.new(0, 194, 0, 60)
  297. GrabKnifeV4.Font = Enum.Font.Highway
  298. GrabKnifeV4.Text = "Grab Knife V4"
  299. GrabKnifeV4.TextColor3 = Color3.new(1, 1, 1)
  300. GrabKnifeV4.TextSize = 30
  301. GrabKnifeV4.TextWrapped = true
  302.  
  303. ComingSoon.Name = "Coming Soon"
  304. ComingSoon.Parent = MainFrame
  305. ComingSoon.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  306. ComingSoon.BorderColor3 = Color3.new(0, 0, 0)
  307. ComingSoon.BorderSizePixel = 5
  308. ComingSoon.Position = UDim2.new(0, 437, 0, 271)
  309. ComingSoon.Size = UDim2.new(0, 194, 0, 60)
  310. ComingSoon.Font = Enum.Font.Highway
  311. ComingSoon.Text = "Coming Soon"
  312. ComingSoon.TextColor3 = Color3.new(1, 1, 1)
  313. ComingSoon.TextSize = 30
  314. ComingSoon.TextWrapped = true
  315.  
  316. Comingsoon.Name = "Coming soon"
  317. Comingsoon.Parent = MainFrame
  318. Comingsoon.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  319. Comingsoon.BorderColor3 = Color3.new(0, 0, 0)
  320. Comingsoon.BorderSizePixel = 5
  321. Comingsoon.Position = UDim2.new(0, 436, 0, 345)
  322. Comingsoon.Size = UDim2.new(0, 194, 0, 60)
  323. Comingsoon.Font = Enum.Font.Highway
  324. Comingsoon.Text = "Coming Soon"
  325. Comingsoon.TextColor3 = Color3.new(1, 1, 1)
  326. Comingsoon.TextSize = 30
  327. Comingsoon.TextWrapped = true
  328.  
  329. Target.Name = "Target"
  330. Target.Parent = MainFrame
  331. Target.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  332. Target.BorderColor3 = Color3.new(0, 0, 0)
  333. Target.BorderSizePixel = 5
  334. Target.Position = UDim2.new(0, 11, 0, 425)
  335. Target.Size = UDim2.new(0, 621, 0, 50)
  336. Target.Font = Enum.Font.Highway
  337. Target.Text = "Target Name"
  338. Target.TextColor3 = Color3.new(1, 1, 1)
  339. Target.TextSize = 42
  340. Target.TextStrokeColor3 = Color3.new(1, 1, 1)
  341. Target.TextWrapped = true
  342. Target.TextXAlignment = Enum.TextXAlignment.Left
  343.  
  344. Credits.Name = "Credits"
  345. Credits.Parent = MainFrame
  346. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  347. Credits.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  348. Credits.Position = UDim2.new(0, 9, 0, 491)
  349. Credits.Size = UDim2.new(0, 621, 0, 53)
  350. Credits.Font = Enum.Font.SourceSans
  351. Credits.Text = "Credits: ii_Crystic & RealAnimus"
  352. Credits.TextColor3 = Color3.new(1, 1, 1)
  353. Credits.TextSize = 24
  354. Credits.TextStrokeColor3 = Color3.new(1, 1, 1)
  355. Credits.TextWrapped = true
  356. Credits.TextXAlignment = Enum.TextXAlignment.Left
  357. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement