AlxeBoii

aaa prison life

Oct 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.89 KB | None | 0 0
  1. -- Main
  2. local PrisonLifeGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  3. local Drag = Instance.new("Frame")
  4. local Title = Instance.new("TextLabel")
  5. local Close = Instance.new("TextButton")
  6. local Open = Instance.new("TextButton")
  7. local Body = Instance.new("ScrollingFrame")
  8. local Scroll = Instance.new("ScrollingFrame")
  9. -- Pages
  10. local WelcomePage = Instance.new("Frame")
  11. local WeaponsPage = Instance.new("Frame")
  12. local TeleportPage = Instance.new("ScrollingFrame")
  13. local DoorPage = Instance.new("Frame")
  14. local KillAuraPage = Instance.new("Frame")
  15. local CarTelePage = Instance.new("Frame")
  16. -- Side Buttons
  17. local WeaponsButton = Instance.new("TextButton")
  18. local TeleportButton = Instance.new("TextButton")
  19. local DoorButton = Instance.new("TextButton")
  20. local KillButton = Instance.new("TextButton")
  21. local CarButton = Instance.new("TextButton")
  22. -- Welcome Page Contents
  23. local Welcome = Instance.new("TextLabel")
  24. local Credits = Instance.new("TextLabel")
  25. local Credit2 = Instance.new("TextLabel")
  26. local TxtWall = Instance.new("TextLabel")
  27. local CredPic = Instance.new("ImageLabel")
  28. -- Weapon Page Contents
  29. local WepTut = Instance.new("TextLabel")
  30. local WepTxtWall = Instance.new("TextLabel")
  31. local WepTutSep = Instance.new("Frame")
  32. local WepButt1 = Instance.new("TextButton")
  33. local WepButt2 = Instance.new("TextButton")
  34. local WepButt3 = Instance.new("TextButton")
  35. local WepButt4 = Instance.new("TextButton")
  36. -- Door Page Contents
  37. local DoorTut = Instance.new("TextLabel")
  38. local DoorTxtWall = Instance.new("TextLabel")
  39. local DoorPageSep = Instance.new("Frame")
  40. local DoorButt = Instance.new("TextButton")
  41. -- Teleport Page Contents
  42. local TeleTut = Instance.new("TextLabel")
  43. local TeleTxtWall = Instance.new("TextLabel")
  44. local TeleButt1 = Instance.new("TextButton")
  45. local TeleButt2 = Instance.new("TextButton")
  46. local TeleButt3 = Instance.new("TextButton")
  47. local TeleButt4 = Instance.new("TextButton")
  48. local TeleButt5 = Instance.new("TextButton")
  49. local TeleButt6 = Instance.new("TextButton")
  50. local TeleButt7 = Instance.new("TextButton")
  51. local TeleButt8 = Instance.new("TextButton")
  52. local TeleButt9 = Instance.new("TextButton")
  53. local TeleButt10 = Instance.new("TextButton")
  54. -- Kill Aura Page Contents
  55. local KillTut = Instance.new("TextLabel")
  56. local KillTxtWall = Instance.new("TextLabel")
  57. local KillPageSep = Instance.new("Frame")
  58. local KillButt = Instance.new("TextButton")
  59. -- Car Teleport Page Contents
  60. local CarTut = Instance.new("TextLabel")
  61. local CarTxtWall = Instance.new("TextLabel")
  62. local CarPageSep = Instance.new("Frame")
  63. local CarTeleButt1 = Instance.new("TextButton")
  64. local CarTeleButt2 = Instance.new("TextButton")
  65. -- Main
  66.  
  67. Drag.Active = true
  68. Drag.Name = "Drag"
  69. Drag.Parent = PrisonLifeGui
  70. Drag.BackgroundColor3 = Color3.new(0/255, 105/255, 154/255)
  71. Drag.BackgroundTransparency = 0
  72. Drag.BorderSizePixel = 0
  73. Drag.Position = UDim2.new(0, 0, 0, 0)
  74. Drag.Selectable = true
  75. Drag.Draggable = true
  76. Drag.Size = UDim2.new(0, 300, 0, 35)
  77.  
  78. Title.Parent = Drag
  79. Title.Name = "Title"
  80. Title.BackgroundTransparency = 1
  81. Title.BorderSizePixel = 0
  82. Title.Position = UDim2.new(0, 30, 0, 0)
  83. Title.Size = UDim2.new(0, 225, 0, 35)
  84. Title.Font = "SourceSansBold"
  85. Title.TextColor3 = Color3.new(255, 255, 255)
  86. Title.Text = "Prison Life GUI [Revamp]"
  87. Title.TextSize = 26
  88.  
  89. Close.Parent = Drag
  90. Close.Name = "Close"
  91. Close.BackgroundTransparency = 1
  92. Close.BorderSizePixel = 0
  93. Close.Position = UDim2.new(0, 265, 0, 0)
  94. Close.Size = UDim2.new(0, 35, 0, 35)
  95. Close.Font = "SourceSansBold"
  96. Close.TextColor3 = Color3.new(255, 255, 255)
  97. Close.Text = "X"
  98. Close.TextSize = 28
  99. Close.MouseButton1Down:connect(function()
  100. Body:TweenSize(UDim2.new(1,0,0,0), 'In', 'Quad', 0.5, false)
  101. wait(0.5)
  102. Close.Visible = false
  103. Open.Visible = true
  104. end)
  105.  
  106. Open.Parent = Drag
  107. Open.Visible = false
  108. Open.Name = "Open"
  109. Open.BackgroundTransparency = 1
  110. Open.BorderSizePixel = 0
  111. Open.Position = UDim2.new(0, 265, 0, 0)
  112. Open.Size = UDim2.new(0, 35, 0, 35)
  113. Open.Font = "SourceSansBold"
  114. Open.TextColor3 = Color3.new(255, 255, 255)
  115. Open.Text = "+"
  116. Open.TextSize = 28
  117. Open.MouseButton1Down:connect(function()
  118. Body:TweenSize(UDim2.new(0,300,0,235), 'Out', 'Bounce', 2, false)
  119. wait(0.5)
  120. Close.Visible = true
  121. Open.Visible = false
  122. end)
  123.  
  124. Body.Parent = Drag
  125. Body.Name = "Body"
  126. Body.BackgroundColor3 = Color3.new(0/255, 85/255, 127/255)
  127. Body.BackgroundTransparency = 0
  128. Body.BorderSizePixel = 0
  129. Body.Position = UDim2.new(0, 0, 0, 35)
  130. Body.Size = UDim2.new(0, 300, 0, 235)
  131. Body.ScrollingEnabled = false
  132. Body.ScrollBarThickness = 0
  133.  
  134. Scroll.Parent = Body
  135. Scroll.Name = "Scroll"
  136. Scroll.BackgroundTransparency = 1
  137. Scroll.BorderSizePixel = 0
  138. Scroll.Position = UDim2.new(0, 0, 0, 0)
  139. Scroll.Size = UDim2.new(0, 110, 0, 235)
  140. Scroll.CanvasSize = UDim2.new(0, 0, 2, 0)
  141.  
  142. -- Pages
  143.  
  144. WelcomePage.Parent = Body
  145. WelcomePage.Visible = true
  146. WelcomePage.Name = "WelcomePage"
  147. WelcomePage.BackgroundTransparency = 1
  148. WelcomePage.BorderSizePixel = 0
  149. WelcomePage.Position = UDim2.new(0, 115, 0, 0)
  150. WelcomePage.Size = UDim2.new(0, 180, 0, 235)
  151.  
  152. WeaponsPage.Parent = Body
  153. WeaponsPage.Visible = false
  154. WeaponsPage.Name = "WeaponsPage"
  155. WeaponsPage.BackgroundTransparency = 1
  156. WeaponsPage.BorderSizePixel = 0
  157. WeaponsPage.Position = UDim2.new(0, 115, 0, 0)
  158. WeaponsPage.Size = UDim2.new(0, 180, 0, 235)
  159.  
  160. TeleportPage.Parent = Body
  161. TeleportPage.Visible = false
  162. TeleportPage.Name = "TeleportPage"
  163. TeleportPage.BackgroundTransparency = 1
  164. TeleportPage.BorderSizePixel = 0
  165. TeleportPage.Position = UDim2.new(0, 115, 0, 0)
  166. TeleportPage.Size = UDim2.new(0, 180, 0, 235)
  167. TeleportPage.CanvasSize = UDim2.new(0, 0, 2.5, 0)
  168.  
  169. DoorPage.Parent = Body
  170. DoorPage.Visible = false
  171. DoorPage.Name = "DoorPage"
  172. DoorPage.BackgroundTransparency = 1
  173. DoorPage.BorderSizePixel = 0
  174. DoorPage.Position = UDim2.new(0, 115, 0, 0)
  175. DoorPage.Size = UDim2.new(0, 180, 0, 235)
  176.  
  177. KillAuraPage.Parent = Body
  178. KillAuraPage.Visible = false
  179. KillAuraPage.Name = "KillAuraPage"
  180. KillAuraPage.BackgroundTransparency = 1
  181. KillAuraPage.BorderSizePixel = 0
  182. KillAuraPage.Position = UDim2.new(0, 115, 0, 0)
  183. KillAuraPage.Size = UDim2.new(0, 180, 0, 235)
  184.  
  185. CarTelePage.Parent = Body
  186. CarTelePage.Visible = false
  187. CarTelePage.Name = "CarTelePage"
  188. CarTelePage.BackgroundTransparency = 1
  189. CarTelePage.BorderSizePixel = 0
  190. CarTelePage.Position = UDim2.new(0, 115, 0, 0)
  191. CarTelePage.Size = UDim2.new(0, 180, 0, 235)
  192.  
  193. -- Buttons
  194.  
  195. WeaponsButton.Parent = Scroll
  196. WeaponsButton.Name = "WeaponsButton"
  197. WeaponsButton.BackgroundTransparency = 1
  198. WeaponsButton.BorderSizePixel = 0
  199. WeaponsButton.Position = UDim2.new(0, 5, 0, 5)
  200. WeaponsButton.Size = UDim2.new(0, 85, 0, 35)
  201. WeaponsButton.Font = "SourceSansBold"
  202. WeaponsButton.TextColor3 = Color3.new(255, 255, 255)
  203. WeaponsButton.Text = "Weapons"
  204. WeaponsButton.TextSize = 24
  205. WeaponsButton.Style = "RobloxRoundButton"
  206. WeaponsButton.MouseButton1Down:connect(function()
  207. WeaponsPage.Visible = true
  208. TeleportPage.Visible = false
  209. DoorPage.Visible = false
  210. KillAuraPage.Visible = false
  211. CarTelePage.Visible = false
  212. WelcomePage.Active = false
  213. WelcomePage.Visible = false
  214. end)
  215.  
  216. TeleportButton.Parent = Scroll
  217. TeleportButton.Name = "TeleportButton"
  218. TeleportButton.BackgroundTransparency = 1
  219. TeleportButton.BorderSizePixel = 0
  220. TeleportButton.Position = UDim2.new(0, 5, 0, 45)
  221. TeleportButton.Size = UDim2.new(0, 85, 0, 35)
  222. TeleportButton.Font = "SourceSansBold"
  223. TeleportButton.TextColor3 = Color3.new(255, 255, 255)
  224. TeleportButton.Text = "Teleports"
  225. TeleportButton.TextSize = 22
  226. TeleportButton.Style = "RobloxRoundButton"
  227. TeleportButton.MouseButton1Down:connect(function()
  228. WeaponsPage.Visible = false
  229. TeleportPage.Visible = true
  230. DoorPage.Visible = false
  231. KillAuraPage.Visible = false
  232. CarTelePage.Visible = false
  233. WelcomePage.Active = false
  234. WelcomePage.Visible = false
  235. end)
  236.  
  237. DoorButton.Parent = Scroll
  238. DoorButton.Name = "DoorButton"
  239. DoorButton.BackgroundTransparency = 1
  240. DoorButton.BorderSizePixel = 0
  241. DoorButton.Position = UDim2.new(0, 5, 0, 85)
  242. DoorButton.Size = UDim2.new(0, 85, 0, 35)
  243. DoorButton.Font = "SourceSansBold"
  244. DoorButton.TextColor3 = Color3.new(255, 255, 255)
  245. DoorButton.Text = "Remove Doors"
  246. DoorButton.TextSize = 14
  247. DoorButton.Style = "RobloxRoundButton"
  248. DoorButton.MouseButton1Down:connect(function()
  249. WeaponsPage.Visible = false
  250. TeleportPage.Visible = false
  251. DoorPage.Visible = true
  252. KillAuraPage.Visible = false
  253. CarTelePage.Visible = false
  254. WelcomePage.Active = false
  255. WelcomePage.Visible = false
  256. end)
  257.  
  258. KillButton.Parent = Scroll
  259. KillButton.Name = "KillButton"
  260. KillButton.BackgroundTransparency = 1
  261. KillButton.BorderSizePixel = 0
  262. KillButton.Position = UDim2.new(0, 5, 0, 125)
  263. KillButton.Size = UDim2.new(0, 85, 0, 35)
  264. KillButton.Font = "SourceSansBold"
  265. KillButton.TextColor3 = Color3.new(255, 255, 255)
  266. KillButton.Text = "Kill Aura"
  267. KillButton.TextSize = 23
  268. KillButton.Style = "RobloxRoundButton"
  269. KillButton.MouseButton1Down:connect(function()
  270. WeaponsPage.Visible = false
  271. TeleportPage.Visible = false
  272. DoorPage.Visible = false
  273. KillAuraPage.Visible = true
  274. CarTelePage.Visible = false
  275. WelcomePage.Active = false
  276. WelcomePage.Visible = false
  277. end)
  278.  
  279. CarButton.Parent = Scroll
  280. CarButton.Name = "CarButton"
  281. CarButton.BackgroundTransparency = 1
  282. CarButton.BorderSizePixel = 0
  283. CarButton.Position = UDim2.new(0, 5, 0, 165)
  284. CarButton.Size = UDim2.new(0, 85, 0, 35)
  285. CarButton.Font = "SourceSansBold"
  286. CarButton.TextColor3 = Color3.new(255, 255, 255)
  287. CarButton.Text = "Vehicles"
  288. CarButton.TextSize = 23
  289. CarButton.Style = "RobloxRoundButton"
  290. CarButton.MouseButton1Down:connect(function()
  291. WeaponsPage.Visible = false
  292. TeleportPage.Visible = false
  293. DoorPage.Visible = false
  294. KillAuraPage.Visible = false
  295. CarTelePage.Visible = true
  296. WelcomePage.Active = false
  297. WelcomePage.Visible = false
  298. end)
  299.  
  300. -- Welcome Page Contents
  301.  
  302. Welcome.Parent = WelcomePage
  303. Welcome.Name = "Welcome"
  304. Welcome.BackgroundTransparency = 1
  305. Welcome.BorderSizePixel = 0
  306. Welcome.Position = UDim2.new(0, 0, 0, 0)
  307. Welcome.Size = UDim2.new(0, 180, 0, 35)
  308. Welcome.Font = "SourceSansBold"
  309. Welcome.TextColor3 = Color3.new(255, 255, 255)
  310. Welcome.Text = "Welcome!"
  311. Welcome.TextSize = 38
  312.  
  313. Credits.Parent = WelcomePage
  314. Credits.Name = "Credits"
  315. Credits.BackgroundTransparency = 1
  316. Credits.BorderSizePixel = 0
  317. Credits.Position = UDim2.new(0, 0, 0, 35)
  318. Credits.Size = UDim2.new(0, 180, 0, 25)
  319. Credits.Font = "SourceSansBold"
  320. Credits.TextColor3 = Color3.new(170/255, 0/255, 0/255)
  321. Credits.Text = "Credits to all creators!"
  322. Credits.TextSize = 18
  323.  
  324. Credit2.Parent = WelcomePage
  325. Credit2.Name = "Credit2"
  326. Credit2.BackgroundTransparency = 1
  327. Credit2.BorderSizePixel = 0
  328. Credit2.Position = UDim2.new(0, 0, 0, 185)
  329. Credit2.Size = UDim2.new(0, 135, 0, 35)
  330. Credit2.Font = "SourceSansBold"
  331. Credit2.TextColor3 = Color3.new(0, 255, 0)
  332. Credit2.Text = "UI Created By"
  333. Credit2.TextSize = 28
  334.  
  335. TxtWall.Parent = WelcomePage
  336. TxtWall.Name = "TxtWall"
  337. TxtWall.BackgroundTransparency = 1
  338. TxtWall.BorderSizePixel = 0
  339. TxtWall.Position = UDim2.new(0, 0, 0, 65)
  340. TxtWall.Size = UDim2.new(0, 180, 0, 120)
  341. TxtWall.Font = "SourceSansBold"
  342. TxtWall.TextColor3 = Color3.new(255, 255, 255)
  343. TxtWall.Text = "I made this GUI because I saw the original GUI, which looked like absolute shit."
  344. TxtWall.TextSize = 24
  345. TxtWall.TextWrapped = true
  346.  
  347. CredPic.Parent = Credit2
  348. CredPic.Name = "CredPic"
  349. CredPic.BackgroundTransparency = 1
  350. CredPic.BorderSizePixel = 0
  351. CredPic.Position = UDim2.new(0, 125, 0, -5)
  352. CredPic.Size = UDim2.new(0, 55, 0, 50)
  353. CredPic.Image = "rbxassetid://643508583"
  354.  
  355. -- Weapons Page Contents
  356.  
  357. WepTut.BackgroundTransparency = 1
  358. WepTut.Size = UDim2.new(0, 180, 0, 35)
  359. WepTut.Font = "SourceSansBold"
  360. WepTut.Text = "Tutorial"
  361. WepTut.TextColor3 = Color3.new(1, 1, 1)
  362. WepTut.TextSize = 28
  363. WepTut.Parent = WeaponsPage
  364.  
  365. WepTxtWall.BackgroundTransparency = 1
  366. WepTxtWall.Position = UDim2.new(0, 0, 0, 35)
  367. WepTxtWall.Size = UDim2.new(0, 180, 0, 75)
  368. WepTxtWall.Font = Enum.Font.SourceSansBold
  369. WepTxtWall.Text = "Click on the guns that you want to appear. If you're new to this, click on the weapon to equip it."
  370. WepTxtWall.TextColor3 = Color3.new(1, 1, 1)
  371. WepTxtWall.TextWrapped = true
  372. WepTxtWall.TextSize = 18
  373. WepTxtWall.Parent = WepTut
  374. WepTutSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  375. WepTutSep.BorderSizePixel = 0
  376. WepTutSep.Position = UDim2.new(0, 15, 0, 115)
  377. WepTutSep.Size = UDim2.new(0, 150, 0, 1)
  378. WepTutSep.Parent = WeaponsPage
  379.  
  380. WepButt1.Active = true
  381. WepButt1.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  382. WepButt1.Position = UDim2.new(0, 5, 0, 125)
  383. WepButt1.Selectable = true
  384. WepButt1.Size = UDim2.new(0, 80, 0, 35)
  385. WepButt1.Font = "SourceSansBold"
  386. WepButt1.Text = "AK-47"
  387. WepButt1.TextColor3 = Color3.new(1, 1, 1)
  388. WepButt1.TextSize = 18
  389. WepButt1.Parent = WeaponsPage
  390. WepButt1.MouseButton1Down:connect(function()
  391. local AK47 = {"AK-47"}
  392. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  393. for j, k in pairs(AK47) do
  394. if v.Name == k then
  395. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  396. end
  397. end
  398. end
  399. end)
  400.  
  401. WepButt2.Active = true
  402. WepButt2.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  403. WepButt2.Position = UDim2.new(0, 95, 0, 125)
  404. WepButt2.Selectable = true
  405. WepButt2.Size = UDim2.new(0, 80, 0, 35)
  406. WepButt2.Font = "SourceSansBold"
  407. WepButt2.Text = "M9"
  408. WepButt2.TextColor3 = Color3.new(1, 1, 1)
  409. WepButt2.TextSize = 18
  410. WepButt2.Parent = WeaponsPage
  411. WepButt2.MouseButton1Down:connect(function()
  412. local M9 = {"M9"}
  413. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  414. for j, k in pairs(M9) do
  415. if v.Name == k then
  416. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  417. end
  418. end
  419. end
  420. end)
  421.  
  422. WepButt3.Active = true
  423. WepButt3.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  424. WepButt3.Position = UDim2.new(0, 95, 0, 170)
  425. WepButt3.Size = UDim2.new(0, 80, 0, 35)
  426. WepButt3.Selectable = true
  427. WepButt3.Font = "SourceSansBold"
  428. WepButt3.Text = "REM 870"
  429. WepButt3.TextColor3 = Color3.new(1, 1, 1)
  430. WepButt3.TextSize = 18
  431. WepButt3.Parent = WeaponsPage
  432. WepButt3.MouseButton1Down:connect(function()
  433. local Remington870 = {"Remington 870"}
  434. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  435. for j, k in pairs(Remington870) do
  436. if v.Name == k then
  437. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  438. end
  439. end
  440. end
  441. end)
  442.  
  443. WepButt4.Active = true
  444. WepButt4.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  445. WepButt4.Position = UDim2.new(0, 5, 0, 170)
  446. WepButt4.Selectable = true
  447. WepButt4.Size = UDim2.new(0, 80, 0, 35)
  448. WepButt4.Font = "SourceSansBold"
  449. WepButt4.Text = "M4A1"
  450. WepButt4.TextColor3 = Color3.new(1, 1, 1)
  451. WepButt4.TextSize = 18
  452. WepButt4.Parent = WeaponsPage
  453. WepButt4.MouseButton1Down:connect(function()
  454. local M4A1 = {"M4A1"}
  455. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  456. for j, k in pairs(M4A1) do
  457. if v.Name == k then
  458. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  459. end
  460. end
  461. end
  462. end)
  463.  
  464. -- DoorPage Contents
  465.  
  466. DoorTut.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  467. DoorTut.BackgroundTransparency = 1
  468. DoorTut.Size = UDim2.new(0, 180, 0, 35)
  469. DoorTut.Font = "SourceSansBold"
  470. DoorTut.Text = "Tutorial"
  471. DoorTut.TextColor3 = Color3.new(1, 1, 1)
  472. DoorTut.TextSize = 28
  473. DoorTut.Parent = DoorPage
  474.  
  475. DoorTxtWall.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  476. DoorTxtWall.BackgroundTransparency = 1
  477. DoorTxtWall.Position = UDim2.new(0, 0, 0, 35)
  478. DoorTxtWall.Size = UDim2.new(0, 180, 0, 115)
  479. DoorTxtWall.Font = "SourceSansBold"
  480. DoorTxtWall.Text = "When activated, all doors in the prison will be destroyed. Remember, since Prison Life is FE, the destroyed doors only work for YOU."
  481. DoorTxtWall.TextColor3 = Color3.new(1, 1, 1)
  482. DoorTxtWall.TextSize = 18
  483. DoorTxtWall.TextWrapped = true
  484. DoorTxtWall.Parent = DoorTut
  485.  
  486. DoorPageSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  487. DoorPageSep.BorderSizePixel = 0
  488. DoorPageSep.Position = UDim2.new(0, 15, 0, 155)
  489. DoorPageSep.Size = UDim2.new(0, 150, 0, 1)
  490. DoorPageSep.Parent = DoorPage
  491.  
  492. DoorButt.Active = true
  493. DoorButt.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  494. DoorButt.Position = UDim2.new(0, 5, 0, 170)
  495. DoorButt.Selectable = true
  496. DoorButt.Size = UDim2.new(0, 170, 0, 50)
  497. DoorButt.Font = "SourceSansBold"
  498. DoorButt.Text = "Remove Doors"
  499. DoorButt.TextColor3 = Color3.new(1, 1, 1)
  500. DoorButt.TextSize = 24
  501. DoorButt.Parent = DoorPage
  502.  
  503. -- Buttons
  504.  
  505. WeaponsButton.Parent = Scroll
  506. WeaponsButton.Name = "WeaponsButton"
  507. WeaponsButton.BackgroundTransparency = 1
  508. WeaponsButton.BorderSizePixel = 0
  509. WeaponsButton.Position = UDim2.new(0, 5, 0, 5)
  510. WeaponsButton.Size = UDim2.new(0, 85, 0, 35)
  511. WeaponsButton.Font = "SourceSansBold"
  512. WeaponsButton.TextColor3 = Color3.new(255, 255, 255)
  513. WeaponsButton.Text = "Weapons"
  514. WeaponsButton.TextSize = 24
  515. WeaponsButton.Style = "RobloxRoundButton"
  516. WeaponsButton.MouseButton1Down:connect(function()
  517. WeaponsPage.Visible = true
  518. TeleportPage.Visible = false
  519. DoorPage.Visible = false
  520. WelcomePage.Active = false
  521. WelcomePage.Visible = false
  522. end)
  523.  
  524. TeleportButton.Parent = Scroll
  525. TeleportButton.Name = "TeleportButton"
  526. TeleportButton.BackgroundTransparency = 1
  527. TeleportButton.BorderSizePixel = 0
  528. TeleportButton.Position = UDim2.new(0, 5, 0, 45)
  529. TeleportButton.Size = UDim2.new(0, 85, 0, 35)
  530. TeleportButton.Font = "SourceSansBold"
  531. TeleportButton.TextColor3 = Color3.new(255, 255, 255)
  532. TeleportButton.Text = "Teleports"
  533. TeleportButton.TextSize = 22
  534. TeleportButton.Style = "RobloxRoundButton"
  535. TeleportButton.MouseButton1Down:connect(function()
  536. WeaponsPage.Visible = false
  537. TeleportPage.Visible = true
  538. DoorPage.Visible = false
  539. WelcomePage.Active = false
  540. WelcomePage.Visible = false
  541. end)
  542.  
  543. DoorButton.Parent = Scroll
  544. DoorButton.Name = "DoorButton"
  545. DoorButton.BackgroundTransparency = 1
  546. DoorButton.BorderSizePixel = 0
  547. DoorButton.Position = UDim2.new(0, 5, 0, 85)
  548. DoorButton.Size = UDim2.new(0, 85, 0, 35)
  549. DoorButton.Font = "SourceSansBold"
  550. DoorButton.TextColor3 = Color3.new(255, 255, 255)
  551. DoorButton.Text = "Remove Doors"
  552. DoorButton.TextSize = 14
  553. DoorButton.Style = "RobloxRoundButton"
  554. DoorButton.MouseButton1Down:connect(function()
  555. WeaponsPage.Visible = false
  556. TeleportPage.Visible = false
  557. DoorPage.Visible = true
  558. WelcomePage.Active = false
  559. WelcomePage.Visible = false
  560. end)
  561.  
  562. -- Welcome Page Contents
  563.  
  564. Welcome.Parent = WelcomePage
  565. Welcome.Name = "Welcome"
  566. Welcome.BackgroundTransparency = 1
  567. Welcome.BorderSizePixel = 0
  568. Welcome.Position = UDim2.new(0, 0, 0, 0)
  569. Welcome.Size = UDim2.new(0, 180, 0, 35)
  570. Welcome.Font = "SourceSansBold"
  571. Welcome.TextColor3 = Color3.new(255, 255, 255)
  572. Welcome.Text = "Welcome!"
  573. Welcome.TextSize = 38
  574.  
  575. Credits.Parent = WelcomePage
  576. Credits.Name = "Credits"
  577. Credits.BackgroundTransparency = 1
  578. Credits.BorderSizePixel = 0
  579. Credits.Position = UDim2.new(0, 0, 0, 35)
  580. Credits.Size = UDim2.new(0, 180, 0, 25)
  581. Credits.Font = "SourceSansBold"
  582. Credits.TextColor3 = Color3.new(170/255, 0/255, 0/255)
  583. Credits.Text = "Credits to all creators!"
  584. Credits.TextSize = 18
  585.  
  586. Credit2.Parent = WelcomePage
  587. Credit2.Name = "Credit2"
  588. Credit2.BackgroundTransparency = 1
  589. Credit2.BorderSizePixel = 0
  590. Credit2.Position = UDim2.new(0, 0, 0, 185)
  591. Credit2.Size = UDim2.new(0, 135, 0, 35)
  592. Credit2.Font = "SourceSansBold"
  593. Credit2.TextColor3 = Color3.new(0, 255, 0)
  594. Credit2.Text = "UI Created By"
  595. Credit2.TextSize = 28
  596.  
  597. TxtWall.Parent = WelcomePage
  598. TxtWall.Name = "TxtWall"
  599. TxtWall.BackgroundTransparency = 1
  600. TxtWall.BorderSizePixel = 0
  601. TxtWall.Position = UDim2.new(0, 0, 0, 65)
  602. TxtWall.Size = UDim2.new(0, 180, 0, 120)
  603. TxtWall.Font = "SourceSansBold"
  604. TxtWall.TextColor3 = Color3.new(255, 255, 255)
  605. TxtWall.Text = "I made this GUI because I saw the original GUI, which looked like absolute shit."
  606. TxtWall.TextSize = 24
  607. TxtWall.TextWrapped = true
  608.  
  609. CredPic.Parent = Credit2
  610. CredPic.Name = "CredPic"
  611. CredPic.BackgroundTransparency = 1
  612. CredPic.BorderSizePixel = 0
  613. CredPic.Position = UDim2.new(0, 125, 0, -5)
  614. CredPic.Size = UDim2.new(0, 55, 0, 50)
  615. CredPic.Image = "rbxassetid://643508583"
  616.  
  617. -- Weapons Page Contents
  618.  
  619. WepTut.BackgroundTransparency = 1
  620. WepTut.Size = UDim2.new(0, 180, 0, 35)
  621. WepTut.Font = "SourceSansBold"
  622. WepTut.Text = "Tutorial"
  623. WepTut.TextColor3 = Color3.new(1, 1, 1)
  624. WepTut.TextSize = 28
  625. WepTut.Parent = WeaponsPage
  626.  
  627. WepTxtWall.BackgroundTransparency = 1
  628. WepTxtWall.Position = UDim2.new(0, 0, 0, 35)
  629. WepTxtWall.Size = UDim2.new(0, 180, 0, 75)
  630. WepTxtWall.Font = Enum.Font.SourceSansBold
  631. WepTxtWall.Text = "Click on the guns that you want to appear. If you're new to this, click on the weapon to equip it."
  632. WepTxtWall.TextColor3 = Color3.new(1, 1, 1)
  633. WepTxtWall.TextWrapped = true
  634. WepTxtWall.TextSize = 18
  635. WepTxtWall.Parent = WepTut
  636. WepTutSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  637. WepTutSep.BorderSizePixel = 0
  638. WepTutSep.Position = UDim2.new(0, 15, 0, 115)
  639. WepTutSep.Size = UDim2.new(0, 150, 0, 1)
  640. WepTutSep.Parent = WeaponsPage
  641.  
  642. WepButt1.Active = true
  643. WepButt1.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  644. WepButt1.Position = UDim2.new(0, 5, 0, 125)
  645. WepButt1.Selectable = true
  646. WepButt1.Size = UDim2.new(0, 80, 0, 35)
  647. WepButt1.Font = "SourceSansBold"
  648. WepButt1.Text = "AK-47"
  649. WepButt1.TextColor3 = Color3.new(1, 1, 1)
  650. WepButt1.TextSize = 18
  651. WepButt1.Parent = WeaponsPage
  652. WepButt1.MouseButton1Down:connect(function()
  653. local AK47 = {"AK-47"}
  654. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  655. for j, k in pairs(AK47) do
  656. if v.Name == k then
  657. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  658. end
  659. end
  660. end
  661. end)
  662.  
  663. WepButt2.Active = true
  664. WepButt2.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  665. WepButt2.Position = UDim2.new(0, 95, 0, 125)
  666. WepButt2.Selectable = true
  667. WepButt2.Size = UDim2.new(0, 80, 0, 35)
  668. WepButt2.Font = "SourceSansBold"
  669. WepButt2.Text = "M9"
  670. WepButt2.TextColor3 = Color3.new(1, 1, 1)
  671. WepButt2.TextSize = 18
  672. WepButt2.Parent = WeaponsPage
  673. WepButt2.MouseButton1Down:connect(function()
  674. local M9 = {"M9"}
  675. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  676. for j, k in pairs(M9) do
  677. if v.Name == k then
  678. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  679. end
  680. end
  681. end
  682. end)
  683.  
  684. WepButt3.Active = true
  685. WepButt3.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  686. WepButt3.Position = UDim2.new(0, 95, 0, 170)
  687. WepButt3.Size = UDim2.new(0, 80, 0, 35)
  688. WepButt3.Selectable = true
  689. WepButt3.Font = "SourceSansBold"
  690. WepButt3.Text = "REM 870"
  691. WepButt3.TextColor3 = Color3.new(1, 1, 1)
  692. WepButt3.TextSize = 18
  693. WepButt3.Parent = WeaponsPage
  694. WepButt3.MouseButton1Down:connect(function()
  695. local Remington870 = {"Remington 870"}
  696. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  697. for j, k in pairs(Remington870) do
  698. if v.Name == k then
  699. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  700. end
  701. end
  702. end
  703. end)
  704.  
  705. WepButt4.Active = true
  706. WepButt4.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  707. WepButt4.Position = UDim2.new(0, 5, 0, 170)
  708. WepButt4.Selectable = true
  709. WepButt4.Size = UDim2.new(0, 80, 0, 35)
  710. WepButt4.Font = "SourceSansBold"
  711. WepButt4.Text = "M4A1"
  712. WepButt4.TextColor3 = Color3.new(1, 1, 1)
  713. WepButt4.TextSize = 18
  714. WepButt4.Parent = WeaponsPage
  715. WepButt4.MouseButton1Down:connect(function()
  716. local M4A1 = {"M4A1"}
  717. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  718. for j, k in pairs(M4A1) do
  719. if v.Name == k then
  720. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  721. end
  722. end
  723. end
  724. end)
  725.  
  726. -- DoorPage Contents
  727.  
  728. DoorTut.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  729. DoorTut.BackgroundTransparency = 1
  730. DoorTut.Size = UDim2.new(0, 180, 0, 35)
  731. DoorTut.Font = "SourceSansBold"
  732. DoorTut.Text = "Tutorial"
  733. DoorTut.TextColor3 = Color3.new(1, 1, 1)
  734. DoorTut.TextSize = 28
  735. DoorTut.Parent = DoorPage
  736.  
  737. DoorTxtWall.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  738. DoorTxtWall.BackgroundTransparency = 1
  739. DoorTxtWall.Position = UDim2.new(0, 0, 0, 35)
  740. DoorTxtWall.Size = UDim2.new(0, 180, 0, 115)
  741. DoorTxtWall.Font = "SourceSansBold"
  742. DoorTxtWall.Text = "When activated, all doors in the prison will be destroyed. Remember, since Prison Life is FE, the destroyed doors only work for YOU."
  743. DoorTxtWall.TextColor3 = Color3.new(1, 1, 1)
  744. DoorTxtWall.TextSize = 18
  745. DoorTxtWall.TextWrapped = true
  746. DoorTxtWall.Parent = DoorTut
  747.  
  748. DoorPageSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  749. DoorPageSep.BorderSizePixel = 0
  750. DoorPageSep.Position = UDim2.new(0, 15, 0, 155)
  751. DoorPageSep.Size = UDim2.new(0, 150, 0, 1)
  752. DoorPageSep.Parent = DoorPage
  753.  
  754. DoorButt.Active = true
  755. DoorButt.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  756. DoorButt.Position = UDim2.new(0, 5, 0, 170)
  757. DoorButt.Selectable = true
  758. DoorButt.Size = UDim2.new(0, 170, 0, 50)
  759. DoorButt.Font = "SourceSansBold"
  760. DoorButt.Text = "Remove Doors"
  761. DoorButt.TextColor3 = Color3.new(1, 1, 1)
  762. DoorButt.TextSize = 24
  763. DoorButt.Parent = DoorPage
  764. DoorButt.MouseButton1Down:connect(function()
  765. game.Workspace.Doors:Destroy()
  766. end)
  767.  
  768. -- Teleport Page Contents
  769.  
  770. TeleTut.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  771. TeleTut.BackgroundTransparency = 1
  772. TeleTut.Size = UDim2.new(0, 180, 0, 35)
  773. TeleTut.Font = "SourceSansBold"
  774. TeleTut.Text = "Tutorial"
  775. TeleTut.TextColor3 = Color3.new(1, 1, 1)
  776. TeleTut.TextSize = 28
  777. TeleTut.Parent = TeleportPage
  778.  
  779. TeleTxtWall.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  780. TeleTxtWall.BackgroundTransparency = 1
  781. TeleTxtWall.Parent = TeleTut
  782. TeleTxtWall.Position = UDim2.new(0, 0, 0, 35)
  783. TeleTxtWall.Size = UDim2.new(0, 180, 0, 115)
  784. TeleTxtWall.Font = "SourceSansBold"
  785. TeleTxtWall.TextSize = 18
  786. TeleTxtWall.Text = "Click on the areas you want to teleport to. They're pretty self explanitory, so I don't think I need to explain further."
  787. TeleTxtWall.TextColor3 = Color3.new(1, 1, 1)
  788. TeleTxtWall.TextWrapped = true
  789.  
  790. TeleButt1.Active = true
  791. TeleButt1.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  792. TeleButt1.Position = UDim2.new(0, 22, 0, 170)
  793. TeleButt1.Selectable = true
  794. TeleButt1.Size = UDim2.new(0, 135, 0, 35)
  795. TeleButt1.Font = "SourceSansBold"
  796. TeleButt1.Text = "Outside Prison"
  797. TeleButt1.TextColor3 = Color3.new(1, 1, 1)
  798. TeleButt1.TextSize = 18
  799. TeleButt1.Parent = TeleportPage
  800. TeleButt1.MouseButton1Down:connect(function()
  801. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(288.452, 69.999, 2206.731)
  802. end)
  803.  
  804. TeleButt2.Active = true
  805. TeleButt2.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  806. TeleButt2.Position = UDim2.new(0, 22, 0, 210)
  807. TeleButt2.Selectable = true
  808. TeleButt2.Size = UDim2.new(0, 135, 0, 35)
  809. TeleButt2.Font = "SourceSansBold"
  810. TeleButt2.Text = "Criminal Inside"
  811. TeleButt2.TextColor3 = Color3.new(1, 1, 1)
  812. TeleButt2.TextSize = 18
  813. TeleButt2.Parent = TeleportPage
  814. TeleButt2.MouseButton1Down:connect(function()
  815. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-943.704, 91.632, 2056.925)
  816. end)
  817.  
  818. TeleButt3.Active = true
  819. TeleButt3.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  820. TeleButt3.Position = UDim2.new(0, 22, 0, 250)
  821. TeleButt3.Selectable = true
  822. TeleButt3.Size = UDim2.new(0, 135, 0, 35)
  823. TeleButt3.Font = "SourceSansBold"
  824. TeleButt3.Text = "Criminal Outside"
  825. TeleButt3.TextColor3 = Color3.new(1, 1, 1)
  826. TeleButt3.TextSize = 18
  827. TeleButt3.Parent = TeleportPage
  828. TeleButt3.MouseButton1Down:connect(function()
  829. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-919.958, 95.327, 2138.189)
  830. end)
  831.  
  832. TeleButt4.Active = true
  833. TeleButt4.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  834. TeleButt4.Position = UDim2.new(0, 22, 0, 290)
  835. TeleButt4.Selectable = true
  836. TeleButt4.Size = UDim2.new(0, 135, 0, 35)
  837. TeleButt4.Font = "SourceSansBold"
  838. TeleButt4.Text = "Police Room"
  839. TeleButt4.TextColor3 = Color3.new(1, 1, 1)
  840. TeleButt4.TextSize = 18
  841. TeleButt4.Parent = TeleportPage
  842. TeleButt4.MouseButton1Down:connect(function()
  843. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(834.972, 99.989, 2275.318)
  844. end)
  845.  
  846. TeleButt5.Active = true
  847. TeleButt5.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  848. TeleButt5.Position = UDim2.new(0, 22, 0, 330)
  849. TeleButt5.Selectable = true
  850. TeleButt5.Size = UDim2.new(0, 135, 0, 35)
  851. TeleButt5.Font = "SourceSansBold"
  852. TeleButt5.Text = "Yard"
  853. TeleButt5.TextColor3 = Color3.new(1, 1, 1)
  854. TeleButt5.TextSize = 18
  855. TeleButt5.Parent = TeleportPage
  856. TeleButt5.MouseButton1Down:connect(function()
  857. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(779.092, 96.001, 2451.114)
  858. end)
  859.  
  860. TeleButt6.Active = true
  861. TeleButt6.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  862. TeleButt6.Position = UDim2.new(0, 22, 0, 370)
  863. TeleButt6.Selectable = true
  864. TeleButt6.Size = UDim2.new(0, 135, 0, 35)
  865. TeleButt6.Font = "SourceSansBold"
  866. TeleButt6.Text = "Cafeteria"
  867. TeleButt6.TextColor3 = Color3.new(1, 1, 1)
  868. TeleButt6.TextSize = 18
  869. TeleButt6.Parent = TeleportPage
  870. TeleButt6.MouseButton1Down:connect(function()
  871. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(930, 97.54, 2291)
  872. end)
  873.  
  874. TeleButt7.Active = true
  875. TeleButt7.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  876. TeleButt7.Position = UDim2.new(0, 22, 0, 410)
  877. TeleButt7.Selectable = true
  878. TeleButt7.Size = UDim2.new(0, 135, 0, 35)
  879. TeleButt7.Font = "SourceSansBold"
  880. TeleButt7.Text = "Cells"
  881. TeleButt7.TextColor3 = Color3.new(1, 1, 1)
  882. TeleButt7.TextSize = 18
  883. TeleButt7.Parent = TeleportPage
  884. TeleButt7.MouseButton1Down:connect(function()
  885. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(918, 97.73, 2447)
  886. end)
  887.  
  888. TeleButt8.Active = true
  889. TeleButt8.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  890. TeleButt8.Position = UDim2.new(0, 22, 0, 450)
  891. TeleButt8.Selectable = true
  892. TeleButt8.Size = UDim2.new(0, 135, 0, 35)
  893. TeleButt8.Font = "SourceSansBold"
  894. TeleButt8.Text = "Sewer Enterance"
  895. TeleButt8.TextColor3 = Color3.new(1, 1, 1)
  896. TeleButt8.TextSize = 18
  897. TeleButt8.Parent = TeleportPage
  898. TeleButt8.MouseButton1Down:connect(function()
  899. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.174, 76.406, 2426.199)
  900. end)
  901.  
  902. TeleButt9.Active = true
  903. TeleButt9.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  904. TeleButt9.Position = UDim2.new(0, 22, 0, 490)
  905. TeleButt9.Selectable = true
  906. TeleButt9.Size = UDim2.new(0, 135, 0, 35)
  907. TeleButt9.Font = "SourceSansBold"
  908. TeleButt9.Text = "Sewer Exit"
  909. TeleButt9.TextColor3 = Color3.new(1, 1, 1)
  910. TeleButt9.TextSize = 18
  911. TeleButt9.Parent = TeleportPage
  912. TeleButt9.MouseButton1Down:connect(function()
  913. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(916.506, 96.285, 2111.396)
  914. end)
  915.  
  916. TeleButt10.Active = true
  917. TeleButt10.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  918. TeleButt10.Position = UDim2.new(0, 22, 0, 530)
  919. TeleButt10.Selectable = true
  920. TeleButt10.Size = UDim2.new(0, 135, 0, 35)
  921. TeleButt10.Font = "SourceSansBold"
  922. TeleButt10.Text = "Secret Room"
  923. TeleButt10.TextColor3 = Color3.new(1, 1, 1)
  924. TeleButt10.TextSize = 18
  925. TeleButt10.Parent = TeleportPage
  926. TeleButt10.MouseButton1Down:connect(function()
  927. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(697, 97.492, 2364)
  928. end)
  929.  
  930. -- Kill Aura Page Contents
  931.  
  932. KillTut.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  933. KillTut.BackgroundTransparency = 1
  934. KillTut.Size = UDim2.new(0, 180, 0, 35)
  935. KillTut.Font = "SourceSansBold"
  936. KillTut.Text = "Tutorial"
  937. KillTut.TextColor3 = Color3.new(1, 1, 1)
  938. KillTut.TextSize = 28
  939. KillTut.Parent = KillAuraPage
  940.  
  941. KillTxtWall.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  942. KillTxtWall.BackgroundTransparency = 1
  943. KillTxtWall.Position = UDim2.new(0, 0, 0, 35)
  944. KillTxtWall.Size = UDim2.new(0, 180, 0, 115)
  945. KillTxtWall.Font = "SourceSansBold"
  946. KillTxtWall.Text = "When activated, everybody you walk close to will be killed. To turn this off, simply click the button again."
  947. KillTxtWall.TextColor3 = Color3.new(1, 1, 1)
  948. KillTxtWall.TextSize = 18
  949. KillTxtWall.TextWrapped = true
  950. KillTxtWall.Parent = KillTut
  951.  
  952. KillPageSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  953. KillPageSep.BorderSizePixel = 0
  954. KillPageSep.Position = UDim2.new(0, 15, 0, 155)
  955. KillPageSep.Size = UDim2.new(0, 150, 0, 1)
  956. KillPageSep.Parent = KillAuraPage
  957.  
  958. KillButt.Active = true
  959. KillButt.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  960. KillButt.Position = UDim2.new(0, 5, 0, 170)
  961. KillButt.Selectable = true
  962. KillButt.Size = UDim2.new(0, 170, 0, 50)
  963. KillButt.Font = "SourceSansBold"
  964. KillButt.Text = "NOT WORKING"
  965. KillButt.TextColor3 = Color3.new(1, 1, 1)
  966. KillButt.TextSize = 24
  967. KillButt.Parent = KillAuraPage
  968. KillButt.MouseButton1Down:connect(function()
  969. while wait(0.1) do
  970. for i, plr in pairs(game.Players:GetChildren()) do
  971. if plr.Name ~= game.Players.LocalPlayer.Name then
  972. for i = 1, 10 do
  973. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  974. end
  975. end
  976. end
  977. end
  978. end)
  979.  
  980. -- Car Teleport Page Contents
  981.  
  982. CarTut.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  983. CarTut.BackgroundTransparency = 1
  984. CarTut.Size = UDim2.new(0, 180, 0, 35)
  985. CarTut.Font = "SourceSansBold"
  986. CarTut.Text = "Tutorial"
  987. CarTut.TextColor3 = Color3.new(1, 1, 1)
  988. CarTut.TextSize = 28
  989. CarTut.Parent = CarTelePage
  990.  
  991. CarTxtWall.BackgroundColor3 = Color3.new(0.639216, 0.635294, 0.647059)
  992. CarTxtWall.BackgroundTransparency = 1
  993. CarTxtWall.Position = UDim2.new(0, 0, 0, 35)
  994. CarTxtWall.Size = UDim2.new(0, 180, 0, 85)
  995. CarTxtWall.Font = "SourceSansBold"
  996. CarTxtWall.Text = "Click on a car that you want to teleport to yourself. I'm pretty sure this is server-sided."
  997. CarTxtWall.TextColor3 = Color3.new(1, 1, 1)
  998. CarTxtWall.TextSize = 18
  999. CarTxtWall.TextWrapped = true
  1000. CarTxtWall.Parent = CarTut
  1001.  
  1002. CarPageSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  1003. CarPageSep.BorderSizePixel = 0
  1004. CarPageSep.Position = UDim2.new(0, 15, 0, 125)
  1005. CarPageSep.Size = UDim2.new(0, 150, 0, 1)
  1006. CarPageSep.Parent = CarTelePage
  1007.  
  1008. CarTeleButt1.Active = true
  1009. CarTeleButt1.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  1010. CarTeleButt1.Position = UDim2.new(0, 27, 0, 135)
  1011. CarTeleButt1.Selectable = true
  1012. CarTeleButt1.Size = UDim2.new(0, 125, 0, 35)
  1013. CarTeleButt1.Font = "SourceSansBold"
  1014. CarTeleButt1.Text = "Sedan Teleport"
  1015. CarTeleButt1.TextColor3 = Color3.new(1, 1, 1)
  1016. CarTeleButt1.TextSize = 18
  1017. CarTeleButt1.Parent = CarTelePage
  1018. CarTeleButt1.MouseButton1Down:connect(function()
  1019. local Cars = {"Sedan"}
  1020. for i, v in pairs(game.Workspace["CarContainer"]:GetChildren()) do
  1021. for j, k in pairs(Cars) do
  1022. if v.Name == k then
  1023. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  1024. wait(.1)
  1025. v.Parent = game.Workspace
  1026. end
  1027. end
  1028. end
  1029. end)
  1030.  
  1031. CarTeleButt2.Active = true
  1032. CarTeleButt2.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
  1033. CarTeleButt2.Position = UDim2.new(0, 27, 0, 180)
  1034. CarTeleButt2.Selectable = true
  1035. CarTeleButt2.Size = UDim2.new(0, 125, 0, 35)
  1036. CarTeleButt2.Font = "SourceSansBold"
  1037. CarTeleButt2.Text = "Squad Teleport"
  1038. CarTeleButt2.TextColor3 = Color3.new(1, 1, 1)
  1039. CarTeleButt2.TextSize = 18
  1040. CarTeleButt2.Parent = CarTelePage
  1041. CarTeleButt2.MouseButton1Down:connect(function()
  1042. local Cars = {"Squad"}
  1043. for i, v in pairs(game.Workspace["CarContainer"]:GetChildren()) do
  1044. for j, k in pairs(Cars) do
  1045. if v.Name == k then
  1046. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  1047. wait(.1)
  1048. v.Parent = game.Workspace
  1049. end
  1050. end
  1051. end
  1052. end)
Add Comment
Please, Sign In to add comment