Advertisement
Zxzxk

Prisonlife Roblox Script

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