Advertisement
VenomXploitz

CALL ME PAPI no.

Dec 8th, 2018
809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.65 KB | None | 0 0
  1. -BOOBS AND DICKS LOL--
  2. local SniperKitt
  3. Ammo = ".338 Magnum"
  4. Gun = "L115A3"
  5. local ShotGunKit
  6. Ammo = "12 Gauge"
  7. Gun = "Double Barrel"
  8. local AmmoKitt
  9. Ammo = ".45 ACP"
  10. Ammo = "12 Gauge"
  11. Ammo = "9mm"
  12. Ammo = "7.62mm NATO"
  13. Ammo = "6.5mm"
  14.  
  15. local ArmorKitt
  16. Armor = "Tier 1 Vest"
  17. Armor = "Tier 2 Vest"
  18. Armor = "Tier 3 Vest"
  19. Armor = "Sports Helmet"
  20. Armor = "Skater Helment"
  21.  
  22.  
  23. local PistolKitt
  24. Ammo = "9mm"
  25. Ammo = ".45 ACP"
  26. Ammo = "6.5mm"
  27. Gun = "CBJ-MS"
  28. Gun = "M9"
  29. local ScarHKit
  30. Ammo = "7.62mm NATO"
  31. Gun = "Scar-H"
  32. -------------------FUNCTIONS
  33. function CreateSpeed()
  34. while true do
  35. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 300
  36. wait()
  37. end
  38.  
  39. end
  40.  
  41. function CreateJump()
  42. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  43. end
  44.  
  45. function CreateGravity()
  46. while true do
  47. game.Workspace.Gravity = 80
  48. wait()
  49. end
  50. end
  51.  
  52.  
  53. local __namecall = {}
  54. --SniperKit
  55. function SpawnSniper()
  56. for _,v in pairs(workspace.Loot:children()) do
  57. if v.Name == "L115A3" then
  58. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  59. end
  60. end
  61. end
  62.  
  63. function SpawnSniperAmmo()
  64. for _,v in pairs(workspace.Loot:children()) do
  65. if v.Name == ".338 Magnum" then
  66. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  67. end
  68. end
  69. end
  70. --ShotgunKit
  71. function SpawnShotGun()
  72. for _,v in pairs(workspace.Loot:children()) do
  73. if v.Name == "Double Barrel" then
  74. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  75. end
  76. end
  77. end
  78.  
  79. function ShotGunAmmo()
  80. for _,v in pairs(workspace.Loot:children()) do
  81. if v.Name == "12 Gauge" then
  82. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  83. end
  84. end
  85. end
  86. --AmmoKit
  87. function SpawnAmmo()
  88. for _,v in pairs(workspace.Loot:children()) do
  89. if v.Name == "12 Gauge" or v.Name == ".45 ACP" or v.Name == "7.62mm NATO" or v.Name == "6.5mm" or v.Name == "9mm" then
  90. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  91. end
  92. end
  93. end
  94. --ArmorKit
  95. function SpawnArmor()
  96. for _,v in pairs(workspace.Loot:children()) do
  97. if v.Name == "Tier 3 Vest" or v.Name == "Tier 1 Vest" or v.Name == "Tier 2 Vest" or v.Name == "Skater Helmet" or v.Name == "Sports Helmet" then
  98. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  99. end
  100. end
  101. end
  102.  
  103. function SpawnBackpack()
  104. for _,v in pairs(workspace.Loot:children()) do
  105. if v.Name == "Military Pack" then
  106. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  107. end
  108. end
  109. end
  110. --Pistol Kit
  111. function SpawnPistols()
  112. for _,v in pairs(workspace.Loot:children()) do
  113. if v.Name == "CBJ-MS" or v.Name == "M9" then
  114. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  115. end
  116. end
  117. end
  118.  
  119. function SpawnPistolAmmo()
  120. for _,v in pairs(workspace.Loot:children()) do
  121. if v.Name == ".45 ACP" or v.Name == "9mm" or v.Name == "6.5mm" then
  122. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  123. end
  124. end
  125. end
  126. --Scar-H Kit
  127. function SpawnScarH()
  128. for _,v in pairs(workspace.Loot:children()) do
  129. if v.Name == "Scar-H" then
  130. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  131. end
  132. end
  133. end
  134.  
  135. function ScarAmmo()
  136. for _,v in pairs(workspace.Loot:children()) do
  137. if v.Name == "7.62mm NATO" then
  138. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  139. end
  140. end
  141. end
  142.  
  143.  
  144. function KillTrees()
  145. game.Workspace.Map.Trees:Destroy()
  146. end
  147.  
  148. function KillBuildings()
  149. game.Workspace.Map.Buildings:Destroy()
  150. end
  151.  
  152. function KillRoads()
  153. game.Workspace.Map.Roads:Destroy()
  154. end
  155.  
  156. function CreateTeleport()
  157. getplr = function(plxr)
  158. for i, v in pairs(game.Players:GetPlayers()) do
  159. if string.find(v.Name, plxr) then
  160. return v
  161. elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  162. return v
  163. end
  164. end
  165. end
  166. local plr = getplr(PlayerHere.Text)
  167. game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  168. end
  169.  
  170. function VehicleSpawn()
  171. for _,v in pairs(workspace.Vehicles:children()) do
  172. if v.ClassName == "Model" then
  173. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  174. end
  175. end
  176. end
  177.  
  178. function LootSpawn()
  179. for _,v in pairs(workspace.Loot:children()) do
  180. if v.ClassName == "Model" then
  181. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  182. end
  183. end
  184. end
  185. -- Instances:
  186. local PrisonRoyale = Instance.new("ScreenGui")
  187. local LoginFrame = Instance.new("Frame")
  188. local bar1 = Instance.new("Frame")
  189. local bar2 = Instance.new("Frame")
  190. local Title = Instance.new("TextLabel")
  191. local Credit = Instance.new("TextLabel")
  192. local Open = Instance.new("TextButton")
  193. local MainFrame = Instance.new("Frame")
  194. local mbar2 = Instance.new("Frame")
  195. local mbar1 = Instance.new("Frame")
  196. local mtitle = Instance.new("TextLabel")
  197. local Weapons = Instance.new("TextButton")
  198. local Weapons2 = Instance.new("Frame")
  199. local Sniperkit = Instance.new("TextButton")
  200. local ScarHkit = Instance.new("TextButton")
  201. local Shotgunkit = Instance.new("TextButton")
  202. local Armorkit = Instance.new("TextButton")
  203. local Pistolkit = Instance.new("TextButton")
  204. local Ammokit = Instance.new("TextButton")
  205. local ESP = Instance.new("TextButton")
  206. local ESP2 = Instance.new("Frame")
  207. local ESPbut = Instance.new("TextButton")
  208. local Character = Instance.new("TextButton")
  209. local Character2 = Instance.new("Frame")
  210. local SpeedHacks = Instance.new("TextButton")
  211. local JumpHacks = Instance.new("TextButton")
  212. local GravityHacks = Instance.new("TextButton")
  213. local Spawning = Instance.new("TextButton")
  214. local Spawning2 = Instance.new("Frame")
  215. local Spawncars = Instance.new("TextButton")
  216. local Spawnloot = Instance.new("TextButton")
  217. local Map = Instance.new("TextButton")
  218. local Map2 = Instance.new("Frame")
  219. local Deletetrees = Instance.new("TextButton")
  220. local Deleteroads = Instance.new("TextButton")
  221. local Deletebuilding = Instance.new("TextButton")
  222. --Properties:
  223. PrisonRoyale.Name = "Prison Royale"
  224. PrisonRoyale.Parent = game.CoreGui
  225.  
  226. LoginFrame.Name = "LoginFrame"
  227. LoginFrame.Parent = PrisonRoyale
  228. LoginFrame.Active = true
  229. LoginFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  230. LoginFrame.Position = UDim2.new(0.342828065, 0, 0.235785946, 0)
  231. LoginFrame.Selectable = true
  232. LoginFrame.Size = UDim2.new(0, 248, 0, 315)
  233. LoginFrame.Active = true
  234. LoginFrame.Draggable = true
  235.  
  236. bar1.Name = "bar1"
  237. bar1.Parent = LoginFrame
  238. bar1.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  239. bar1.BorderSizePixel = 0
  240. bar1.Position = UDim2.new(-0.00595714198, 0, -0.00505923294, 0)
  241. bar1.Size = UDim2.new(0, 248, 0, 28)
  242.  
  243. bar2.Name = "bar2"
  244. bar2.Parent = LoginFrame
  245. bar2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  246. bar2.Position = UDim2.new(0, 0, 0.0857142881, 0)
  247. bar2.Size = UDim2.new(0, 248, 0, 12)
  248.  
  249. Title.Name = "Title"
  250. Title.Parent = LoginFrame
  251. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  252. Title.Position = UDim2.new(0.188726306, 0, 0.180952385, 0)
  253. Title.Size = UDim2.new(0, 153, 0, 43)
  254. Title.Font = Enum.Font.SourceSans
  255. Title.Text = "Prison Royale"
  256. Title.TextColor3 = Color3.new(1, 1, 1)
  257. Title.TextScaled = true
  258. Title.TextSize = 14
  259. Title.TextWrapped = true
  260.  
  261. Credit.Name = "Credit"
  262. Credit.Parent = LoginFrame
  263. Credit.BackgroundColor3 = Color3.new(0, 0, 0)
  264. Credit.Position = UDim2.new(0.111933269, 0, 0.371428579, 0)
  265. Credit.Size = UDim2.new(0, 192, 0, 31)
  266. Credit.Font = Enum.Font.SourceSans
  267. Credit.Text = "Made by Razerhacks#6650"
  268. Credit.TextColor3 = Color3.new(1, 1, 1)
  269. Credit.TextScaled = true
  270. Credit.TextSize = 14
  271. Credit.TextWrapped = true
  272.  
  273. Open.Name = "Open"
  274. Open.Parent = LoginFrame
  275. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  276. Open.Position = UDim2.new(0.125678957, 0, 0.600000024, 0)
  277. Open.Size = UDim2.new(0, 184, 0, 41)
  278. Open.Font = Enum.Font.SourceSans
  279. Open.Text = "OPEN"
  280. Open.TextColor3 = Color3.new(1, 1, 1)
  281. Open.TextScaled = true
  282. Open.TextSize = 14
  283. Open.TextWrapped = true
  284. Open.MouseButton1Down:connect(function()
  285. LoginFrame.Visible = false
  286. MainFrame.Visible = true
  287. end)
  288.  
  289. MainFrame.Name = "MainFrame"
  290. MainFrame.Parent = PrisonRoyale
  291. MainFrame.Active = true
  292. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  293. MainFrame.Position = UDim2.new(0.281341106, 0, 0.178929761, 0)
  294. MainFrame.Selectable = true
  295. MainFrame.Size = UDim2.new(0, 150, 0, 397)
  296. MainFrame.Visible = false
  297. MainFrame.Active = true
  298. MainFrame.Draggable = true
  299.  
  300. mbar2.Name = "mbar2"
  301. mbar2.Parent = MainFrame
  302. mbar2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  303. mbar2.Position = UDim2.new(0, 0, 0.0503778346, 0)
  304. mbar2.Size = UDim2.new(0, 150, 0, 30)
  305.  
  306. mbar1.Name = "mbar1"
  307. mbar1.Parent = MainFrame
  308. mbar1.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  309. mbar1.Size = UDim2.new(0, 150, 0, 20)
  310.  
  311. mtitle.Name = "mtitle"
  312. mtitle.Parent = MainFrame
  313. mtitle.BackgroundColor3 = Color3.new(0, 0, 0)
  314. mtitle.Size = UDim2.new(0, 150, 0, 20)
  315. mtitle.Font = Enum.Font.SourceSans
  316. mtitle.Text = "Prison Royale choices"
  317. mtitle.TextColor3 = Color3.new(1, 1, 1)
  318. mtitle.TextSize = 20
  319.  
  320. Weapons.Name = "Weapons"
  321. Weapons.Parent = MainFrame
  322. Weapons.BackgroundColor3 = Color3.new(0, 0, 0)
  323. Weapons.Position = UDim2.new(0.0599999987, 0, 0.15365237, 0)
  324. Weapons.Size = UDim2.new(0, 132, 0, 42)
  325. Weapons.Font = Enum.Font.SciFi
  326. Weapons.Text = "Weapons"
  327. Weapons.TextColor3 = Color3.new(1, 1, 1)
  328. Weapons.TextSize = 20
  329. Weapons.TextWrapped = true
  330. Weapons.MouseButton1Down:connect(function()
  331. if Weapons.Text == 'Weapons' then
  332. Weapons2.Visible = true
  333. Weapons.Text = 'Close'
  334. elseif Weapons.Text == 'Close' then
  335. Weapons2.Visible = false
  336. Weapons.Text = 'Weapons'
  337. end
  338. end)
  339.  
  340. Weapons2.Name = "Weapons2"
  341. Weapons2.Parent = Weapons
  342. Weapons2.Active = true
  343. Weapons2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  344. Weapons2.Position = UDim2.new(1.28787875, 0, -2.09523821, 0)
  345. Weapons2.Selectable = true
  346. Weapons2.Size = UDim2.new(0, 151, 0, 424)
  347. Weapons2.Visible = false
  348.  
  349. Sniperkit.Name = "Sniper kit"
  350. Sniperkit.Parent = Weapons2
  351. Sniperkit.BackgroundColor3 = Color3.new(0, 0, 0)
  352. Sniperkit.Position = UDim2.new(0.0264900662, 0, 0.0707547218, 0)
  353. Sniperkit.Size = UDim2.new(0, 143, 0, 30)
  354. Sniperkit.Font = Enum.Font.SourceSans
  355. Sniperkit.Text = "Sniper kit"
  356. Sniperkit.TextColor3 = Color3.new(1, 1, 1)
  357. Sniperkit.TextScaled = true
  358. Sniperkit.TextSize = 20
  359. Sniperkit.TextWrapped = true
  360. Sniperkit.MouseButton1Click:connect(function()
  361. SpawnSniper()
  362. SpawnSniperAmmo()
  363. SniperPackage = true
  364. SniperKit.Text = "SuccessFully Spawned"
  365. SniperKit.TextColor3 = Color3.new(0,185,0)
  366. wait(2.0)
  367. SniperPackage = false
  368. SniperKit.Text = "Sniper Kit"
  369. SniperKit.TextColor3 = Color3.new(255,255,255)
  370. end)
  371.  
  372.  
  373. ScarHkit.Name = "Scar H kit"
  374. ScarHkit.Parent = Weapons2
  375. ScarHkit.BackgroundColor3 = Color3.new(0, 0, 0)
  376. ScarHkit.Position = UDim2.new(0.0264900662, 0, 0.207547128, 0)
  377. ScarHkit.Size = UDim2.new(0, 143, 0, 30)
  378. ScarHkit.Font = Enum.Font.SourceSans
  379. ScarHkit.Text = "Scar H kit"
  380. ScarHkit.TextColor3 = Color3.new(1, 1, 1)
  381. ScarHkit.TextScaled = true
  382. ScarHkit.TextSize = 20
  383. ScarHkit.TextWrapped = true
  384. ScarHkit.MouseButton1Down:connect(function()
  385. SpawnScarH()
  386. ScarAmmo()
  387. ScarPackage = true
  388. Unlockall.Text = "Spawned in"
  389. Unlockall.TextColor3 = Color3.new(0,185,0)
  390. wait(2.0)
  391. ScarPackage = false
  392. Unlockall.Text = "Scar Kit"
  393. Unlockall.TextColor3 = Color3.new(255,255,255)
  394. end)
  395.  
  396. Shotgunkit.Name = "Shotgun kit"
  397. Shotgunkit.Parent = Weapons2
  398. Shotgunkit.BackgroundColor3 = Color3.new(0, 0, 0)
  399. Shotgunkit.Position = UDim2.new(0.0264900662, 0, 0.349056572, 0)
  400. Shotgunkit.Size = UDim2.new(0, 143, 0, 30)
  401. Shotgunkit.Font = Enum.Font.SourceSans
  402. Shotgunkit.Text = "Shotgun kit"
  403. Shotgunkit.TextColor3 = Color3.new(1, 1, 1)
  404. Shotgunkit.TextScaled = true
  405. Shotgunkit.TextSize = 20
  406. Shotgunkit.TextWrapped = true
  407. Shotgunkit.MouseButton1Click:connect(function()
  408. SpawnShotGun()
  409. ShotGunAmmo()
  410. ShotgunPackage = true
  411. ShotgunKit.Text = "SuccessFully Spawned"
  412. ShotgunKit.TextColor3 = Color3.new(0,185,0)
  413. wait(2.0)
  414. ShotgunPackage = false
  415. ShotgunKit.Text = "ShotGun Kit"
  416. ShotgunKit.TextColor3 = Color3.new(255,255,255)
  417. end)
  418.  
  419. Armorkit.Name = "Armor kit"
  420. Armorkit.Parent = Weapons2
  421. Armorkit.BackgroundColor3 = Color3.new(0, 0, 0)
  422. Armorkit.Position = UDim2.new(0.0264900662, 0, 0.495283037, 0)
  423. Armorkit.Size = UDim2.new(0, 143, 0, 30)
  424. Armorkit.Font = Enum.Font.SourceSans
  425. Armorkit.Text = "Armor kit"
  426. Armorkit.TextColor3 = Color3.new(1, 1, 1)
  427. Armorkit.TextScaled = true
  428. Armorkit.TextSize = 20
  429. Armorkit.TextWrapped = true
  430. Armorkit.MouseButton1Click:connect(function()
  431. SpawnArmor()
  432. SpawnBackpack()
  433. ArmorPackage = true
  434. ArmorKit.Text = "SuccessFully Spawned"
  435. ArmorKit.TextColor3 = Color3.new(0,185,0)
  436. wait(2.0)
  437. ArmorPackage = false
  438. ArmorKit.Text = "Armor Kit"
  439. ArmorKit.TextColor3 = Color3.new(255,255,255)
  440. end)
  441.  
  442. Pistolkit.Name = "Pistol kit"
  443. Pistolkit.Parent = Weapons2
  444. Pistolkit.BackgroundColor3 = Color3.new(0, 0, 0)
  445. Pistolkit.Position = UDim2.new(0.0264900662, 0, 0.629716992, 0)
  446. Pistolkit.Size = UDim2.new(0, 143, 0, 30)
  447. Pistolkit.Font = Enum.Font.SourceSans
  448. Pistolkit.Text = "Pistol kit"
  449. Pistolkit.TextColor3 = Color3.new(1, 1, 1)
  450. Pistolkit.TextScaled = true
  451. Pistolkit.TextSize = 20
  452. Pistolkit.TextWrapped = true
  453. Pistolkit.MouseButton1Click:connect(function()
  454. SpawnPistols()
  455. SpawnPistolAmmo()
  456. PistolPackage = true
  457. PistolKit.Text = "SuccessFully Spawned"
  458. PistolKit.TextColor3 = Color3.new(0,185,0)
  459. wait(2.0)
  460. PistolPackage = false
  461. PistolKit.Text = "Pistol Kit"
  462. PistolKit.TextColor3 = Color3.new(255,255,255)
  463. end)
  464.  
  465. Ammokit.Name = "Ammo kit"
  466. Ammokit.Parent = Weapons2
  467. Ammokit.BackgroundColor3 = Color3.new(0, 0, 0)
  468. Ammokit.Position = UDim2.new(0.0264900699, 0, 0.773584783, 0)
  469. Ammokit.Size = UDim2.new(0, 143, 0, 30)
  470. Ammokit.Font = Enum.Font.SourceSans
  471. Ammokit.Text = "Ammo kit"
  472. Ammokit.TextColor3 = Color3.new(1, 1, 1)
  473. Ammokit.TextScaled = true
  474. Ammokit.TextSize = 20
  475. Ammokit.TextWrapped = true
  476. Ammokit.MouseButton1Click:connect(function()
  477. SpawnAmmo()
  478. AmmoPackage = true
  479. AmmoKit.Text = "SuccessFully Spawned"
  480. AmmoKit.TextColor3 = Color3.new(0,185,0)
  481. wait(2.0)
  482. AmmoPackage = false
  483. AmmoKit.Text = "Ammo Kit"
  484. AmmoKit.TextColor3 = Color3.new(255,255,255)
  485. end)
  486.  
  487. ESP.Name = "ESP"
  488. ESP.Parent = MainFrame
  489. ESP.BackgroundColor3 = Color3.new(0, 0, 0)
  490. ESP.Position = UDim2.new(0.0599999987, 0, 0.317380339, 0)
  491. ESP.Size = UDim2.new(0, 132, 0, 42)
  492. ESP.Font = Enum.Font.SciFi
  493. ESP.Text = "ESP"
  494. ESP.TextColor3 = Color3.new(1, 1, 1)
  495. ESP.TextSize = 20
  496. ESP.TextWrapped = true
  497. ESP.MouseButton1Down:connect(function()
  498. if ESP.Text == 'ESP' then
  499. ESP2.Visible = true
  500. ESP.Text = 'Close'
  501. elseif ESP.Text == 'Close' then
  502. ESP2.Visible = false
  503. ESP.Text = 'ESP'
  504. end
  505. end)
  506.  
  507. ESP2.Name = "ESP 2"
  508. ESP2.Parent = ESP
  509. ESP2.Active = true
  510. ESP2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  511. ESP2.Position = UDim2.new(1.32575786, 0, -0.452380955, 0)
  512. ESP2.Selectable = true
  513. ESP2.Size = UDim2.new(0, 182, 0, 214)
  514. ESP2.Visible = false
  515.  
  516. ESPbut.Name = "ESPbut"
  517. ESPbut.Parent = ESP2
  518. ESPbut.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  519. ESPbut.Position = UDim2.new(0.0845142454, 0, 0.379425496, 0)
  520. ESPbut.Size = UDim2.new(0, 150, 0, 50)
  521. ESPbut.Font = Enum.Font.SourceSans
  522. ESPbut.Text = "ESP"
  523. ESPbut.TextColor3 = Color3.new(1, 1, 1)
  524. ESPbut.TextScaled = true
  525. ESPbut.TextSize = 20
  526. ESPbut.TextWrapped = true
  527. ESPbut.MouseButton1Down:connect(function()
  528. local lPlayer = game.Players.LocalPlayer;
  529. local lTeam = lPlayer.TeamColor;
  530. local mode = 1;
  531. local speed = .7; -- CFrame interpolation every second.
  532. local aimToggle = false;
  533. local enemyColor = BrickColor.Red();
  534. local friendlyColor = BrickColor.Blue();
  535.  
  536. function onKeyPress(inputObject, gameProcessedEvent)
  537. if inputObject.KeyCode == Enum.KeyCode.RightAlt then
  538. if aimToggle == false then
  539. --aimToggle = true;
  540. else
  541. --aimToggle = false;
  542. end
  543. end
  544. if inputObject.KeyCode == Enum.KeyCode.RightControl then
  545. if mode == 1 then
  546. mode = 0;
  547. for i,v in pairs(game.Players:GetChildren()) do
  548. if v ~= lPlayer then
  549. if game.Workspace:FindFirstChild(v.Name) ~= nil then
  550. if v.Character:FindFirstChild("Torso") ~= nil then
  551. v.Character.Torso.eP.Frame.Visible = false;
  552. end
  553. for t,x in pairs(v.Character:GetChildren()) do
  554. if x.ClassName == "Part" then
  555. if v.Character:FindFirstChild("Head") ~= nil then
  556. if v.Character.Head:FindFirstChild("1") ~= nil then
  557. for l=1,6 do
  558. x:FindFirstChild(l).Frame.Visible = true;
  559. end
  560. end
  561. end
  562. end
  563. end
  564. end
  565. end
  566. end
  567. elseif mode == 0 then
  568. mode = 1;
  569. for i,v in pairs(game.Players:GetChildren()) do
  570. if v ~= lPlayer then
  571. if game.Workspace:FindFirstChild(v.Name) ~= nil then
  572. if v.Character:FindFirstChild("Torso") ~= nil then
  573. v.Character.Torso.eP.Frame.Visible = true;
  574. end
  575. for t,x in pairs(v.Character:GetChildren()) do
  576. if x.ClassName == "Part" then
  577. if v.Character:FindFirstChild("Head") ~= nil then
  578. if v.Character.Head:FindFirstChild("1") ~= nil then
  579. for l=1,6 do
  580. x:FindFirstChild(l).Frame.Visible = false;
  581. end
  582. end
  583. end
  584. end
  585. end
  586. end
  587. end
  588. end
  589. end
  590. end
  591. end
  592.  
  593. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  594.  
  595. local function ClosestPlayer(point)
  596. local OnTarget = false;
  597. local CurDis = nil;
  598. local CurPlayer = nil;
  599. for i,v in pairs(game.Players:GetChildren()) do
  600. if v ~= lPlayer then
  601. if CurDis == nil then
  602. CurDis = v:DistanceFromCharacter(lPlayer.Character.Torso.Position);
  603. CurPlayer = v;
  604. else
  605. if v:DistanceFromCharacter(lPlayer.Character.Torso.Position) < CurDis then
  606. CurDis = v:DistanceFromCharacter(lPlayer.Character.Torso.Position);
  607. CurPlayer = v;
  608. end
  609. end
  610. end
  611. end
  612. while aimToggle == true do
  613. for i = 0, 1, .01 do
  614. game.Workspace.CurrentCamera.CFrame = CFrame.new(Vector3.new(game.Workspace.CurrentCamera.CFrame.X,game.Workspace.CurrentCamera.CFrame.Y,game.Workspace.CurrentCamera.CFrame.Z), CurPlayer.Character.Torso.Position);
  615. end
  616. end
  617. end
  618.  
  619. while true do
  620. for i,v in pairs(game.Players:GetChildren()) do
  621. local vChar = game.Workspace:WaitForChild(v.Name);
  622. if vChar.Torso:FindFirstChild("eP") == nil and v ~= lPlayer then
  623. local fLayer = Instance.new("BillboardGui");
  624. fLayer.Name = "eP";
  625. fLayer.Size = UDim2.new(8,0,8,0);
  626. fLayer.SizeOffset = Vector2.new(.5,-.55);
  627. fLayer.LightInfluence = 0;
  628. fLayer.AlwaysOnTop = true;
  629. fLayer.Adornee = vChar:WaitForChild("Torso");
  630. fLayer.Parent = vChar.Torso;
  631. local sLayer = Instance.new("Frame");
  632. sLayer.BackgroundTransparency = .5;
  633. sLayer.AnchorPoint = Vector2.new(.5,.5);
  634. if v.TeamColor == lTeam then
  635. sLayer.BackgroundColor = BrickColor.Blue();
  636. else
  637. sLayer.BackgroundColor = BrickColor.Red();
  638. end
  639. sLayer.BorderSizePixel = 0;
  640. sLayer.Size = UDim2.new(.5,0,.7,0);
  641. sLayer.Parent = fLayer;
  642. if mode == 0 then
  643. sLayer.Visible = false;
  644. end
  645. local fhLayer = Instance.new("BillboardGui");
  646. fhLayer.Name = "ePh";
  647. fhLayer.Size = UDim2.new(8,0,8,0);
  648. fhLayer.SizeOffset = Vector2.new(.25,-.13);
  649. fhLayer.LightInfluence = 0;
  650. fhLayer.AlwaysOnTop = true;
  651. fhLayer.Adornee = vChar:WaitForChild("Torso");
  652. fhLayer.Parent = vChar.Torso;
  653. local health = Instance.new("Frame");
  654. health.AnchorPoint = Vector2.new(0,.5);
  655. health.Name = "health";
  656. health.BorderSizePixel = 0;
  657. health.BackgroundColor3 = Color3.fromRGB(255,0,0);
  658. health.Size = UDim2.new((v.Character.Humanoid.Health/v.Character.Humanoid.MaxHealth)/2,0,.05,0);
  659. health.Parent = fhLayer;
  660. local fnLayer = Instance.new("BillboardGui");
  661. fnLayer.Name = "ePn";
  662. fnLayer.Size = UDim2.new(8,0,8,0);
  663. fnLayer.SizeOffset = Vector2.new(.25,0);
  664. fnLayer.LightInfluence = 0;
  665. fnLayer.AlwaysOnTop = true;
  666. fnLayer.Adornee = vChar:WaitForChild("Torso");
  667. fnLayer.Parent = vChar.Torso;
  668. local name = Instance.new("TextLabel");
  669. name.AnchorPoint = Vector2.new(0,.5);
  670. name.Name = "txtlabel";
  671. name.BorderSizePixel = 0;
  672. name.BackgroundTransparency = 1;
  673. name.Size = UDim2.new(.5,0,.05,0);
  674. name.Position = UDim2.new(0,0,0,0);
  675. name.TextScaled = true;
  676. name.Text = v.Name;
  677. name.TextColor3 = Color3.fromRGB(sLayer.BackgroundColor.r,sLayer.BackgroundColor.g,sLayer.BackgroundColor.b);
  678. name.Parent = fnLayer;
  679. for x,t in pairs(vChar:GetChildren()) do
  680. if t.ClassName == "Part" then
  681. for l = 1, 6 do
  682. local headLayer = Instance.new("SurfaceGui");
  683. headLayer.Name = l;
  684. headLayer.LightInfluence = 0;
  685. headLayer.AlwaysOnTop = true;
  686. headLayer.Adornee = vChar:WaitForChild(t.Name);
  687. headLayer.Parent = t;
  688. if l==1 then
  689. headLayer.Face = "Front";
  690. elseif l==2 then
  691. headLayer.Face = "Right";
  692. elseif l==3 then
  693. headLayer.Face = "Left";
  694. elseif l==4 then
  695. headLayer.Face = "Back";
  696. elseif l==5 then
  697. headLayer.Face = "Top";
  698. elseif l==6 then
  699. headLayer.Face = "Bottom";
  700. end
  701. local xLayer = Instance.new("Frame");
  702. xLayer.BackgroundTransparency = .5;
  703. xLayer.AnchorPoint = Vector2.new(0,0);
  704. if v.TeamColor == lTeam then
  705. xLayer.BackgroundColor = BrickColor.Blue();
  706. else
  707. xLayer.BackgroundColor = BrickColor.Red();
  708. end
  709. xLayer.BorderSizePixel = 0;
  710. xLayer.Size = UDim2.new(1,0,1,0);
  711. xLayer.Parent = headLayer;
  712. if mode == 1 then
  713. xLayer.Visible = false;
  714. end
  715. end
  716. end
  717. end
  718. else
  719. if v ~= lPlayer then
  720. v.Character.Torso.ePh.health.Size = UDim2.new((v.Character.Humanoid.Health/v.Character.Humanoid.MaxHealth)/2,0,.05,0);
  721. end
  722. end
  723. end
  724. wait(.3);
  725. end
  726. end)
  727.  
  728.  
  729. Character.Name = "Character"
  730. Character.Parent = MainFrame
  731. Character.BackgroundColor3 = Color3.new(0, 0, 0)
  732. Character.Position = UDim2.new(0.0599999987, 0, 0.473551631, 0)
  733. Character.Size = UDim2.new(0, 132, 0, 42)
  734. Character.Font = Enum.Font.SciFi
  735. Character.Text = "Character"
  736. Character.TextColor3 = Color3.new(1, 1, 1)
  737. Character.TextSize = 20
  738. Character.TextWrapped = true
  739. Character.MouseButton1Down:connect(function()
  740. if Character.Text == 'Character' then
  741. Character2.Visible = true
  742. Character.Text = 'Close'
  743. elseif Character.Text == 'Close' then
  744. Character2.Visible = false
  745. Character.Text = 'Character'
  746. end
  747. end)
  748.  
  749. Character2.Name = "Character 2"
  750. Character2.Parent = Character
  751. Character2.Active = true
  752. Character2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  753. Character2.Position = UDim2.new(1.31818199, 0, -4.54761887, 0)
  754. Character2.Selectable = true
  755. Character2.Size = UDim2.new(0, 172, 0, 400)
  756. Character2.Visible = false
  757.  
  758. SpeedHacks.Name = "Speed Hacks"
  759. SpeedHacks.Parent = Character2
  760. SpeedHacks.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  761. SpeedHacks.Position = UDim2.new(0.122093022, 0, 0.122500002, 0)
  762. SpeedHacks.Size = UDim2.new(0, 129, 0, 41)
  763. SpeedHacks.Font = Enum.Font.SourceSans
  764. SpeedHacks.Text = "Speed Hacks"
  765. SpeedHacks.TextColor3 = Color3.new(1, 1, 1)
  766. SpeedHacks.TextSize = 20
  767. SpeedHacks.MouseButton1Click:connect(function()
  768. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  769. end)
  770.  
  771. JumpHacks.Name = "Jump Hacks"
  772. JumpHacks.Parent = Character2
  773. JumpHacks.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  774. JumpHacks.Position = UDim2.new(0.122093022, 0, 0.435000002, 0)
  775. JumpHacks.Size = UDim2.new(0, 129, 0, 41)
  776. JumpHacks.Font = Enum.Font.SourceSans
  777. JumpHacks.Text = "Jump Hacks"
  778. JumpHacks.TextColor3 = Color3.new(1, 1, 1)
  779. JumpHacks.TextSize = 20
  780. JumpHacks.MouseButton1Click:connect(function()
  781. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  782. end)
  783.  
  784.  
  785. GravityHacks.Name = "Gravity Hacks"
  786. GravityHacks.Parent = Character2
  787. GravityHacks.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  788. GravityHacks.Position = UDim2.new(0.122093022, 0, 0.775000095, 0)
  789. GravityHacks.Size = UDim2.new(0, 129, 0, 41)
  790. GravityHacks.Font = Enum.Font.SourceSans
  791. GravityHacks.Text = "Gravity Hacks"
  792. GravityHacks.TextColor3 = Color3.new(1, 1, 1)
  793. GravityHacks.TextSize = 20
  794. GravityHacks.MouseButton1Click:connect(function()
  795. game.Workspace.Gravity = 25
  796. end)
  797.  
  798.  
  799. Spawning.Name = "Spawning"
  800. Spawning.Parent = MainFrame
  801. Spawning.BackgroundColor3 = Color3.new(0, 0, 0)
  802. Spawning.Position = UDim2.new(0.0599999987, 0, 0.634760678, 0)
  803. Spawning.Size = UDim2.new(0, 132, 0, 42)
  804. Spawning.Font = Enum.Font.SciFi
  805. Spawning.Text = "Spawning"
  806. Spawning.TextColor3 = Color3.new(1, 1, 1)
  807. Spawning.TextSize = 20
  808. Spawning.TextWrapped = true
  809. Spawning.MouseButton1Down:connect(function()
  810. if Spawning.Text == 'Spawning' then
  811. Spawning2.Visible = true
  812. Spawning.Text = 'Close'
  813. elseif Spawning.Text == 'Close' then
  814. Spawning2.Visible = false
  815. Spawning.Text = 'Spawning'
  816. end
  817. end)
  818.  
  819. Spawning2.Name = "Spawning 2"
  820. Spawning2.Parent = Spawning
  821. Spawning2.Active = true
  822. Spawning2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  823. Spawning2.Position = UDim2.new(1.25757599, 0, -4.53794432, 0)
  824. Spawning2.Selectable = true
  825. Spawning2.Size = UDim2.new(0, 171, 0, 254)
  826. Spawning2.Visible = false
  827.  
  828. Spawncars.Name = "Spawn cars"
  829. Spawncars.Parent = Spawning2
  830. Spawncars.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  831. Spawncars.Position = UDim2.new(0.0584795326, 0, 0.22047244, 0)
  832. Spawncars.Size = UDim2.new(0, 150, 0, 41)
  833. Spawncars.Font = Enum.Font.SourceSans
  834. Spawncars.Text = "Spawn cars"
  835. Spawncars.TextColor3 = Color3.new(1, 1, 1)
  836. Spawncars.TextSize = 20
  837. Spawncars.TextWrapped = true
  838. Spawncars.MouseButton1Click:connect(function()
  839. VehicleSpawn()
  840. VehicleDataBase = true
  841. SpawnVehicles.Text = "SuccessFully Spawned"
  842. SpawnVehicles.TextColor3 = Color3.new(0,185,0)
  843. wait(2.0)
  844. VehicleDataBase = false
  845. SpawnVehicles.Text = "Spawn All Vehicles"
  846. SpawnVehicles.TextColor3 = Color3.new(255,255,255)
  847. end)
  848.  
  849.  
  850. Spawnloot.Name = "Spawn loot"
  851. Spawnloot.Parent = Spawning2
  852. Spawnloot.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  853. Spawnloot.Position = UDim2.new(0.0584795326, 0, 0.586614192, 0)
  854. Spawnloot.Size = UDim2.new(0, 150, 0, 41)
  855. Spawnloot.Font = Enum.Font.SourceSans
  856. Spawnloot.Text = "Spawn loot"
  857. Spawnloot.TextColor3 = Color3.new(1, 1, 1)
  858. Spawnloot.TextSize = 20
  859. Spawnloot.TextWrapped = true
  860. Spawnloot.MouseButton1Click:connect(function()
  861. LootSpawn()
  862. LootDataBase = true
  863. SpawnLoot.Text = "SuccessFully Spawned"
  864. SpawnLoot.TextColor3 = Color3.new(0,185,0)
  865. wait(2.0)
  866. LootDataBase = false
  867. SpawnLoot.Text = "Spawn All Loot"
  868. SpawnLoot.TextColor3 = Color3.new(255,255,255)
  869. end)
  870.  
  871.  
  872. Map.Name = "Map"
  873. Map.Parent = MainFrame
  874. Map.BackgroundColor3 = Color3.new(0, 0, 0)
  875. Map.Position = UDim2.new(0.0599999987, 0, 0.793450892, 0)
  876. Map.Size = UDim2.new(0, 132, 0, 42)
  877. Map.Font = Enum.Font.SciFi
  878. Map.Text = "Map"
  879. Map.TextColor3 = Color3.new(1, 1, 1)
  880. Map.TextSize = 20
  881. Map.TextWrapped = true
  882. Map.MouseButton1Down:connect(function()
  883. if Map.Text == 'Map' then
  884. Map2.Visible = true
  885. Map.Text = 'Close'
  886. elseif Map.Text == 'Close' then
  887. Map2.Visible = false
  888. Map.Text = 'Map'
  889. end
  890. end)
  891.  
  892. Map2.Name = "Map 2"
  893. Map2.Parent = Map
  894. Map2.Active = true
  895. Map2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  896. Map2.Position = UDim2.new(1.37878811, 0, -6.04761887, 0)
  897. Map2.Selectable = true
  898. Map2.Size = UDim2.new(0, 179, 0, 288)
  899. Map2.Visible = false
  900.  
  901. Deletetrees.Name = "Delete trees"
  902. Deletetrees.Parent = Map2
  903. Deletetrees.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  904. Deletetrees.Position = UDim2.new(0.0502793305, 0, 0.197916672, 0)
  905. Deletetrees.Size = UDim2.new(0, 160, 0, 33)
  906. Deletetrees.Font = Enum.Font.SourceSans
  907. Deletetrees.Text = "Delete trees"
  908. Deletetrees.TextColor3 = Color3.new(1, 1, 1)
  909. Deletetrees.TextSize = 20
  910. Deletetrees.MouseButton1Click:connect(function()
  911. KillTrees()
  912. DeleteTrees = true
  913. DelTrees.Text = "SuccessFully Deleted"
  914. DelTrees.TextColor3 = Color3.new(0,185,0)
  915. end)
  916.  
  917.  
  918. Deleteroads.Name = "Delete roads"
  919. Deleteroads.Parent = Map2
  920. Deleteroads.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  921. Deleteroads.Position = UDim2.new(0.0502793305, 0, 0.420138896, 0)
  922. Deleteroads.Size = UDim2.new(0, 160, 0, 33)
  923. Deleteroads.Font = Enum.Font.SourceSans
  924. Deleteroads.Text = "Delete roads"
  925. Deleteroads.TextColor3 = Color3.new(1, 1, 1)
  926. Deleteroads.TextSize = 20
  927. Deleteroads.MouseButton1Click:connect(function()
  928. KillRoads()
  929. DeleteRoads = true
  930. DelRoads.Text = "SuccessFully Deleted"
  931. DelRoads.TextColor3 = Color3.new(0,185,0)
  932. end)
  933.  
  934. Deletebuilding.Name = "Delete building"
  935. Deletebuilding.Parent = Map2
  936. Deletebuilding.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  937. Deletebuilding.Position = UDim2.new(0.0502793305, 0, 0.663194478, 0)
  938. Deletebuilding.Size = UDim2.new(0, 160, 0, 33)
  939. Deletebuilding.Font = Enum.Font.SourceSans
  940. Deletebuilding.Text = "Delete building"
  941. Deletebuilding.TextColor3 = Color3.new(1, 1, 1)
  942. Deletebuilding.TextSize = 20
  943. Deletebuilding.MouseButton1Click:connect(function()
  944. KillBuildings()
  945. DeleteBuildings = true
  946. DelBuildings.Text = "SuccessFully Deleted"
  947. DelBuildings.TextColor3 = Color3.new(0,185,0)
  948. end)
  949. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement