Advertisement
Phoenix_Jiwon0001

Mad Lads [ Mad City ]

Nov 20th, 2021
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 26.38 KB | None | 0 0
  1. --Credits to 지원_JJ#9514
  2.  
  3.  
  4.  
  5.  
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local MainTab = Instance.new("Frame")
  9. local Header = Instance.new("TextLabel")
  10. local Credits = Instance.new("TextLabel")
  11. local Fly = Instance.new("TextButton")
  12. local Noclip = Instance.new("TextButton")
  13. local AutoXPOff = Instance.new("TextButton")
  14. local AutoRob = Instance.new("TextButton")
  15. local AutoArrest = Instance.new("TextButton")
  16. local Teleports = Instance.new("TextButton")
  17. local Guns = Instance.new("TextButton")
  18. local AutoXPOn = Instance.new("TextButton")
  19. local SetSpeed = Instance.new("TextButton")
  20. local SetGravity = Instance.new("TextButton")
  21. local Number = Instance.new("TextBox")
  22. local ExitMain = Instance.new("TextButton")
  23. local TeleportTab = Instance.new("Frame")
  24. local Header_2 = Instance.new("TextLabel")
  25. local ExitTeleports = Instance.new("TextButton")
  26. local Garage = Instance.new("TextButton")
  27. local Base = Instance.new("TextButton")
  28. local Camaro = Instance.new("TextButton")
  29. local Bank = Instance.new("TextButton")
  30. local Jewelry = Instance.new("TextButton")
  31. local GunsTab = Instance.new("Frame")
  32. local Header_3 = Instance.new("TextLabel")
  33. local ExitTeleports_2 = Instance.new("TextButton")
  34. local Shotgun = Instance.new("TextButton")
  35. local TEC9 = Instance.new("TextButton")
  36. local AK47 = Instance.new("TextButton")
  37. local Dealge = Instance.new("TextButton")
  38. local RPG = Instance.new("TextButton")
  39.  
  40. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  41. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  42.  
  43. MainTab.Name = "Main Tab"
  44. MainTab.Parent = ScreenGui
  45. MainTab.Active = true
  46. MainTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  47. MainTab.BackgroundTransparency = 0.25
  48. MainTab.BorderColor3 = Color3.new(1, 1, 1)
  49. MainTab.BorderSizePixel = 2
  50. MainTab.ClipsDescendants = true
  51. MainTab.Position = UDim2.new(0.437924653, 0, 0.217444718, 0)
  52. MainTab.Selectable = true
  53. MainTab.Size = UDim2.new(0, 282, 0, 263)
  54. MainTab.Draggable = true
  55.  
  56. Header.Name = "Header"
  57. Header.Parent = MainTab
  58. Header.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  59. Header.BorderColor3 = Color3.new(1, 1, 1)
  60. Header.BorderSizePixel = 2
  61. Header.Size = UDim2.new(0, 282, 0, 20)
  62. Header.Font = Enum.Font.Cartoon
  63. Header.Text = "Mad-Lads v3"
  64. Header.TextColor3 = Color3.new(1, 1, 1)
  65. Header.TextSize = 22
  66.  
  67. Credits.Name = "Credits"
  68. Credits.Parent = MainTab
  69. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  70. Credits.BorderColor3 = Color3.new(1, 1, 1)
  71. Credits.BorderSizePixel = 2
  72. Credits.Position = UDim2.new(0, 0, 0.932270944, 0)
  73. Credits.Size = UDim2.new(0, 282, 0, 17)
  74. Credits.Font = Enum.Font.Cartoon
  75. Credits.Text = "Credits to Bean07 for the best XP script!"
  76. Credits.TextColor3 = Color3.new(1, 1, 1)
  77. Credits.TextSize = 17
  78.  
  79. Fly.Name = "Fly"
  80. Fly.Parent = MainTab
  81. Fly.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  82. Fly.BackgroundTransparency = 0.25
  83. Fly.BorderColor3 = Color3.new(1, 1, 1)
  84. Fly.BorderSizePixel = 2
  85. Fly.Position = UDim2.new(0.0396602079, 0, 0.135094613, 0)
  86. Fly.Size = UDim2.new(0, 72, 0, 30)
  87. Fly.Font = Enum.Font.Cartoon
  88. Fly.Text = "Fly [F]"
  89. Fly.TextColor3 = Color3.new(1, 1, 1)
  90. Fly.TextSize = 14
  91. Fly.MouseButton1Click:connect (function()
  92.         repeat wait()
  93.    
  94.     until game:GetService"Players".LocalPlayer and game:GetService"Players".LocalPlayer.Character and game:GetService"Players".LocalPlayer.Character:findFirstChild("UpperTorso") and game:GetService"Players".LocalPlayer.Character:findFirstChild("Humanoid")
  95. local mouse = game:GetService"Players".LocalPlayer:GetMouse()
  96. repeat wait() until mouse
  97.     local plr   = game:GetService"Players".LocalPlayer
  98.     local torso = plr.Character.UpperTorso
  99. local flying   = true
  100. local deb      = true
  101. local ctrl     = {f = 0, b = 0, l = 0, r = 0}
  102. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  103. local maxspeed = 100
  104. local speed    = 0
  105.  
  106. function Fly()
  107. local bg = Instance.new("BodyGyro", torso)
  108. bg.P = 9e4
  109. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  110. bg.cframe = torso.CFrame
  111. local bv = Instance.new("BodyVelocity", torso)
  112. bv.velocity = Vector3.new(0,0.1,0)
  113. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  114. repeat wait()
  115.     plr.Character.Humanoid.PlatformStand = true
  116. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  117. speed = speed+.5+(speed/maxspeed)
  118. if speed > maxspeed then
  119. speed = maxspeed
  120. end
  121. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  122. speed = speed-1
  123. if speed < 0 then
  124. speed = 0
  125. end
  126. end
  127. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  128. bv.velocity = ((game:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
  129. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  130. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  131. bv.velocity = ((game:GetService("Workspace").CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game:GetService("Workspace").CurrentCamera.CoordinateFrame.p))*speed
  132. else
  133. bv.velocity = Vector3.new(0,0.1,0)
  134. end
  135. bg.cframe = game:GetService("Workspace").CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  136. until not flying
  137. ctrl = {f = 0, b = 0, l = 0, r = 0}
  138. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  139. speed = 0
  140. bg:Destroy()
  141. bv:Destroy()
  142. plr.Character.Humanoid.PlatformStand = false
  143. end
  144. mouse.KeyDown:connect(function(key)
  145. if key:lower() == "f" then
  146. if flying then flying = false
  147. else
  148. flying = true
  149. Fly()
  150. end
  151. elseif key:lower() == "w" then
  152. ctrl.f = 1
  153. elseif key:lower() == "s" then
  154. ctrl.b = -1
  155. elseif key:lower() == "a" then
  156. ctrl.l = -1
  157. elseif key:lower() == "d" then
  158. ctrl.r = 1
  159. end
  160. end)
  161. mouse.KeyUp:connect(function(key)
  162. if key:lower() == "w" then
  163. ctrl.f = 0
  164. elseif key:lower() == "s" then
  165. ctrl.b = 0
  166. elseif key:lower() == "a" then
  167. ctrl.l = 0
  168. elseif key:lower() == "d" then
  169. ctrl.r = 0
  170. end
  171. end)
  172. Fly()
  173. end)
  174.  
  175. Noclip.Name = "Noclip"
  176. Noclip.Parent = MainTab
  177. Noclip.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  178. Noclip.BackgroundTransparency = 0.25
  179. Noclip.BorderColor3 = Color3.new(1, 1, 1)
  180. Noclip.BorderSizePixel = 2
  181. Noclip.Position = UDim2.new(0.0396602079, 0, 0.290291309, 0)
  182. Noclip.Size = UDim2.new(0, 72, 0, 30)
  183. Noclip.Font = Enum.Font.Cartoon
  184. Noclip.Text = "Noclip [N]"
  185. Noclip.TextColor3 = Color3.new(1, 1, 1)
  186. Noclip.TextSize = 14
  187. Noclip.MouseButton1Click:connect (function()
  188. local Player = game.Players.LocalPlayer
  189. local Mouse  = Player:GetMouse();
  190.  
  191. Mouse.KeyDown:connect(function(key)
  192. if key == "n" then
  193.     local plr = game:GetService("Players")local Z=game:GetService("Players").LocalPlayer;function Torso(plr)if plr.Character then if plr.Character:FindFirstChild('UpperTorso')then return plr.Character.UpperTorso else return plr.Character.Torso end end end;if Clip==true then Clip=false;return end;Clip=true;game:GetService("RunService").Stepped:connect(function()Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightFoot.Touched:connect(function(_)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftFoot.Touched:connect(function(a0)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightLowerLeg.Touched:connect(function(a1)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftLowerLeg.Touched:connect(function(a2)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.RightHand.Touched:connect(function(a3)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.LeftHand.Touched:connect(function(a4)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.Head.Touched:connect(function(a5)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)Z.Character.Torso.Touched:connect(function(a6)Torso(Z).CanCollide=not Clip;Z.Character.Head.CanCollide=not Clip;Z.Character.HumanoidRootPart.CanCollide=not Clip;if Z.Character.UpperTorso then Z.Character.LowerTorso.CanCollide=not Clip end end)
  194. end
  195. end)
  196. end)
  197.  
  198. AutoXPOff.Name = "AutoXP [Off]"
  199. AutoXPOff.Parent = MainTab
  200. AutoXPOff.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  201. AutoXPOff.BackgroundTransparency = 0.25
  202. AutoXPOff.BorderColor3 = Color3.new(1, 1, 1)
  203. AutoXPOff.BorderSizePixel = 2
  204. AutoXPOff.Position = UDim2.new(0.36888656, 0, 0.441685736, 0)
  205. AutoXPOff.Size = UDim2.new(0, 72, 0, 30)
  206. AutoXPOff.Font = Enum.Font.Cartoon
  207. AutoXPOff.Text = "AutoXP [Off]"
  208. AutoXPOff.TextColor3 = Color3.new(1, 1, 1)
  209. AutoXPOff.TextSize = 14
  210. AutoXPOff.MouseButton1Click:connect (function()
  211.     AutoXPOff.Visible = false
  212.     AutoXPOn.Visible = true
  213.     _G.YEET = true
  214. while wait() do
  215.     if _G.YEET then
  216.         for _, v in next, game.Players:GetPlayers() do
  217.             if v.Team.Name == "Criminals" then
  218.                 game.Players.LocalPlayer.Character.Humanoid:UnequipTools()
  219.                 if not workspace.ObjectSelection:FindFirstChild(v.Name.."'s Vehicle") then
  220.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  221.                 game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack:FindFirstChild("Tazer"))
  222.                 game.ReplicatedStorage.Event:FireServer("TAZ", v.Character.HumanoidRootPart)
  223.             end
  224.             end
  225.         end
  226.     end
  227. end
  228. _G.YEET = true
  229. end)
  230.  
  231. AutoRob.Name = "AutoRob"
  232. AutoRob.Parent = MainTab
  233. AutoRob.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  234. AutoRob.BackgroundTransparency = 0.25
  235. AutoRob.BorderColor3 = Color3.new(1, 1, 1)
  236. AutoRob.BorderSizePixel = 2
  237. AutoRob.Position = UDim2.new(0.36888656, 0, 0.135094583, 0)
  238. AutoRob.Size = UDim2.new(0, 72, 0, 30)
  239. AutoRob.Font = Enum.Font.Cartoon
  240. AutoRob.Text = "AutoRob"
  241. AutoRob.TextColor3 = Color3.new(1, 1, 1)
  242. AutoRob.TextSize = 14
  243. AutoRob.MouseButton1Click:connect (function()
  244.         while true do
  245. local w = game:GetService("Workspace")
  246.     local ObjectSelection = w:WaitForChild("ObjectSelection")
  247.     for _,v in pairs (ObjectSelection:GetChildren()) do
  248.         if v.Name == "CashRegister" then
  249.             if v:FindFirstChild("SmashCash") then
  250.                 local Event = v.SmashCash.SmashCash.Event
  251.                 Event:FireServer()
  252.             end
  253.         end
  254.     if v.Name == "ATM" then
  255.         if v:FindFirstChild("ATM") then
  256.             local Event = v.ATM.ATM.Event
  257.             Event:FireServer()
  258.         end
  259.     end
  260.     if v.Name == "Cash" then
  261.         if v:FindFirstChild("Cash") then
  262.             local Event = v.Cash.Cash.Event
  263.             Event:FireServer()
  264.         end
  265.     end
  266.     if v.Name == "DiamondBox" then
  267.         if v:FindFirstChild("SmashCash") then
  268.             local Event = v.SmashCash.SmashCash.Event
  269.             Event:FireServer()
  270.         end
  271.     end
  272.     if v.Name == "Safe" then
  273.         if v:FindFirstChild("SmashCash") then
  274.             local Event = v.SmashCash.SmashCash.Event
  275.             Event:FireServer()
  276.         end
  277.     end
  278.     if v.Name == "SlotMachine" then
  279.         if v:FindFirstChild("SlotMachine") then
  280.             local Event = v.SlotMachine.SlotMachine.Event
  281.             Event:FireServer()
  282.         end
  283.     end
  284.     end
  285. Wait(30)
  286. end
  287.  
  288. end)
  289.  
  290. AutoArrest.Name = "AutoArrest"
  291. AutoArrest.Parent = MainTab
  292. AutoArrest.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  293. AutoArrest.BackgroundTransparency = 0.25
  294. AutoArrest.BorderColor3 = Color3.new(1, 1, 1)
  295. AutoArrest.BorderSizePixel = 2
  296. AutoArrest.Position = UDim2.new(0.36888653, 0, 0.290291309, 0)
  297. AutoArrest.Size = UDim2.new(0, 72, 0, 30)
  298. AutoArrest.Font = Enum.Font.Cartoon
  299. AutoArrest.Text = "AutoArrest"
  300. AutoArrest.TextColor3 = Color3.new(1, 1, 1)
  301. AutoArrest.TextSize = 14
  302. AutoArrest.MouseButton1Click:connect(function()
  303.     while wait() do
  304.         game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  305.         game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
  306.         for i,v in pairs(game.Players:GetChildren()) do
  307.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  308.             wait(0.4)
  309.             game.ReplicatedStorage.Event:FireServer("Arrest", v)
  310.             wait(.2)
  311.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
  312.         end
  313.             wait(0.25)
  314.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
  315.             game.Players.LocalPlayer.Character:BreakJoints()
  316.             wait(20)
  317.     end
  318. end)
  319.  
  320. Teleports.Name = "Teleports"
  321. Teleports.Parent = MainTab
  322. Teleports.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  323. Teleports.BackgroundTransparency = 0.25
  324. Teleports.BorderColor3 = Color3.new(1, 1, 1)
  325. Teleports.BorderSizePixel = 2
  326. Teleports.Position = UDim2.new(0.692305267, 0, 0.135094613, 0)
  327. Teleports.Size = UDim2.new(0, 72, 0, 30)
  328. Teleports.Font = Enum.Font.Cartoon
  329. Teleports.Text = "Teleports"
  330. Teleports.TextColor3 = Color3.new(1, 1, 1)
  331. Teleports.TextSize = 14
  332. Teleports.MouseButton1Click:connect (function()
  333.     TeleportTab.Visible = true
  334. end)
  335.  
  336. Guns.Name = "Guns"
  337. Guns.Parent = MainTab
  338. Guns.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  339. Guns.BackgroundTransparency = 0.25
  340. Guns.BorderColor3 = Color3.new(1, 1, 1)
  341. Guns.BorderSizePixel = 2
  342. Guns.Position = UDim2.new(0.692305267, 0, 0.290291309, 0)
  343. Guns.Size = UDim2.new(0, 72, 0, 30)
  344. Guns.Font = Enum.Font.Cartoon
  345. Guns.Text = "Guns"
  346. Guns.TextColor3 = Color3.new(1, 1, 1)
  347. Guns.TextSize = 14
  348. Guns.MouseButton1Click:connect (function()
  349.     GunsTab.Visible = true
  350. end)
  351.  
  352. AutoXPOn.Name = "AutoXP [On]"
  353. AutoXPOn.Parent = MainTab
  354. AutoXPOn.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  355. AutoXPOn.BackgroundTransparency = 0.25
  356. AutoXPOn.BorderColor3 = Color3.new(1, 1, 1)
  357. AutoXPOn.BorderSizePixel = 2
  358. AutoXPOn.Position = UDim2.new(0.36888653, 0, 0.441685677, 0)
  359. AutoXPOn.Size = UDim2.new(0, 72, 0, 30)
  360. AutoXPOn.Visible = false
  361. AutoXPOn.Font = Enum.Font.Cartoon
  362. AutoXPOn.Text = "AutoXP [On]"
  363. AutoXPOn.TextColor3 = Color3.new(1, 1, 1)
  364. AutoXPOn.TextSize = 14
  365. AutoXPOn.MouseButton1Click:connect (function()
  366.     AutoXPOn.Visible = false
  367.     _G.YEET = false
  368.     AutoXPOff.Visible = true
  369. end)
  370.  
  371. SetSpeed.Name = "Set Speed"
  372. SetSpeed.Parent = MainTab
  373. SetSpeed.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  374. SetSpeed.BackgroundTransparency = 0.25
  375. SetSpeed.BorderColor3 = Color3.new(1, 1, 1)
  376. SetSpeed.BorderSizePixel = 2
  377. SetSpeed.Position = UDim2.new(0.224057466, 0, 0.664066195, 0)
  378. SetSpeed.Size = UDim2.new(0, 73, 0, 30)
  379. SetSpeed.Font = Enum.Font.Cartoon
  380. SetSpeed.Text = "Set Speed"
  381. SetSpeed.TextColor3 = Color3.new(1, 1, 1)
  382. SetSpeed.TextSize = 14
  383. SetSpeed.MouseButton1Click:connect (function()
  384.           plr = game.Players.LocalPlayer
  385.           plr.Character.Humanoid.WalkSpeed = Number.Text
  386. end)
  387.  
  388. SetGravity.Name = "Set Gravity"
  389. SetGravity.Parent = MainTab
  390. SetGravity.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  391. SetGravity.BackgroundTransparency = 0.25
  392. SetGravity.BorderColor3 = Color3.new(1, 1, 1)
  393. SetGravity.BorderSizePixel = 2
  394. SetGravity.Position = UDim2.new(0.52543211, 0, 0.664066195, 0)
  395. SetGravity.Size = UDim2.new(0, 72, 0, 30)
  396. SetGravity.Font = Enum.Font.Cartoon
  397. SetGravity.Text = "Set Gravity"
  398. SetGravity.TextColor3 = Color3.new(1, 1, 1)
  399. SetGravity.TextSize = 14
  400. SetGravity.MouseButton1Click:connect (function()
  401.     game.Workspace.Gravity = Number.Text
  402.  
  403. end)
  404.  
  405. Number.Name = "Number"
  406. Number.Parent = MainTab
  407. Number.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  408. Number.BackgroundTransparency = 0.25
  409. Number.BorderColor3 = Color3.new(1, 1, 1)
  410. Number.BorderSizePixel = 2
  411. Number.Position = UDim2.new(0.224057466, 0, 0.807674289, 0)
  412. Number.Size = UDim2.new(0, 157, 0, 21)
  413. Number.Font = Enum.Font.Cartoon
  414. Number.Text = ""
  415. Number.TextColor3 = Color3.new(0, 0, 0)
  416. Number.TextSize = 14
  417.  
  418. ExitMain.Name = "Exit Main"
  419. ExitMain.Parent = MainTab
  420. ExitMain.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  421. ExitMain.BorderSizePixel = 0
  422. ExitMain.Position = UDim2.new(0.916998029, 0, 0, 0)
  423. ExitMain.Size = UDim2.new(0, 23, 0, 19)
  424. ExitMain.Font = Enum.Font.Cartoon
  425. ExitMain.Text = "X"
  426. ExitMain.TextColor3 = Color3.new(1, 1, 1)
  427. ExitMain.TextSize = 14
  428. ExitMain.MouseButton1Click:connect (function()
  429.     MainTab.Visible = false
  430. end)
  431.  
  432. TeleportTab.Name = "Teleport Tab"
  433. TeleportTab.Parent = ScreenGui
  434. TeleportTab.Active = true
  435. TeleportTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  436. TeleportTab.BackgroundTransparency = 0.25
  437. TeleportTab.BorderColor3 = Color3.new(1, 1, 1)
  438. TeleportTab.BorderSizePixel = 2
  439. TeleportTab.ClipsDescendants = true
  440. TeleportTab.Position = UDim2.new(0.621988893, 0, 0.218673214, 0)
  441. TeleportTab.Selectable = true
  442. TeleportTab.Size = UDim2.new(0, 84, 0, 219)
  443. TeleportTab.Visible = false
  444. TeleportTab.Draggable = true
  445.  
  446. Header_2.Name = "Header"
  447. Header_2.Parent = TeleportTab
  448. Header_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  449. Header_2.BorderColor3 = Color3.new(1, 1, 1)
  450. Header_2.BorderSizePixel = 2
  451. Header_2.Size = UDim2.new(0, 84, 0, 20)
  452. Header_2.Font = Enum.Font.Cartoon
  453. Header_2.Text = ""
  454. Header_2.TextColor3 = Color3.new(1, 1, 1)
  455. Header_2.TextSize = 22
  456.  
  457. ExitTeleports.Name = "Exit Teleports"
  458. ExitTeleports.Parent = TeleportTab
  459. ExitTeleports.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  460. ExitTeleports.BorderSizePixel = 0
  461. ExitTeleports.Position = UDim2.new(0.729411781, 0, 0, 0)
  462. ExitTeleports.Size = UDim2.new(0, 23, 0, 19)
  463. ExitTeleports.Font = Enum.Font.Cartoon
  464. ExitTeleports.Text = "X"
  465. ExitTeleports.TextColor3 = Color3.new(1, 1, 1)
  466. ExitTeleports.TextSize = 14
  467. ExitTeleports.MouseButton1Click:connect (function()
  468.     TeleportTab.Visible = false
  469. end)
  470.  
  471. Garage.Name = "Garage"
  472. Garage.Parent = TeleportTab
  473. Garage.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  474. Garage.BackgroundTransparency = 0.25
  475. Garage.BorderColor3 = Color3.new(1, 1, 1)
  476. Garage.BorderSizePixel = 2
  477. Garage.Position = UDim2.new(0.0747687817, 0, 0.652119875, 0)
  478. Garage.Size = UDim2.new(0, 72, 0, 30)
  479. Garage.Font = Enum.Font.Cartoon
  480. Garage.Text = "Garage"
  481. Garage.TextColor3 = Color3.new(1, 1, 1)
  482. Garage.TextSize = 17
  483. Garage.MouseButton1Click:connect (function()
  484.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(231.40872192383,24.549949645996,-493.32705688477)
  485. end)
  486.  
  487. Base.Name = "Base"
  488. Base.Parent = TeleportTab
  489. Base.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  490. Base.BackgroundTransparency = 0.25
  491. Base.BorderColor3 = Color3.new(1, 1, 1)
  492. Base.BorderSizePixel = 2
  493. Base.Position = UDim2.new(0.0747687817, 0, 0.480433851, 0)
  494. Base.Size = UDim2.new(0, 72, 0, 30)
  495. Base.Font = Enum.Font.Cartoon
  496. Base.Text = "Base"
  497. Base.TextColor3 = Color3.new(1, 1, 1)
  498. Base.TextSize = 17
  499. Base.MouseButton1Click:connect (function()
  500.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(2116.2019042969,25.10528755188,348.36651611328)
  501. end)
  502.  
  503. Camaro.Name = "Camaro"
  504. Camaro.Parent = TeleportTab
  505. Camaro.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  506. Camaro.BackgroundTransparency = 0.25
  507. Camaro.BorderColor3 = Color3.new(1, 1, 1)
  508. Camaro.BorderSizePixel = 2
  509. Camaro.Position = UDim2.new(0.0747687817, 0, 0.827622652, 0)
  510. Camaro.Size = UDim2.new(0, 72, 0, 30)
  511. Camaro.Font = Enum.Font.Cartoon
  512. Camaro.Text = "Camaro"
  513. Camaro.TextColor3 = Color3.new(1, 1, 1)
  514. Camaro.TextSize = 17
  515. Camaro.MouseButton1Click:connect (function()
  516.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-882.36700439453,53.278591156006,-2648.3139648438)
  517. end)
  518.  
  519. Bank.Name = "Bank"
  520. Bank.Parent = TeleportTab
  521. Bank.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  522. Bank.BackgroundTransparency = 0.25
  523. Bank.BorderColor3 = Color3.new(1, 1, 1)
  524. Bank.BorderSizePixel = 2
  525. Bank.Position = UDim2.new(0.0747687817, 0, 0.119703263, 0)
  526. Bank.Size = UDim2.new(0, 72, 0, 30)
  527. Bank.Font = Enum.Font.Cartoon
  528. Bank.Text = "Bank"
  529. Bank.TextColor3 = Color3.new(1, 1, 1)
  530. Bank.TextSize = 17
  531. Bank.MouseButton1Click:connect (function()
  532.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(690.11553955078,24.889343261719,446.09664916992)
  533. end)
  534.  
  535. Jewelry.Name = "Jewelry"
  536. Jewelry.Parent = TeleportTab
  537. Jewelry.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  538. Jewelry.BackgroundTransparency = 0.25
  539. Jewelry.BorderColor3 = Color3.new(1, 1, 1)
  540. Jewelry.BorderSizePixel = 2
  541. Jewelry.Position = UDim2.new(0.0747687817, 0, 0.303432226, 0)
  542. Jewelry.Size = UDim2.new(0, 72, 0, 30)
  543. Jewelry.Font = Enum.Font.Cartoon
  544. Jewelry.Text = "Jewelry"
  545. Jewelry.TextColor3 = Color3.new(1, 1, 1)
  546. Jewelry.TextSize = 17
  547. Jewelry.MouseButton1Click:connect (function()
  548.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-203.3496960449,24.578149795532,731.06182861328)
  549. end)
  550.  
  551. GunsTab.Name = "Guns Tab"
  552. GunsTab.Parent = ScreenGui
  553. GunsTab.Active = true
  554. GunsTab.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  555. GunsTab.BackgroundTransparency = 0.25
  556. GunsTab.BorderColor3 = Color3.new(1, 1, 1)
  557. GunsTab.BorderSizePixel = 2
  558. GunsTab.ClipsDescendants = true
  559. GunsTab.Position = UDim2.new(0.680666983, 0, 0.218673199, 0)
  560. GunsTab.Selectable = true
  561. GunsTab.Size = UDim2.new(0, 84, 0, 219)
  562. GunsTab.Visible = false
  563. GunsTab.Draggable = true
  564.  
  565. Header_3.Name = "Header"
  566. Header_3.Parent = GunsTab
  567. Header_3.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  568. Header_3.BorderColor3 = Color3.new(1, 1, 1)
  569. Header_3.BorderSizePixel = 2
  570. Header_3.Size = UDim2.new(0, 84, 0, 20)
  571. Header_3.Font = Enum.Font.Cartoon
  572. Header_3.Text = ""
  573. Header_3.TextColor3 = Color3.new(1, 1, 1)
  574. Header_3.TextSize = 22
  575.  
  576. ExitTeleports_2.Name = "Exit Teleports"
  577. ExitTeleports_2.Parent = GunsTab
  578. ExitTeleports_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  579. ExitTeleports_2.BorderSizePixel = 0
  580. ExitTeleports_2.Position = UDim2.new(0.729411781, 0, 0, 0)
  581. ExitTeleports_2.Size = UDim2.new(0, 23, 0, 19)
  582. ExitTeleports_2.Font = Enum.Font.Cartoon
  583. ExitTeleports_2.Text = "X"
  584. ExitTeleports_2.TextColor3 = Color3.new(1, 1, 1)
  585. ExitTeleports_2.TextSize = 14
  586. ExitTeleports_2.MouseButton1Click:connect (function()
  587.     GunsTab.Visible = false
  588. end)
  589.  
  590. Shotgun.Name = "Shotgun"
  591. Shotgun.Parent = GunsTab
  592. Shotgun.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  593. Shotgun.BackgroundTransparency = 0.25
  594. Shotgun.BorderColor3 = Color3.new(1, 1, 1)
  595. Shotgun.BorderSizePixel = 2
  596. Shotgun.Position = UDim2.new(0.0747687817, 0, 0.652119875, 0)
  597. Shotgun.Size = UDim2.new(0, 72, 0, 30)
  598. Shotgun.Font = Enum.Font.Cartoon
  599. Shotgun.Text = "Shotgun"
  600. Shotgun.TextColor3 = Color3.new(1, 1, 1)
  601. Shotgun.TextSize = 17
  602. Shotgun.MouseButton1Click:connect (function()
  603.     local Remote = game.Workspace.ObjectSelection.Shotgun.Shotgun.Shotgun['Event']
  604.     local Arguments = {
  605.     }
  606.     Remote:FireServer(unpack(Arguments))
  607. end)
  608.  
  609. TEC9.Name = "TEC9"
  610. TEC9.Parent = GunsTab
  611. TEC9.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  612. TEC9.BackgroundTransparency = 0.25
  613. TEC9.BorderColor3 = Color3.new(1, 1, 1)
  614. TEC9.BorderSizePixel = 2
  615. TEC9.Position = UDim2.new(0.0747687817, 0, 0.480433851, 0)
  616. TEC9.Size = UDim2.new(0, 72, 0, 30)
  617. TEC9.Font = Enum.Font.Cartoon
  618. TEC9.Text = "TEC9"
  619. TEC9.TextColor3 = Color3.new(1, 1, 1)
  620. TEC9.TextSize = 17
  621. TEC9.MouseButton1Click:connect (function()
  622.     local Remote = game.Workspace.ObjectSelection.TEC9.TEC9.TEC9['Event']
  623.     local Arguments = {
  624.     }
  625.     Remote:FireServer(unpack(Arguments))
  626. end)
  627.  
  628. AK47.Name = "AK47"
  629. AK47.Parent = GunsTab
  630. AK47.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  631. AK47.BackgroundTransparency = 0.25
  632. AK47.BorderColor3 = Color3.new(1, 1, 1)
  633. AK47.BorderSizePixel = 2
  634. AK47.Position = UDim2.new(0.0747687817, 0, 0.827622652, 0)
  635. AK47.Size = UDim2.new(0, 72, 0, 30)
  636. AK47.Font = Enum.Font.Cartoon
  637. AK47.Text = "AK47"
  638. AK47.TextColor3 = Color3.new(1, 1, 1)
  639. AK47.TextSize = 17
  640. AK47.MouseButton1Click:connect (function()
  641.     local Remote = game.Workspace.ObjectSelection.AK47.AK47.AK47['Event']
  642.     local Arguments = {
  643.     }
  644.     Remote:FireServer(unpack(Arguments))
  645. end)
  646.  
  647. Dealge.Name = "Dealge"
  648. Dealge.Parent = GunsTab
  649. Dealge.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  650. Dealge.BackgroundTransparency = 0.25
  651. Dealge.BorderColor3 = Color3.new(1, 1, 1)
  652. Dealge.BorderSizePixel = 2
  653. Dealge.Position = UDim2.new(0.0747687817, 0, 0.119703263, 0)
  654. Dealge.Size = UDim2.new(0, 72, 0, 30)
  655. Dealge.Font = Enum.Font.Cartoon
  656. Dealge.Text = "Deagle"
  657. Dealge.TextColor3 = Color3.new(1, 1, 1)
  658. Dealge.TextSize = 17
  659. Dealge.MouseButton1Click:connect (function()
  660.     local Remote = game.Workspace.ObjectSelection.Deagle.Deagle.Deagle['Event']
  661.     local Arguments = {
  662.     }
  663.     Remote:FireServer(unpack(Arguments))
  664. end)
  665.  
  666. RPG.Name = "RPG"
  667. RPG.Parent = GunsTab
  668. RPG.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  669. RPG.BackgroundTransparency = 0.25
  670. RPG.BorderColor3 = Color3.new(1, 1, 1)
  671. RPG.BorderSizePixel = 2
  672. RPG.Position = UDim2.new(0.0747687817, 0, 0.303432226, 0)
  673. RPG.Size = UDim2.new(0, 72, 0, 30)
  674. RPG.Font = Enum.Font.Cartoon
  675. RPG.Text = "RPG"
  676. RPG.TextColor3 = Color3.new(1, 1, 1)
  677. RPG.TextSize = 17
  678. RPG.MouseButton1Click:connect (function()
  679.     local Remote = game.Workspace.ObjectSelection.RPG.RPG.RPG['Event']
  680.     local Arguments = {
  681.     }
  682.     Remote:FireServer(unpack(Arguments))
  683. end)
  684.  
  685. print("GUI has loaded successfully! Enjoy!!!!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement