Advertisement
Grantrookie

GRUI V2 [MORE GUI'S]

Oct 26th, 2017
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.98 KB | None | 0 0
  1. -- Objects
  2. -- Note: the password to the "lt2" gui is Leaked
  3.  
  4. local GRUI = Instance.new("ScreenGui")
  5. local LoginFrame = Instance.new("Frame")
  6. local bar = Instance.new("Frame")
  7. local bar1 = Instance.new("Frame")
  8. local loginlabel = Instance.new("TextLabel")
  9. local user = Instance.new("TextBox")
  10. local pass = Instance.new("TextBox")
  11. local login = Instance.new("TextButton")
  12. local MainFrame = Instance.new("Frame")
  13. local bar2 = Instance.new("Frame")
  14. local bar3 = Instance.new("Frame")
  15. local title = Instance.new("TextLabel")
  16. local credit = Instance.new("TextLabel")
  17. local exitok = Instance.new("TextButton")
  18. local exebut = Instance.new("TextButton")
  19. local scriptbut = Instance.new("TextButton")
  20. local ExeFrame = Instance.new("Frame")
  21. local bar4 = Instance.new("Frame")
  22. local ScrollingFrame = Instance.new("ScrollingFrame")
  23. local input = Instance.new("TextBox")
  24. local clear = Instance.new("TextButton")
  25. local execute = Instance.new("TextButton")
  26. local ScriptFrame = Instance.new("Frame")
  27. local AnotherBar = Instance.new("Frame")
  28. local hung = Instance.new("TextButton")
  29. local exitscripts = Instance.new("TextButton")
  30. local explorer = Instance.new("TextButton")
  31. local coolkid = Instance.new("TextButton")
  32. local lt2 = Instance.new("TextButton")
  33. local van = Instance.new("TextButton")
  34. local dex = Instance.new("TextButton")
  35. local mom = Instance.new("TextButton")
  36. local grabknifev4 = Instance.new("TextButton")
  37. local telekenisis = Instance.new("TextButton")
  38. local lt2maneggs = Instance.new("TextButton")
  39.  
  40. -- Properties
  41.  
  42. GRUI.Name = "GRUI"
  43. GRUI.Parent = game.CoreGui
  44.  
  45. LoginFrame.Name = "LoginFrame"
  46. LoginFrame.Parent = GRUI
  47. LoginFrame.Active = true
  48. LoginFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  49. LoginFrame.BackgroundTransparency = 0.050000000745058
  50. LoginFrame.Draggable = true
  51. LoginFrame.Position = UDim2.new(0, 507, 0, 157)
  52. LoginFrame.Size = UDim2.new(0, 320, 0, 387)
  53.  
  54. bar.Name = "bar"
  55. bar.Parent = LoginFrame
  56. bar.BackgroundColor3 = Color3.new(1, 0, 0)
  57. bar.Draggable = true
  58. bar.Size = UDim2.new(0, 320, 0, 18)
  59.  
  60. bar1.Name = "bar1"
  61. bar1.Parent = LoginFrame
  62. bar1.BackgroundColor3 = Color3.new(0.47451, 0, 0)
  63. bar1.Draggable = true
  64. bar1.Size = UDim2.new(0, 320, 0, 6)
  65.  
  66. loginlabel.Name = "loginlabel"
  67. loginlabel.Parent = LoginFrame
  68. loginlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  69. loginlabel.BackgroundTransparency = 1
  70. loginlabel.Position = UDim2.new(0, 60, 0, 51)
  71. loginlabel.Size = UDim2.new(0, 200, 0, 50)
  72. loginlabel.Font = Enum.Font.SourceSans
  73. loginlabel.FontSize = Enum.FontSize.Size14
  74. loginlabel.Text = "LOGIN"
  75. loginlabel.TextColor3 = Color3.new(0.509804, 0.796079, 1)
  76. loginlabel.TextScaled = true
  77. loginlabel.TextSize = 14
  78. loginlabel.TextWrapped = true
  79.  
  80. user.Name = "user"
  81. user.Parent = LoginFrame
  82. user.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  83. user.BorderColor3 = Color3.new(0.941177, 0.0588235, 0.0588235)
  84. user.Position = UDim2.new(0, 60, 0, 119)
  85. user.Size = UDim2.new(0, 200, 0, 22)
  86. user.Font = Enum.Font.SourceSans
  87. user.FontSize = Enum.FontSize.Size14
  88. user.Text = "Username"
  89. user.TextColor3 = Color3.new(1, 0, 0)
  90. user.TextSize = 14
  91.  
  92. pass.Name = "pass"
  93. pass.Parent = LoginFrame
  94. pass.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  95. pass.BorderColor3 = Color3.new(0.941177, 0.0588235, 0.0588235)
  96. pass.Position = UDim2.new(0.188327208, 0, 0.313078284, 50)
  97. pass.Size = UDim2.new(0, 200, 0, 22)
  98. pass.Font = Enum.Font.SourceSans
  99. pass.FontSize = Enum.FontSize.Size14
  100. pass.Text = "Password"
  101. pass.TextColor3 = Color3.new(1, 0, 0)
  102. pass.TextSize = 14
  103.  
  104. login.Name = "login"
  105. login.Parent = LoginFrame
  106. login.BackgroundColor3 = Color3.new(0.564706, 0, 0)
  107. login.BorderColor3 = Color3.new(0.756863, 0, 0)
  108. login.Position = UDim2.new(0, 60, 0, 214)
  109. login.Size = UDim2.new(0, 200, 0, 50)
  110. login.Font = Enum.Font.SourceSans
  111. login.FontSize = Enum.FontSize.Size14
  112. login.Text = "Login"
  113. login.TextColor3 = Color3.new(1, 0, 0)
  114. login.TextScaled = true
  115. login.TextSize = 14
  116. login.TextWrapped = true
  117. login.MouseButton1Down:connect(function()
  118. if user.Text == "AwesomeGrui" and pass.Text == "GRUICOOL" then
  119. LoginFrame.Visible = false
  120. MainFrame.Visible = true
  121. end
  122. end)
  123.  
  124. MainFrame.Name = "MainFrame"
  125. MainFrame.Parent = GRUI
  126. MainFrame.Active = true
  127. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  128. MainFrame.BorderColor3 = Color3.new(0.807843, 0, 0)
  129. MainFrame.Draggable = true
  130. MainFrame.Position = UDim2.new(0, 313, 0, 110)
  131. MainFrame.Size = UDim2.new(0, 644, 0, 366)
  132. MainFrame.Visible = false
  133.  
  134. bar2.Name = "bar2"
  135. bar2.Parent = MainFrame
  136. bar2.BackgroundColor3 = Color3.new(0.988235, 0, 0)
  137. bar2.Size = UDim2.new(0, 644, 0, 16)
  138.  
  139. bar3.Name = "bar3"
  140. bar3.Parent = MainFrame
  141. bar3.BackgroundColor3 = Color3.new(0.603922, 0, 0)
  142. bar3.Position = UDim2.new(0, 0, 0, 17)
  143. bar3.Size = UDim2.new(0, 644, 0, 14)
  144.  
  145. title.Name = "title"
  146. title.Parent = MainFrame
  147. title.BackgroundColor3 = Color3.new(1, 0, 0)
  148. title.BackgroundTransparency = 1
  149. title.Position = UDim2.new(0, 44, 0, 25)
  150. title.Size = UDim2.new(0, 556, 0, 126)
  151. title.Font = Enum.Font.SourceSans
  152. title.FontSize = Enum.FontSize.Size60
  153. title.Text = "WELCOME TO GRUI! INGAME EXECUTOR"
  154. title.TextColor3 = Color3.new(1, 0, 0)
  155. title.TextSize = 50
  156. title.TextWrapped = true
  157.  
  158. credit.Name = "credit"
  159. credit.Parent = MainFrame
  160. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  161. credit.BackgroundTransparency = 1
  162. credit.Position = UDim2.new(0, 0, 0, 334)
  163. credit.Size = UDim2.new(0, 289, 0, 32)
  164. credit.Font = Enum.Font.SourceSans
  165. credit.FontSize = Enum.FontSize.Size14
  166. credit.Text = "Made By xXGamer GrantXx"
  167. credit.TextColor3 = Color3.new(1, 0, 0)
  168. credit.TextScaled = true
  169. credit.TextSize = 14
  170. credit.TextWrapped = true
  171.  
  172. exitok.Name = "exitok"
  173. exitok.Parent = MainFrame
  174. exitok.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  175. exitok.BorderColor3 = Color3.new(1, 0.113725, 0)
  176. exitok.Position = UDim2.new(0, 465, 0, 99)
  177. exitok.Size = UDim2.new(0, 153, 0, 36)
  178. exitok.Font = Enum.Font.SourceSans
  179. exitok.FontSize = Enum.FontSize.Size14
  180. exitok.Text = "Exit"
  181. exitok.TextColor3 = Color3.new(1, 0, 0)
  182. exitok.TextScaled = true
  183. exitok.TextSize = 14
  184. exitok.TextWrapped = true
  185. exitok.MouseButton1Down:connect(function()
  186. GRUI:Destroy()
  187. end)
  188.  
  189. exebut.Name = "exebut"
  190. exebut.Parent = MainFrame
  191. exebut.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  192. exebut.BorderColor3 = Color3.new(1, 0.113725, 0)
  193. exebut.Position = UDim2.new(0, 89, 0, 183)
  194. exebut.Size = UDim2.new(0, 200, 0, 50)
  195. exebut.Font = Enum.Font.SourceSans
  196. exebut.FontSize = Enum.FontSize.Size14
  197. exebut.Text = "Execution"
  198. exebut.TextColor3 = Color3.new(1, 0, 0)
  199. exebut.TextScaled = true
  200. exebut.TextSize = 14
  201. exebut.TextWrapped = true
  202. exebut.MouseButton1Down:connect(function()
  203. MainFrame.Visible = false
  204. ExeFrame.Visible = true
  205. end)
  206.  
  207. scriptbut.Name = "scriptbut"
  208. scriptbut.Parent = MainFrame
  209. scriptbut.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  210. scriptbut.BorderColor3 = Color3.new(1, 0.113725, 0)
  211. scriptbut.Position = UDim2.new(0, 365, 0, 183)
  212. scriptbut.Size = UDim2.new(0, 200, 0, 50)
  213. scriptbut.Font = Enum.Font.SourceSans
  214. scriptbut.FontSize = Enum.FontSize.Size14
  215. scriptbut.Text = "Scripts"
  216. scriptbut.TextColor3 = Color3.new(1, 0, 0)
  217. scriptbut.TextScaled = true
  218. scriptbut.TextSize = 14
  219. scriptbut.TextWrapped = true
  220. scriptbut.MouseButton1Down:connect(function()
  221. ScriptFrame.Visible = true
  222. MainFrame.Visible = false
  223. end)
  224.  
  225. ExeFrame.Name = "ExeFrame"
  226. ExeFrame.Parent = GRUI
  227. ExeFrame.Active = true
  228. ExeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  229. ExeFrame.Draggable = true
  230. ExeFrame.Position = UDim2.new(0, 323, 0, 182)
  231. ExeFrame.Size = UDim2.new(0, 578, 0, 322)
  232. ExeFrame.Visible = false
  233.  
  234. bar4.Name = "bar4"
  235. bar4.Parent = ExeFrame
  236. bar4.BackgroundColor3 = Color3.new(1, 0, 0)
  237. bar4.Size = UDim2.new(0, 578, 0, 15)
  238.  
  239. ScrollingFrame.Parent = ExeFrame
  240. ScrollingFrame.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  241. ScrollingFrame.Position = UDim2.new(0, 16, 0, 31)
  242. ScrollingFrame.Size = UDim2.new(0, 545, 0, 202)
  243. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10000000, 0)
  244. ScrollingFrame.ScrollBarThickness = 10
  245.  
  246. input.Name = "input"
  247. input.Parent = ScrollingFrame
  248. input.BackgroundColor3 = Color3.new(1, 1, 1)
  249. input.BackgroundTransparency = 1
  250. input.Size = UDim2.new(0, 528, 0, 202)
  251. input.Font = Enum.Font.SourceSans
  252. input.FontSize = Enum.FontSize.Size24
  253. input.Text = "print(\"Any Scripts Here\");"
  254. input.TextSize = 20
  255. input.TextXAlignment = Enum.TextXAlignment.Left
  256. input.TextYAlignment = Enum.TextYAlignment.Top
  257.  
  258. clear.Name = "clear"
  259. clear.Parent = ExeFrame
  260. clear.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  261. clear.BorderColor3 = Color3.new(1, 0.113725, 0)
  262. clear.Position = UDim2.new(0.642962575, -83, 1.36795008, -188)
  263. clear.Size = UDim2.new(0, 200, 0, 50)
  264. clear.Font = Enum.Font.SourceSans
  265. clear.FontSize = Enum.FontSize.Size14
  266. clear.Text = "Clear"
  267. clear.TextColor3 = Color3.new(1, 0, 0)
  268. clear.TextScaled = true
  269. clear.TextSize = 14
  270. clear.TextWrapped = true
  271. clear.MouseButton1Down:connect(function()
  272. input.Text = "";
  273. end)
  274.  
  275. execute.Name = "execute"
  276. execute.Parent = ExeFrame
  277. execute.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  278. execute.BorderColor3 = Color3.new(1, 0.113725, 0)
  279. execute.Position = UDim2.new(0.642962575, -325, 1.36795008, -188)
  280. execute.Size = UDim2.new(0, 200, 0, 50)
  281. execute.Font = Enum.Font.SourceSans
  282. execute.FontSize = Enum.FontSize.Size14
  283. execute.Text = "Execute"
  284. execute.TextColor3 = Color3.new(1, 0, 0)
  285. execute.TextScaled = true
  286. execute.TextSize = 14
  287. execute.TextWrapped = true
  288. execute.MouseButton1Down:connect(function()
  289. if input.Text == "ExitFrame();" then
  290. MainFrame.Visible = true
  291. ExeFrame.Visible = false
  292. print("Exited Frame")
  293. else
  294. loadstring(input.Text)()
  295. end
  296. end)
  297.  
  298. ScriptFrame.Name = "ScriptFrame"
  299. ScriptFrame.Parent = GRUI
  300. ScriptFrame.Active = true
  301. ScriptFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  302. ScriptFrame.Draggable = true
  303. ScriptFrame.Position = UDim2.new(0, 304, 0, 174)
  304. ScriptFrame.Size = UDim2.new(0, 650, 0, 331)
  305. ScriptFrame.Visible = false
  306.  
  307. AnotherBar.Name = "AnotherBar"
  308. AnotherBar.Parent = ScriptFrame
  309. AnotherBar.BackgroundColor3 = Color3.new(1, 0, 0)
  310. AnotherBar.Size = UDim2.new(1.00399995, -4, 0.0299999993, 0)
  311.  
  312. hung.Name = "hung"
  313. hung.Parent = ScriptFrame
  314. hung.BackgroundColor3 = Color3.new(1, 0, 0)
  315. hung.BorderColor3 = Color3.new(0, 1, 1)
  316. hung.BorderSizePixel = 4
  317. hung.Position = UDim2.new(0, 23, 0, 25)
  318. hung.Size = UDim2.new(0, 189, 0, 43)
  319. hung.Font = Enum.Font.SourceSans
  320. hung.FontSize = Enum.FontSize.Size14
  321. hung.Text = "Hung999 GUI"
  322. hung.TextScaled = true
  323. hung.TextSize = 14
  324. hung.TextWrapped = true
  325. hung.MouseButton1Down:connect(function()
  326. loadstring(game:GetObjects("rbxassetid://157387254")[1].Source)()
  327. end)
  328.  
  329. exitscripts.Name = "exitscripts"
  330. exitscripts.Parent = ScriptFrame
  331. exitscripts.BackgroundColor3 = Color3.new(1, 0, 0)
  332. exitscripts.BorderColor3 = Color3.new(0.490196, 0, 0)
  333. exitscripts.Position = UDim2.new(0, 440, 0, 267)
  334. exitscripts.Size = UDim2.new(0, 189, 0, 43)
  335. exitscripts.Font = Enum.Font.SourceSans
  336. exitscripts.FontSize = Enum.FontSize.Size14
  337. exitscripts.Text = "Exit"
  338. exitscripts.TextScaled = true
  339. exitscripts.TextSize = 14
  340. exitscripts.TextWrapped = true
  341. exitscripts.MouseButton1Down:connect(function()
  342. ScriptFrame.Visible = false
  343. MainFrame.Visible = true
  344. end)
  345.  
  346. explorer.Name = "explorer"
  347. explorer.Parent = ScriptFrame
  348. explorer.BackgroundColor3 = Color3.new(1, 0, 0)
  349. explorer.BorderColor3 = Color3.new(0, 1, 1)
  350. explorer.BorderSizePixel = 4
  351. explorer.Position = UDim2.new(0, 231, 0, 26)
  352. explorer.Size = UDim2.new(0, 189, 0, 43)
  353. explorer.Font = Enum.Font.SourceSans
  354. explorer.FontSize = Enum.FontSize.Size14
  355. explorer.Text = "Explorer GUI"
  356. explorer.TextScaled = true
  357. explorer.TextSize = 14
  358. explorer.TextWrapped = true
  359. explorer.MouseButton1Down:connect(function()
  360. loadstring(game:GetObjects("rbxassetid://169942111")[1].Source)()
  361. end)
  362.  
  363. coolkid.Name = "coolkid"
  364. coolkid.Parent = ScriptFrame
  365. coolkid.BackgroundColor3 = Color3.new(1, 0, 0)
  366. coolkid.BorderColor3 = Color3.new(0, 1, 1)
  367. coolkid.BorderSizePixel = 4
  368. coolkid.Position = UDim2.new(0, 438, 0, 27)
  369. coolkid.Size = UDim2.new(0, 189, 0, 43)
  370. coolkid.Font = Enum.Font.SourceSans
  371. coolkid.FontSize = Enum.FontSize.Size14
  372. coolkid.Text = "CoolKid GUI"
  373. coolkid.TextScaled = true
  374. coolkid.TextSize = 14
  375. coolkid.TextWrapped = true
  376. coolkid.MouseButton1Down:connect(function()
  377. loadstring(Game:GetObjects("rbxassetid://166327202")[1].Source)()
  378. end)
  379.  
  380. lt2.Name = "lt2"
  381. lt2.Parent = ScriptFrame
  382. lt2.BackgroundColor3 = Color3.new(1, 0, 0)
  383. lt2.BorderColor3 = Color3.new(0, 1, 1)
  384. lt2.BorderSizePixel = 4
  385. lt2.Position = UDim2.new(0, 22, 0, 88)
  386. lt2.Size = UDim2.new(0, 189, 0, 43)
  387. lt2.Font = Enum.Font.SourceSans
  388. lt2.FontSize = Enum.FontSize.Size14
  389. lt2.Text = "LT2 GUI"
  390. lt2.TextScaled = true
  391. lt2.TextSize = 14
  392. lt2.TextWrapped = true
  393. lt2.MouseButton1Down:connect(function()
  394. loadstring(game:GetObjects("rbxassetid://711760907")[1].Source)()
  395. end)
  396.  
  397. van.Name = "van"
  398. van.Parent = ScriptFrame
  399. van.BackgroundColor3 = Color3.new(1, 0, 0)
  400. van.BorderColor3 = Color3.new(0, 1, 1)
  401. van.BorderSizePixel = 4
  402. van.Position = UDim2.new(0, 231, 0, 88)
  403. van.Size = UDim2.new(0, 189, 0, 43)
  404. van.Font = Enum.Font.SourceSans
  405. van.FontSize = Enum.FontSize.Size14
  406. van.Text = "VAN GUI"
  407. van.TextScaled = true
  408. van.TextSize = 14
  409. van.TextWrapped = true
  410. van.MouseButton1Down:connect(function()
  411. loadstring(Raindrop:DownloadString('http://pastebin.com/raw/ZY9uBcyL'))()
  412. end)
  413.  
  414. dex.Name = "dex"
  415. dex.Parent = ScriptFrame
  416. dex.BackgroundColor3 = Color3.new(1, 0, 0)
  417. dex.BorderColor3 = Color3.new(0, 1, 1)
  418. dex.BorderSizePixel = 4
  419. dex.Position = UDim2.new(0, 440, 0, 89)
  420. dex.Size = UDim2.new(0, 189, 0, 43)
  421. dex.Font = Enum.Font.SourceSans
  422. dex.FontSize = Enum.FontSize.Size14
  423. dex.Text = "Dex Explorer V2"
  424. dex.TextScaled = true
  425. dex.TextSize = 14
  426. dex.TextWrapped = true
  427. dex.MouseButton1Down:connect(function()
  428. loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  429. end)
  430.  
  431. mom.Name = "mom"
  432. mom.Parent = ScriptFrame
  433. mom.BackgroundColor3 = Color3.new(1, 0, 0)
  434. mom.BorderColor3 = Color3.new(0, 1, 1)
  435. mom.BorderSizePixel = 4
  436. mom.Position = UDim2.new(0, 22, 0, 150)
  437. mom.Size = UDim2.new(0, 189, 0, 43)
  438. mom.Font = Enum.Font.SourceSans
  439. mom.FontSize = Enum.FontSize.Size14
  440. mom.Text = "YourMom GUI"
  441. mom.TextScaled = true
  442. mom.TextSize = 14
  443. mom.TextWrapped = true
  444. mom.MouseButton1Down:connect(function()
  445. loadstring(game:GetObjects('rbxassetid://289110135')[1].Source)()
  446. end)
  447.  
  448. grabknifev4.Name = "grabknifev4"
  449. grabknifev4.Parent = ScriptFrame
  450. grabknifev4.BackgroundColor3 = Color3.new(1, 0, 0)
  451. grabknifev4.BorderColor3 = Color3.new(0, 1, 1)
  452. grabknifev4.BorderSizePixel = 4
  453. grabknifev4.Position = UDim2.new(0, 230, 0, 150)
  454. grabknifev4.Size = UDim2.new(0, 189, 0, 43)
  455. grabknifev4.Font = Enum.Font.SourceSans
  456. grabknifev4.FontSize = Enum.FontSize.Size14
  457. grabknifev4.Text = "Grab Knife V4"
  458. grabknifev4.TextScaled = true
  459. grabknifev4.TextSize = 14
  460. grabknifev4.TextWrapped = true
  461. grabknifev4.MouseButton1Down:connect(function()
  462. loadstring(game:GetObjects("rbxassetid://01131646678")[1].Source)()
  463. end)
  464.  
  465. telekenisis.Name = "telekenisis"
  466. telekenisis.Parent = ScriptFrame
  467. telekenisis.BackgroundColor3 = Color3.new(1, 0, 0)
  468. telekenisis.BorderColor3 = Color3.new(0, 1, 1)
  469. telekenisis.BorderSizePixel = 4
  470. telekenisis.Position = UDim2.new(0, 438, 0, 150)
  471. telekenisis.Size = UDim2.new(0, 189, 0, 43)
  472. telekenisis.Font = Enum.Font.SourceSans
  473. telekenisis.FontSize = Enum.FontSize.Size14
  474. telekenisis.Text = "Telekenisis"
  475. telekenisis.TextScaled = true
  476. telekenisis.TextSize = 14
  477. telekenisis.TextWrapped = true
  478. telekenisis.MouseButton1Down:connect(function()
  479. loadstring(game:GetObjects('rbxassetid://287147018')[1].Source)()
  480. end)
  481.  
  482. lt2maneggs.Name = "lt2maneggs"
  483. lt2maneggs.Parent = ScriptFrame
  484. lt2maneggs.BackgroundColor3 = Color3.new(1, 0, 0)
  485. lt2maneggs.BorderColor3 = Color3.new(0, 1, 1)
  486. lt2maneggs.BorderSizePixel = 4
  487. lt2maneggs.Position = UDim2.new(0, 22, 0, 213)
  488. lt2maneggs.Size = UDim2.new(0, 604, 0, 43)
  489. lt2maneggs.Font = Enum.Font.SourceSans
  490. lt2maneggs.FontSize = Enum.FontSize.Size14
  491. lt2maneggs.Text = "Man Eggs Hub LT2"
  492. lt2maneggs.TextScaled = true
  493. lt2maneggs.TextSize = 14
  494. lt2maneggs.TextWrapped = true
  495. lt2maneggs.MouseButton1Down:connect(function()
  496. loadstring(game:GetObjects("rbxassetid://01131621822")[1].Source)()
  497. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement