howie9983

Redwood ALL ROUNDER GUI

Sep 21st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.80 KB | None | 0 0
  1. --Made by v3rm member psykek
  2.  
  3. --Video obviously from me.
  4.  
  5. --SCRIPT BELOW!
  6.  
  7. -- Objects
  8.  
  9. local ScreenGui = Instance.new("ScreenGui")
  10. local Topframe = Instance.new("Frame")
  11. local Mainframe = Instance.new("Frame")
  12. local InputBox = Instance.new("TextBox")
  13. local KillEnemies = Instance.new("TextButton")
  14. local TazeEnemies = Instance.new("TextButton")
  15. local GiveEveryItem = Instance.new("TextButton")
  16. local RemoveDoors = Instance.new("TextButton")
  17. local ChangeSpeed = Instance.new("TextButton")
  18. local ChangeJumpHeight = Instance.new("TextButton")
  19. local Goto = Instance.new("TextButton")
  20. local Teleports = Instance.new("TextButton")
  21. local EquipItem = Instance.new("TextButton")
  22. local Clip = Instance.new("TextButton")
  23. local Noclip = Instance.new("TextButton")
  24. local PrintItems = Instance.new("TextButton")
  25. local PrintWS = Instance.new("TextButton")
  26. local DeleteWspart = Instance.new("TextButton")
  27. local Creds = Instance.new("TextLabel")
  28. local Close = Instance.new("TextButton")
  29. local Minimize = Instance.new("TextButton")
  30. local Help = Instance.new("TextButton")
  31. local Creds_2 = Instance.new("TextLabel")
  32. local HelpFrame = Instance.new("Frame")
  33. local HelpInfo = Instance.new("TextLabel")
  34. local TeleportsFrame = Instance.new("Frame")
  35. local TeleportsScrollingFrame = Instance.new("ScrollingFrame")
  36. local CellsTP = Instance.new("TextButton")
  37. local VentsTP = Instance.new("TextButton")
  38. local HelipadTP = Instance.new("TextButton")
  39. local JailtopTP = Instance.new("TextButton")
  40. local CourtyardTP = Instance.new("TextButton")
  41. local LunchroomTP = Instance.new("TextButton")
  42. local KitchenTP = Instance.new("TextButton")
  43. local SecurityRoomTP = Instance.new("TextButton")
  44. local CakeTP = Instance.new("TextButton")
  45. local PrisonFrontTP = Instance.new("TextButton")
  46. local ATVTP = Instance.new("TextButton")
  47. local WatchTowerTP = Instance.new("TextButton")
  48. local WatchTower2TP = Instance.new("TextButton")
  49. local WaterfallTP = Instance.new("TextButton")
  50. local CarSpawnerTP = Instance.new("TextButton")
  51. local MercenaryShedTP = Instance.new("TextButton")
  52.  
  53. -- Properties
  54.  
  55. ScreenGui.Parent = game.CoreGui
  56.  
  57. Topframe.Name = "Topframe"
  58. Topframe.Parent = ScreenGui
  59. Topframe.BackgroundColor3 = Color3.new(0.105882, 0.105882, 0.105882)
  60. Topframe.BorderColor3 = Color3.new(0, 0, 0)
  61. Topframe.Position = UDim2.new(0.315838814, 0, 0.147286832, 0)
  62. Topframe.Size = UDim2.new(0, 253, 0, 14)
  63. Topframe.Active= true
  64. Topframe.Draggable = true
  65.  
  66. Mainframe.Name = "Mainframe"
  67. Mainframe.Parent = Topframe
  68. Mainframe.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  69. Mainframe.BorderColor3 = Color3.new(0, 0, 0)
  70. Mainframe.Position = UDim2.new(0, 0, 1, 0)
  71. Mainframe.Size = UDim2.new(0, 253, 0, 121)
  72.  
  73. InputBox.Name = "InputBox"
  74. InputBox.Parent = Mainframe
  75. InputBox.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  76. InputBox.BorderColor3 = Color3.new(0, 0, 0)
  77. InputBox.Position = UDim2.new(0.667984188, 0, 0.05785124, 0)
  78. InputBox.Size = UDim2.new(0, 76, 0, 17)
  79. InputBox.Font = Enum.Font.SourceSans
  80. InputBox.Text = "Input"
  81. InputBox.TextColor3 = Color3.new(0, 0, 0)
  82. InputBox.TextScaled = true
  83. InputBox.TextSize = 14
  84. InputBox.TextWrapped = true
  85.  
  86. KillEnemies.Name = "KillEnemies"
  87. KillEnemies.Parent = Mainframe
  88. KillEnemies.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  89. KillEnemies.BorderColor3 = Color3.new(0, 0, 0)
  90. KillEnemies.Position = UDim2.new(0.0269709229, 0, 0.05785124, 0)
  91. KillEnemies.Size = UDim2.new(0, 76, 0, 17)
  92. KillEnemies.Font = Enum.Font.SourceSans
  93. KillEnemies.Text = "Kill Enemies"
  94. KillEnemies.TextColor3 = Color3.new(0, 0, 0)
  95. KillEnemies.TextSize = 14
  96. KillEnemies.MouseButton1Click:connect(function()
  97. for _, v in pairs(game.Players:GetChildren()) do
  98. game.Workspace.resources.RemoteEvent:FireServer("dealDamage", v.Character.Humanoid, 100) --keep in mind friendly fire is off
  99. end
  100. end)
  101.  
  102.  
  103. TazeEnemies.Name = "TazeEnemies"
  104. TazeEnemies.Parent = Mainframe
  105. TazeEnemies.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  106. TazeEnemies.BorderColor3 = Color3.new(0, 0, 0)
  107. TazeEnemies.Position = UDim2.new(0.0269708633, 0, 0.247933939, 0)
  108. TazeEnemies.Size = UDim2.new(0, 76, 0, 17)
  109. TazeEnemies.Font = Enum.Font.SourceSans
  110. TazeEnemies.Text = "Taze Enemies"
  111. TazeEnemies.TextColor3 = Color3.new(0, 0, 0)
  112. TazeEnemies.TextSize = 14
  113. TazeEnemies.MouseButton1Click:connect(function()
  114. for _, v in pairs(game.Players:GetChildren()) do
  115. game.Workspace.resources.RemoteEvent:FireServer("tase", v) --keep in mind friendly fire is off
  116. end
  117. end)
  118.  
  119. GiveEveryItem.Name = "GiveEveryItem"
  120. GiveEveryItem.Parent = Mainframe
  121. GiveEveryItem.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  122. GiveEveryItem.BorderColor3 = Color3.new(0, 0, 0)
  123. GiveEveryItem.Position = UDim2.new(0.0269708633, 0, 0.429752022, 0)
  124. GiveEveryItem.Size = UDim2.new(0, 76, 0, 17)
  125. GiveEveryItem.Font = Enum.Font.SourceSans
  126. GiveEveryItem.Text = "Quick Items"
  127. GiveEveryItem.TextColor3 = Color3.new(0, 0, 0)
  128. GiveEveryItem.TextSize = 14
  129. GiveEveryItem.MouseButton1Click:connect(function()
  130. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M98B")
  131. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Revolver")
  132. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45")
  133. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Parachute")
  134. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "ACR")
  135. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M60")
  136. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "add more if u find")
  137. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Fake ID Card")
  138. end)
  139.  
  140. RemoveDoors.Name = "RemoveDoors"
  141. RemoveDoors.Parent = Mainframe
  142. RemoveDoors.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  143. RemoveDoors.BorderColor3 = Color3.new(0, 0, 0)
  144. RemoveDoors.Position = UDim2.new(0.34910512, 0, 0.0578511953, 0)
  145. RemoveDoors.Size = UDim2.new(0, 76, 0, 17)
  146. RemoveDoors.Font = Enum.Font.SourceSans
  147. RemoveDoors.Text = "Remove Doors"
  148. RemoveDoors.TextColor3 = Color3.new(0, 0, 0)
  149. RemoveDoors.TextSize = 14
  150. RemoveDoors.MouseButton1Click:connect(function()
  151. game.Workspace.AllDoors:Destroy()
  152. end)
  153.  
  154. ChangeSpeed.Name = "ChangeSpeed"
  155. ChangeSpeed.Parent = Mainframe
  156. ChangeSpeed.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  157. ChangeSpeed.BorderColor3 = Color3.new(0, 0, 0)
  158. ChangeSpeed.Position = UDim2.new(0.347128868, 0, 0.247933865, 0)
  159. ChangeSpeed.Size = UDim2.new(0, 76, 0, 17)
  160. ChangeSpeed.Font = Enum.Font.SourceSans
  161. ChangeSpeed.Text = "Walk Speed"
  162. ChangeSpeed.TextColor3 = Color3.new(0, 0, 0)
  163. ChangeSpeed.TextSize = 14
  164. ChangeSpeed.MouseButton1Click:connect(function()
  165. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (InputBox.Text)
  166. end)
  167.  
  168. ChangeJumpHeight.Name = "ChangeJumpHeight"
  169. ChangeJumpHeight.Parent = Mainframe
  170. ChangeJumpHeight.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  171. ChangeJumpHeight.BorderColor3 = Color3.new(0, 0, 0)
  172. ChangeJumpHeight.Position = UDim2.new(0.349722624, 0, 0.429752052, 0)
  173. ChangeJumpHeight.Size = UDim2.new(0, 76, 0, 17)
  174. ChangeJumpHeight.Font = Enum.Font.SourceSans
  175. ChangeJumpHeight.Text = "Jump Height"
  176. ChangeJumpHeight.TextColor3 = Color3.new(0, 0, 0)
  177. ChangeJumpHeight.TextSize = 14
  178. ChangeJumpHeight.MouseButton1Click:connect(function()
  179. game.Players.LocalPlayer.Character.Humanoid.JumpPower = (InputBox.Text)
  180. end)
  181.  
  182.  
  183. Goto.Name = "Goto"
  184. Goto.Parent = Mainframe
  185. Goto.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  186. Goto.BorderColor3 = Color3.new(0, 0, 0)
  187. Goto.Position = UDim2.new(0.347746134, 0, 0.619834721, 0)
  188. Goto.Size = UDim2.new(0, 76, 0, 17)
  189. Goto.Font = Enum.Font.SourceSans
  190. Goto.Text = "Tp to player"
  191. Goto.TextColor3 = Color3.new(0, 0, 0)
  192. Goto.TextSize = 14
  193. Goto.MouseButton1Click:Connect(function()
  194. getplr = function(plxr)
  195. for i, v in pairs(game.Players:GetPlayers()) do
  196. if string.find(v.Name, plxr) then
  197. return v
  198. elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  199. return v
  200. end
  201. end
  202. end
  203. local plr = getplr(InputBox.Text)
  204. game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  205. end)
  206.  
  207. Teleports.Name = "Teleports"
  208. Teleports.Parent = Mainframe
  209. Teleports.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  210. Teleports.BorderColor3 = Color3.new(0, 0, 0)
  211. Teleports.Position = UDim2.new(0.667904377, 0, 0.429752052, 0)
  212. Teleports.Size = UDim2.new(0, 76, 0, 17)
  213. Teleports.Font = Enum.Font.SourceSans
  214. Teleports.Text = "Teleports"
  215. Teleports.TextColor3 = Color3.new(0, 0, 0)
  216. Teleports.TextSize = 14
  217. Teleports.MouseButton1Click:Connect(function()
  218.  
  219. if TeleportsFrame.Visible == false then
  220. TeleportsFrame.Visible = true
  221. else
  222. TeleportsFrame.Visible = false
  223. end
  224. end)
  225.  
  226. EquipItem.Name = "EquipItem"
  227. EquipItem.Parent = Mainframe
  228. EquipItem.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  229. EquipItem.BorderColor3 = Color3.new(0, 0, 0)
  230. EquipItem.Position = UDim2.new(0.347746134, 0, 0.809917331, 0)
  231. EquipItem.Size = UDim2.new(0, 76, 0, 17)
  232. EquipItem.Font = Enum.Font.SourceSans
  233. EquipItem.Text = "Equip Item"
  234. EquipItem.TextColor3 = Color3.new(0, 0, 0)
  235. EquipItem.TextSize = 14
  236. EquipItem.MouseButton1Click:Connect(function()
  237. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", (InputBox.Text))
  238. end)
  239.  
  240. Clip.Name = "Clip"
  241. Clip.Parent = Mainframe
  242. Clip.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  243. Clip.BorderColor3 = Color3.new(0, 0, 0)
  244. Clip.Position = UDim2.new(0.027588129, 0, 0.809917331, 0)
  245. Clip.Size = UDim2.new(0, 76, 0, 17)
  246. Clip.Font = Enum.Font.SourceSans
  247. Clip.Text = "Clip"
  248. Clip.TextColor3 = Color3.new(0, 0, 0)
  249. Clip.TextSize = 14
  250. Clip.MouseButton1Click:Connect(function()
  251. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = true elseif v.ClassName == "Model" then v.Head.CanCollide = true end end) end end game:service("RunService").Stepped:wait() end
  252. end)
  253.  
  254. Noclip.Name = "Noclip"
  255. Noclip.Parent = Mainframe
  256. Noclip.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  257. Noclip.BorderColor3 = Color3.new(0, 0, 0)
  258. Noclip.Position = UDim2.new(0.0276706219, 0, 0.61983484, 0)
  259. Noclip.Size = UDim2.new(0, 76, 0, 17)
  260. Noclip.Font = Enum.Font.SourceSans
  261. Noclip.Text = "Noclip"
  262. Noclip.TextColor3 = Color3.new(0, 0, 0)
  263. Noclip.TextSize = 14
  264. Noclip.MouseButton1Click:Connect(function()
  265. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  266. end)
  267.  
  268. PrintItems.Name = "PrintItems"
  269. PrintItems.Parent = Mainframe
  270. PrintItems.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  271. PrintItems.BorderColor3 = Color3.new(0, 0, 0)
  272. PrintItems.Position = UDim2.new(0.667904377, 0, 0.619834661, 0)
  273. PrintItems.Size = UDim2.new(0, 76, 0, 17)
  274. PrintItems.Font = Enum.Font.SourceSans
  275. PrintItems.Text = "Print Items"
  276. PrintItems.TextColor3 = Color3.new(0, 0, 0)
  277. PrintItems.TextSize = 14
  278. PrintItems.MouseButton1Click:Connect(function()
  279. print("M1014")
  280. print("SPAS-12")
  281. print("Makrov")
  282. print("Dragunov")
  283. print("Taser")
  284. print("Ham Sandwich")
  285. print("Pancakes")
  286. print("Steak")
  287. print("Punch")
  288. print("Handcuffs")
  289. print("Shank")
  290. print("Hammer")
  291. print("Guitar")
  292. print("Fake ID Card")
  293. print("ACR")
  294. print("L86A2")
  295. print("M60")
  296. print("Beretta M9")
  297. print("UMP-45")
  298. print("AK47-U")
  299. print("Revolver")
  300. print("Minigun")
  301. print("M16")
  302. print("S&W 638")
  303. print("M14")
  304. print("AK47")
  305. print("M98B")
  306. end)
  307.  
  308. DeleteWspart.Name = "DeleteWspart"
  309. DeleteWspart.Parent = Mainframe
  310. DeleteWspart.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  311. DeleteWspart.BorderColor3 = Color3.new(0, 0, 0)
  312. DeleteWspart.Position = UDim2.new(0.667286992, 0, 0.247933865, 0)
  313. DeleteWspart.Size = UDim2.new(0, 76, 0, 17)
  314. DeleteWspart.Font = Enum.Font.SourceSans
  315. DeleteWspart.Text = "E To Fly"
  316. DeleteWspart.TextColor3 = Color3.new(0, 0, 0)
  317. DeleteWspart.TextSize = 14
  318. DeleteWspart.MouseButton1Click:Connect(function()
  319. repeat wait()
  320. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  321. local mouse = game.Players.LocalPlayer:GetMouse()
  322. repeat wait() until mouse
  323. local plr = game.Players.LocalPlayer
  324. local torso = plr.Character.Torso
  325. local flying = true
  326. local deb = true
  327. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  328. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  329. local maxspeed = 50
  330. local speed = 0
  331.  
  332. function Fly()
  333. local bg = Instance.new("BodyGyro", torso)
  334. bg.P = 9e4
  335. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  336. bg.cframe = torso.CFrame
  337. local bv = Instance.new("BodyVelocity", torso)
  338. bv.velocity = Vector3.new(0,0.1,0)
  339. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  340. repeat wait()
  341. plr.Character.Humanoid.PlatformStand = true
  342. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  343. speed = speed+.5+(speed/maxspeed)
  344. if speed > maxspeed then
  345. speed = maxspeed
  346. end
  347. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  348. speed = speed-1
  349. if speed < 0 then
  350. speed = 0
  351. end
  352. end
  353. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  354. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  355. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  356. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  357. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  358. else
  359. bv.velocity = Vector3.new(0,0.1,0)
  360. end
  361. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  362. until not flying
  363. ctrl = {f = 0, b = 0, l = 0, r = 0}
  364. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  365. speed = 0
  366. bg:Destroy()
  367. bv:Destroy()
  368. plr.Character.Humanoid.PlatformStand = false
  369. end
  370. mouse.KeyDown:connect(function(key)
  371. if key:lower() == "e" then
  372. if flying then flying = false
  373. else
  374. flying = true
  375. Fly()
  376. end
  377. elseif key:lower() == "w" then
  378. ctrl.f = 1
  379. elseif key:lower() == "s" then
  380. ctrl.b = -1
  381. elseif key:lower() == "a" then
  382. ctrl.l = -1
  383. elseif key:lower() == "d" then
  384. ctrl.r = 1
  385. end
  386. end)
  387. mouse.KeyUp:connect(function(key)
  388. if key:lower() == "w" then
  389. ctrl.f = 0
  390. elseif key:lower() == "s" then
  391. ctrl.b = 0
  392. elseif key:lower() == "a" then
  393. ctrl.l = 0
  394. elseif key:lower() == "d" then
  395. ctrl.r = 0
  396. end
  397. end)
  398. Fly()
  399. end)
  400.  
  401. Creds.Name = "Creds"
  402. Creds.Parent = Topframe
  403. Creds.BackgroundColor3 = Color3.new(0.105882, 0.105882, 0.105882)
  404. Creds.BorderColor3 = Color3.new(0, 0, 0)
  405. Creds.BorderSizePixel = 0
  406. Creds.Size = UDim2.new(0, 90, 0, 9)
  407. Creds.Font = Enum.Font.SourceSans
  408. Creds.Text = "Psykek#3180"
  409. Creds.TextColor3 = Color3.new(1, 0.670588, 0.0117647)
  410. Creds.TextSize = 14
  411.  
  412. Close.Name = "Close"
  413. Close.Parent = Topframe
  414. Close.BackgroundColor3 = Color3.new(0.105882, 0.105882, 0.105882)
  415. Close.BorderColor3 = Color3.new(0, 0, 0)
  416. Close.BorderSizePixel = 0
  417. Close.Position = UDim2.new(0.958144546, 0, -0.107142895, 0)
  418. Close.Size = UDim2.new(0, 11, 0, 12)
  419. Close.Font = Enum.Font.SourceSans
  420. Close.Text = "X"
  421. Close.TextColor3 = Color3.new(1, 1, 1)
  422. Close.TextSize = 14
  423. Close.MouseButton1Click:Connect(function()
  424.  
  425. if Topframe.Visible == false then
  426. Topframe.Visible = false
  427. else
  428. Topframe.Visible = false
  429. end
  430.  
  431. end)
  432.  
  433. Close.MouseButton1Click:Connect(function()
  434.  
  435. if TeleportsFrame.Visible == false then
  436. TeleportsFrame.Visible = false
  437. else
  438. TeleportsFrame.Visible = false
  439. end
  440.  
  441. end)
  442.  
  443. Minimize.Name = "Minimize"
  444. Minimize.Parent = Topframe
  445. Minimize.BackgroundColor3 = Color3.new(0.105882, 0.105882, 0.105882)
  446. Minimize.BorderColor3 = Color3.new(0, 0, 0)
  447. Minimize.BorderSizePixel = 0
  448. Minimize.Position = UDim2.new(0.924359024, 0, -0.107142895, 0)
  449. Minimize.Size = UDim2.new(0, 11, 0, 12)
  450. Minimize.Font = Enum.Font.SourceSans
  451. Minimize.Text = "-"
  452. Minimize.TextColor3 = Color3.new(1, 1, 1)
  453. Minimize.TextSize = 14
  454. Minimize.MouseButton1Click:Connect(function()
  455.  
  456. if Mainframe.Visible == false then
  457. Mainframe.Visible = true
  458. else
  459. Mainframe.Visible = false
  460. end
  461.  
  462. end)
  463.  
  464. Minimize.MouseButton1Click:Connect(function()
  465.  
  466. if TeleportsFrame.Visible == false then
  467. TeleportsFrame.Visible = false
  468. else
  469. TeleportsFrame.Visible = false
  470. end
  471.  
  472. end)
  473.  
  474. TeleportsFrame.Name = "TeleportsFrame"
  475. TeleportsFrame.Parent = ScreenGui
  476. TeleportsFrame.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  477. TeleportsFrame.BorderColor3 = Color3.new(0, 0, 0)
  478. TeleportsFrame.Position = UDim2.new(0.859418929, 0, 0.268410861, 0)
  479. TeleportsFrame.Size = UDim2.new(0, 150, 0, 239)
  480. TeleportsFrame.Active = true
  481. TeleportsFrame.Draggable = true
  482. TeleportsFrame.Visible = false
  483.  
  484. TeleportsScrollingFrame.Name = "TeleportsScrollingFrame"
  485. TeleportsScrollingFrame.Parent = TeleportsFrame
  486. TeleportsScrollingFrame.BackgroundColor3 = Color3.new(0.623529, 0.623529, 0.623529)
  487. TeleportsScrollingFrame.Position = UDim2.new(0.0399999991, 0, 0.0292887036, 0)
  488. TeleportsScrollingFrame.Size = UDim2.new(0, 137, 0, 224)
  489. TeleportsScrollingFrame.ScrollBarThickness = 1
  490.  
  491. CellsTP.Name = "CellsTP"
  492. CellsTP.Parent = TeleportsScrollingFrame
  493. CellsTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  494. CellsTP.BorderColor3 = Color3.new(0, 0, 0)
  495. CellsTP.Position = UDim2.new(0.0510948896, 0, 0.0105485236, 0)
  496. CellsTP.Size = UDim2.new(0, 122, 0, 18)
  497. CellsTP.Font = Enum.Font.SourceSans
  498. CellsTP.Text = "Cells"
  499. CellsTP.TextColor3 = Color3.new(0, 0, 0)
  500. CellsTP.TextSize = 14
  501. CellsTP.MouseButton1Click:Connect(function()
  502. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-2.1252234, 3.99408817, 38.6809654))
  503. end)
  504.  
  505. VentsTP.Name = "VentsTP"
  506. VentsTP.Parent = TeleportsScrollingFrame
  507. VentsTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  508. VentsTP.BorderColor3 = Color3.new(0, 0, 0)
  509. VentsTP.Position = UDim2.new(0.0510948896, 0, 0.0485232063, 0)
  510. VentsTP.Size = UDim2.new(0, 122, 0, 18)
  511. VentsTP.Font = Enum.Font.SourceSans
  512. VentsTP.Text = "Vents"
  513. VentsTP.TextColor3 = Color3.new(0, 0, 0)
  514. VentsTP.TextSize = 14
  515. VentsTP.MouseButton1Click:Connect(function()
  516. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(45.8967972, 17, 88.6420212))
  517. end)
  518.  
  519. HelipadTP.Name = "HelipadTP"
  520. HelipadTP.Parent = TeleportsScrollingFrame
  521. HelipadTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  522. HelipadTP.BorderColor3 = Color3.new(0, 0, 0)
  523. HelipadTP.Position = UDim2.new(0.0510948896, 0, 0.086497888, 0)
  524. HelipadTP.Size = UDim2.new(0, 122, 0, 18)
  525. HelipadTP.Font = Enum.Font.SourceSans
  526. HelipadTP.Text = "Helipad"
  527. HelipadTP.TextColor3 = Color3.new(0, 0, 0)
  528. HelipadTP.TextSize = 14
  529. HelipadTP.MouseButton1Click:Connect(function()
  530. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(263.467377, 6.9100132, 113.983261))
  531. end)
  532.  
  533. JailtopTP.Name = "JailtopTP"
  534. JailtopTP.Parent = TeleportsScrollingFrame
  535. JailtopTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  536. JailtopTP.BorderColor3 = Color3.new(0, 0, 0)
  537. JailtopTP.Position = UDim2.new(0.0474452525, 0, 0.124472573, 0)
  538. JailtopTP.Size = UDim2.new(0, 122, 0, 18)
  539. JailtopTP.Font = Enum.Font.SourceSans
  540. JailtopTP.Text = "Jailtop"
  541. JailtopTP.TextColor3 = Color3.new(0, 0, 0)
  542. JailtopTP.TextSize = 14
  543. JailtopTP.MouseButton1Click:Connect(function()
  544. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(105.896927, 34, 12.4054184))
  545. end)
  546.  
  547. CourtyardTP.Name = "CourtyardTP"
  548. CourtyardTP.Parent = TeleportsScrollingFrame
  549. CourtyardTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  550. CourtyardTP.BorderColor3 = Color3.new(0, 0, 0)
  551. CourtyardTP.Position = UDim2.new(0.0474452525, 0, 0.162447259, 0)
  552. CourtyardTP.Size = UDim2.new(0, 122, 0, 18)
  553. CourtyardTP.Font = Enum.Font.SourceSans
  554. CourtyardTP.Text = "Courtyard"
  555. CourtyardTP.TextColor3 = Color3.new(0, 0, 0)
  556. CourtyardTP.TextSize = 14
  557. CourtyardTP.MouseButton1Click:Connect(function()
  558. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(243.07106, 2.3200254, -80.9014206))
  559. end)
  560.  
  561. LunchroomTP.Name = "LunchroomTP"
  562. LunchroomTP.Parent = TeleportsScrollingFrame
  563. LunchroomTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  564. LunchroomTP.BorderColor3 = Color3.new(0, 0, 0)
  565. LunchroomTP.Position = UDim2.new(0.0474452525, 0, 0.200421944, 0)
  566. LunchroomTP.Size = UDim2.new(0, 122, 0, 18)
  567. LunchroomTP.Font = Enum.Font.SourceSans
  568. LunchroomTP.Text = "Lunchroom"
  569. LunchroomTP.TextColor3 = Color3.new(0, 0, 0)
  570. LunchroomTP.TextSize = 14
  571. LunchroomTP.MouseButton1Click:Connect(function()
  572. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4.08053064, 4, -144.190895))
  573. end)
  574.  
  575. KitchenTP.Name = "KitchenTP"
  576. KitchenTP.Parent = TeleportsScrollingFrame
  577. KitchenTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  578. KitchenTP.BorderColor3 = Color3.new(0, 0, 0)
  579. KitchenTP.Position = UDim2.new(0.0510948859, 0, 0.23839663, 0)
  580. KitchenTP.Size = UDim2.new(0, 122, 0, 18)
  581. KitchenTP.Font = Enum.Font.SourceSans
  582. KitchenTP.Text = "Kitchen"
  583. KitchenTP.TextColor3 = Color3.new(0, 0, 0)
  584. KitchenTP.TextSize = 14
  585. KitchenTP.MouseButton1Click:Connect(function()
  586. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-49.4526825, 4, -122.646904))
  587. end)
  588.  
  589. SecurityRoomTP.Name = "SecurityRoomTP"
  590. SecurityRoomTP.Parent = TeleportsScrollingFrame
  591. SecurityRoomTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  592. SecurityRoomTP.BorderColor3 = Color3.new(0, 0, 0)
  593. SecurityRoomTP.Position = UDim2.new(0.0510948859, 0, 0.274261594, 0)
  594. SecurityRoomTP.Size = UDim2.new(0, 122, 0, 18)
  595. SecurityRoomTP.Font = Enum.Font.SourceSans
  596. SecurityRoomTP.Text = "Security Room"
  597. SecurityRoomTP.TextColor3 = Color3.new(0, 0, 0)
  598. SecurityRoomTP.TextSize = 14
  599. SecurityRoomTP.MouseButton1Click:Connect(function()
  600. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(66.4363861, 4, 4.59404564))
  601. end)
  602.  
  603. CakeTP.Name = "CakeTP"
  604. CakeTP.Parent = TeleportsScrollingFrame
  605. CakeTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  606. CakeTP.BorderColor3 = Color3.new(0, 0, 0)
  607. CakeTP.Position = UDim2.new(0.0510948859, 0, 0.310126573, 0)
  608. CakeTP.Size = UDim2.new(0, 122, 0, 18)
  609. CakeTP.Font = Enum.Font.SourceSans
  610. CakeTP.Text = "Cake"
  611. CakeTP.TextColor3 = Color3.new(0, 0, 0)
  612. CakeTP.TextSize = 14
  613. CakeTP.MouseButton1Click:Connect(function()
  614. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(108.500664, 4, -27.2045383))
  615. end)
  616.  
  617. PrisonFrontTP.Name = "PrisonFrontTP"
  618. PrisonFrontTP.Parent = TeleportsScrollingFrame
  619. PrisonFrontTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  620. PrisonFrontTP.BorderColor3 = Color3.new(0, 0, 0)
  621. PrisonFrontTP.Position = UDim2.new(0.0474452488, 0, 0.348101258, 0)
  622. PrisonFrontTP.Size = UDim2.new(0, 122, 0, 18)
  623. PrisonFrontTP.Font = Enum.Font.SourceSans
  624. PrisonFrontTP.Text = "Prison Front"
  625. PrisonFrontTP.TextColor3 = Color3.new(0, 0, 0)
  626. PrisonFrontTP.TextSize = 14
  627. PrisonFrontTP.MouseButton1Click:Connect(function()
  628. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(150.264099, 4, -230.023178))
  629. end)
  630.  
  631. ATVTP.Name = "ATVTP"
  632. ATVTP.Parent = TeleportsScrollingFrame
  633. ATVTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  634. ATVTP.BorderColor3 = Color3.new(0, 0, 0)
  635. ATVTP.Position = UDim2.new(0.0474452488, 0, 0.386075944, 0)
  636. ATVTP.Size = UDim2.new(0, 122, 0, 18)
  637. ATVTP.Font = Enum.Font.SourceSans
  638. ATVTP.Text = "ATVs"
  639. ATVTP.TextColor3 = Color3.new(0, 0, 0)
  640. ATVTP.TextSize = 14
  641. ATVTP.MouseButton1Click:Connect(function()
  642. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-2.77235317, 5.5, -279.359253))
  643. end)
  644.  
  645. WatchTowerTP.Name = "WatchTowerTP"
  646. WatchTowerTP.Parent = TeleportsScrollingFrame
  647. WatchTowerTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  648. WatchTowerTP.BorderColor3 = Color3.new(0, 0, 0)
  649. WatchTowerTP.Position = UDim2.new(0.0510948822, 0, 0.424050629, 0)
  650. WatchTowerTP.Size = UDim2.new(0, 122, 0, 18)
  651. WatchTowerTP.Font = Enum.Font.SourceSans
  652. WatchTowerTP.Text = "Watch Tower"
  653. WatchTowerTP.TextColor3 = Color3.new(0, 0, 0)
  654. WatchTowerTP.TextSize = 14
  655. WatchTowerTP.MouseButton1Click:Connect(function()
  656. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(178.239044, 44.9900742, -211.372543))
  657. end)
  658.  
  659. WatchTower2TP.Name = "WatchTower2TP"
  660. WatchTower2TP.Parent = TeleportsScrollingFrame
  661. WatchTower2TP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  662. WatchTower2TP.BorderColor3 = Color3.new(0, 0, 0)
  663. WatchTower2TP.Position = UDim2.new(0.0474452451, 0, 0.462025315, 0)
  664. WatchTower2TP.Size = UDim2.new(0, 122, 0, 18)
  665. WatchTower2TP.Font = Enum.Font.SourceSans
  666. WatchTower2TP.Text = "Watch Tower 2"
  667. WatchTower2TP.TextColor3 = Color3.new(0, 0, 0)
  668. WatchTower2TP.TextSize = 14
  669. WatchTower2TP.MouseButton1Click:Connect(function()
  670. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(121.033882, 25.9895439, -325.773987))
  671. end)
  672.  
  673. WaterfallTP.Name = "WaterfallTP"
  674. WaterfallTP.Parent = TeleportsScrollingFrame
  675. WaterfallTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  676. WaterfallTP.BorderColor3 = Color3.new(0, 0, 0)
  677. WaterfallTP.Position = UDim2.new(0.0474452451, 0, 0.5, 0)
  678. WaterfallTP.Size = UDim2.new(0, 122, 0, 18)
  679. WaterfallTP.Font = Enum.Font.SourceSans
  680. WaterfallTP.Text = "Waterfall"
  681. WaterfallTP.TextColor3 = Color3.new(0, 0, 0)
  682. WaterfallTP.TextSize = 14
  683. WaterfallTP.MouseButton1Click:Connect(function()
  684. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(526.5802, 112.403442, -243.040665))
  685. end)
  686.  
  687. CarSpawnerTP.Name = "CarSpawnerTP"
  688. CarSpawnerTP.Parent = TeleportsScrollingFrame
  689. CarSpawnerTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  690. CarSpawnerTP.BorderColor3 = Color3.new(0, 0, 0)
  691. CarSpawnerTP.Position = UDim2.new(0.0474452451, 0, 0.537974656, 0)
  692. CarSpawnerTP.Size = UDim2.new(0, 122, 0, 18)
  693. CarSpawnerTP.Font = Enum.Font.SourceSans
  694. CarSpawnerTP.Text = "Car Spawn"
  695. CarSpawnerTP.TextColor3 = Color3.new(0, 0, 0)
  696. CarSpawnerTP.TextSize = 14
  697. CarSpawnerTP.MouseButton1Click:Connect(function()
  698. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-320.428406, -23.989994, -808.608337))
  699. end)
  700.  
  701. MercenaryShedTP.Name = "MercenaryShedTP"
  702. MercenaryShedTP.Parent = TeleportsScrollingFrame
  703. MercenaryShedTP.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
  704. MercenaryShedTP.BorderColor3 = Color3.new(0, 0, 0)
  705. MercenaryShedTP.Position = UDim2.new(0.0474452451, 0, 0.575949311, 0)
  706. MercenaryShedTP.Size = UDim2.new(0, 122, 0, 18)
  707. MercenaryShedTP.Font = Enum.Font.SourceSans
  708. MercenaryShedTP.Text = "Mercenary Shed"
  709. MercenaryShedTP.TextColor3 = Color3.new(0, 0, 0)
  710. MercenaryShedTP.TextSize = 14
  711. MercenaryShedTP.MouseButton1Click:Connect(function()
  712. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-618.375488, -24.7882366, -333.008667))
  713. end)
Add Comment
Please, Sign In to add comment