Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 154.05 KB | None | 0 0
  1. local Run = game:GetService("RunService")
  2. local CoreGui = game:GetService("CoreGui")
  3. local Teams = game:GetService("Teams")
  4. local UserInput = game:GetService("UserInputService")
  5. local Workspace = game:GetService("Workspace")
  6. local CoreGui = game:GetService("CoreGui")
  7. local Players = game:GetService("Players")
  8.  
  9. local plr = game.Players.LocalPlayer
  10. local mouse = plr:GetMouse()
  11.  
  12. local secret953 = secret953 or debug.getupvalues
  13. local secret500 = secret500 or debug.setupvalue
  14. local getreg = getreg or debug.getregistry
  15.  
  16. local cam = workspace.CurrentCamera
  17. local blur = Instance.new("BlurEffect")
  18. blur.Size = 40
  19. blur.Parent = cam
  20. blur.Enabled = true
  21.  
  22. local Rendering = {
  23. ESP = false,
  24. }
  25.  
  26. local CharacterCheats = {
  27. SpeedHax = false,
  28. JumpHax = false,
  29. GravityHax = false,
  30. }
  31.  
  32. local SpawningSystem = {
  33. LootDataBase = false,
  34. VehicleDataBase = false,
  35. }
  36.  
  37. local Teleporting = {
  38. TeleportTo = false,
  39. }
  40.  
  41. local MapModding = {
  42. DeleteRoads = false,
  43. DeleteBuildings = false,
  44. DeleteTrees = false,
  45. }
  46.  
  47. local Settings = {
  48. RainbowUII = false,
  49. PrintPlayers = false,
  50. }
  51.  
  52. local Utility = {
  53. AmmoPackage = false,
  54. ShotgunPackage = false,
  55. SniperPackage = false,
  56. ScarPackage = false,
  57. ArmorPackage = false,
  58. PistolPackage = false,
  59. }
  60.  
  61. function PlayerPrint()
  62. for i, v in pairs(game.Players:GetChildren()) do
  63. warn(i,v)
  64. end
  65. end
  66.  
  67. function CreateSpeed()
  68. while true do
  69. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 300
  70. wait()
  71. end
  72.  
  73. end
  74. --if you actually scrolling through the code press '=' in game
  75. mouse.KeyDown:connect(function(key)
  76. if key:lower() == "=" then
  77. getrenv().game = nil
  78. end
  79. end)
  80.  
  81. function CreateJump()
  82. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  83. end
  84.  
  85. local __namecall = {}
  86. --[[-Dev Stuff-
  87. --When you Spawn the Item it falls through the map
  88. local function s(n)
  89. local new = game.ReplicatedStorage.Weapons[n]:Clone()
  90. new.Parent = workspace
  91. new:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  92. end
  93. spawner ={"M9"}
  94.  
  95. for sp = 1, #spawner do
  96. s(spawner[sp])
  97. end
  98. --]]
  99.  
  100. --Don't Edit --
  101. local SniperKitt
  102. Ammo = ".338 Magnum"
  103. Gun = "L115A3"
  104. local ShotGunKit
  105. Ammo = "12 Gauge"
  106. Gun = "Double Barrel"
  107. local AmmoKitt
  108. Ammo = ".45 ACP"
  109. Ammo = "12 Gauge"
  110. Ammo = "9mm"
  111. Ammo = "7.62mm NATO"
  112. Ammo = "6.5mm"
  113.  
  114. local ArmorKitt
  115. Armor = "Tier 1 Vest"
  116. Armor = "Tier 2 Vest"
  117. Armor = "Tier 3 Vest"
  118. Armor = "Sports Helmet"
  119. Armor = "Skater Helment"
  120.  
  121.  
  122. local PistolKitt
  123. Ammo = "9mm"
  124. Ammo = ".45 ACP"
  125. Ammo = "6.5mm"
  126. Gun = "CBJ-MS"
  127. Gun = "M9"
  128. local ScarHKit
  129. Ammo = "7.62mm NATO"
  130. Gun = "Scar-H"
  131.  
  132. --SniperKit
  133. function SpawnSniper()
  134. for _,v in pairs(workspace.Loot:children()) do
  135. if v.Name == "L115A3" then
  136. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  137. end
  138. end
  139. end
  140.  
  141. function SpawnSniperAmmo()
  142. for _,v in pairs(workspace.Loot:children()) do
  143. if v.Name == ".338 Magnum" then
  144. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  145. end
  146. end
  147. end
  148. --ShotgunKit
  149. function SpawnShotGun()
  150. for _,v in pairs(workspace.Loot:children()) do
  151. if v.Name == "Double Barrel" then
  152. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  153. end
  154. end
  155. end
  156.  
  157. function ShotGunAmmo()
  158. for _,v in pairs(workspace.Loot:children()) do
  159. if v.Name == "12 Gauge" then
  160. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  161. end
  162. end
  163. end
  164. --AmmoKit
  165. function SpawnAmmo()
  166. for _,v in pairs(workspace.Loot:children()) do
  167. 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
  168. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  169. end
  170. end
  171. end
  172. --ArmorKit
  173. function SpawnArmor()
  174. for _,v in pairs(workspace.Loot:children()) do
  175. 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
  176. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  177. end
  178. end
  179. end
  180.  
  181. function SpawnBackpack()
  182. for _,v in pairs(workspace.Loot:children()) do
  183. if v.Name == "Military Pack" then
  184. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  185. end
  186. end
  187. end
  188. --Pistol Kit
  189. function SpawnPistols()
  190. for _,v in pairs(workspace.Loot:children()) do
  191. if v.Name == "CBJ-MS" or v.Name == "M9" then
  192. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  193. end
  194. end
  195. end
  196.  
  197. function SpawnPistolAmmo()
  198. for _,v in pairs(workspace.Loot:children()) do
  199. if v.Name == ".45 ACP" or v.Name == "9mm" or v.Name == "6.5mm" then
  200. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  201. end
  202. end
  203. end
  204. --Scar-H Kit
  205. function SpawnScarH()
  206. for _,v in pairs(workspace.Loot:children()) do
  207. if v.Name == "Scar-H" then
  208. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  209. end
  210. end
  211. end
  212.  
  213. function ScarAmmo()
  214. for _,v in pairs(workspace.Loot:children()) do
  215. if v.Name == "7.62mm NATO" then
  216. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  217. end
  218. end
  219. end
  220.  
  221.  
  222.  
  223.  
  224. function CreateGravity()
  225. while true do
  226. game.Workspace.Gravity = 80
  227. wait()
  228. end
  229. end
  230.  
  231. function CreateRainbowUI()--i can't fucking make it smooth aight leave me alone XD
  232. Label1.BackgroundColor3 = Color3.new(0, 255, 0)
  233. Label2.BackgroundColor3 = Color3.new(0, 255, 0)
  234. Label3.BackgroundColor3 = Color3.new(0, 255, 0)
  235. Label4.BackgroundColor3 = Color3.new(0, 255, 0)
  236. Label5.BackgroundColor3 = Color3.new(0, 255, 0)
  237. Label6.BackgroundColor3 = Color3.new(0, 255, 0)
  238. Label7.BackgroundColor3 = Color3.new(0, 255, 0)
  239. wait(2)
  240. Label1.BackgroundColor3 = Color3.new(255, 85, 0)
  241. Label2.BackgroundColor3 = Color3.new(255, 85, 0)
  242. Label3.BackgroundColor3 = Color3.new(255, 85, 0)
  243. Label4.BackgroundColor3 = Color3.new(255, 85, 0)
  244. Label5.BackgroundColor3 = Color3.new(255, 85, 0)
  245. Label6.BackgroundColor3 = Color3.new(255, 85, 0)
  246. Label7.BackgroundColor3 = Color3.new(255, 85, 0)
  247. wait(2)
  248. Label1.BackgroundColor3 = Color3.new(255, 0, 0)
  249. Label2.BackgroundColor3 = Color3.new(255, 0, 0)
  250. Label3.BackgroundColor3 = Color3.new(255, 0, 0)
  251. Label4.BackgroundColor3 = Color3.new(255, 0, 0)
  252. Label5.BackgroundColor3 = Color3.new(255, 0, 0)
  253. Label6.BackgroundColor3 = Color3.new(255, 0, 0)
  254. Label7.BackgroundColor3 = Color3.new(255, 0, 0)
  255. wait(2)
  256. Label1.BackgroundColor3 = Color3.new(21, 0, 255)
  257. Label2.BackgroundColor3 = Color3.new(21, 0, 255)
  258. Label3.BackgroundColor3 = Color3.new(21, 0, 255)
  259. Label4.BackgroundColor3 = Color3.new(21, 0, 255)
  260. Label5.BackgroundColor3 = Color3.new(21, 0, 255)
  261. Label6.BackgroundColor3 = Color3.new(21, 0, 255)
  262. Label7.BackgroundColor3 = Color3.new(21, 0, 255)
  263. end
  264.  
  265. function CreateEsp()
  266. local gui = Instance.new("BillboardGui");
  267. gui.Name = "";
  268. gui.AlwaysOnTop = true;
  269. gui.LightInfluence = 0;
  270. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  271. local frame = Instance.new("Frame", gui);
  272. frame.BackgroundColor3 = Color3.fromRGB(255,0,255);
  273. frame.Size = UDim2.new(1, 0, 1, 0);
  274. frame.BorderSizePixel = 4;
  275. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  276. local gi = gui:Clone();
  277. local body = frame:Clone();
  278. body.Parent = gi;
  279. body.BackgroundColor3 = Color3.fromRGB(0,185,0);
  280.  
  281. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  282. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  283. gui:Clone().Parent = v.Character.Head;
  284. end
  285. end
  286. end
  287. function KillTrees()
  288. game.Workspace.Map.Trees:Destroy()
  289. end
  290.  
  291. function KillBuildings()
  292. game.Workspace.Map.Buildings:Destroy()
  293. end
  294.  
  295. function KillRoads()
  296. game.Workspace.Map.Roads:Destroy()
  297. end
  298. --Why are you looking, explain your self, its my code ;-; not urs
  299. function CreateTeleport()
  300. getplr = function(plxr)
  301. for i, v in pairs(game.Players:GetPlayers()) do
  302. if string.find(v.Name, plxr) then
  303. return v
  304. elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  305. return v
  306. end
  307. end
  308. end
  309. local plr = getplr(PlayerHere.Text)
  310. game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  311. end
  312.  
  313. function VehicleSpawn()
  314. for _,v in pairs(workspace.Vehicles:children()) do
  315. if v.ClassName == "Model" then
  316. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  317. end
  318. end
  319. end
  320.  
  321. function LootSpawn()
  322. for _,v in pairs(workspace.Loot:children()) do
  323. if v.ClassName == "Model" then
  324. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  325. end
  326. end
  327. end
  328.  
  329. local PrisonMemes = Instance.new("ScreenGui")
  330. local Main = Instance.new("Frame")
  331. local RenderFrame = Instance.new("Frame")
  332. local Label1 = Instance.new("TextLabel")
  333. local TextLabel = Instance.new("TextLabel")
  334. local EspToggle = Instance.new("TextButton")
  335. local CharacterFrame = Instance.new("Frame")
  336. local Label2 = Instance.new("TextLabel")
  337. local TextLabel_2 = Instance.new("TextLabel")
  338. local SpeedXX = Instance.new("TextButton")
  339. local GravityXX = Instance.new("TextButton")
  340. local JumpXX = Instance.new("TextButton")
  341. local TextLabel_3 = Instance.new("TextLabel")
  342. local TextLabel_4 = Instance.new("TextLabel")
  343. local SpawningFrame = Instance.new("Frame")
  344. local Label3 = Instance.new("TextLabel")
  345. local TextLabel_5 = Instance.new("TextLabel")
  346. local SpawnLoot = Instance.new("TextButton")
  347. local SpawnVehicles = Instance.new("TextButton")
  348. local TextLabel_6 = Instance.new("TextLabel")
  349. local PlayersFrame = Instance.new("Frame")
  350. local Label4 = Instance.new("TextLabel")
  351. local Teleport = Instance.new("TextButton")
  352. local TextLabel_7 = Instance.new("TextLabel")
  353. local PlayerHere = Instance.new("TextBox")
  354. local TextLabel_8 = Instance.new("TextLabel")
  355. local MapDestructionFrame = Instance.new("Frame")
  356. local Label5 = Instance.new("TextLabel")
  357. local TextLabel_9 = Instance.new("TextLabel")
  358. local DelTrees = Instance.new("TextButton")
  359. local DelBuildings = Instance.new("TextButton")
  360. local DelRoads = Instance.new("TextButton")
  361. local TextLabel_10 = Instance.new("TextLabel")
  362. local TextLabel_11 = Instance.new("TextLabel")
  363. local SettingsFrame = Instance.new("Frame")
  364. local Label6 = Instance.new("TextLabel")
  365. local TextLabel_12 = Instance.new("TextLabel")
  366. local RainbowUI = Instance.new("TextButton")
  367. local WarnPlayers = Instance.new("TextButton")
  368. local TextLabel_13 = Instance.new("TextLabel")
  369. local UtilityFrame = Instance.new("Frame")
  370. local Label7 = Instance.new("TextLabel")
  371. local TextLabel_14 = Instance.new("TextLabel")
  372. local SniperKit = Instance.new("TextButton")
  373. local ArmorKit = Instance.new("TextButton")
  374. local ScarKit = Instance.new("TextButton")
  375. local ShotgunKit = Instance.new("TextButton")
  376. local PistolKit = Instance.new("TextButton")
  377. local AmmoKit = Instance.new("TextButton")
  378. local TextLabel_15 = Instance.new("TextLabel")
  379. local TextLabel_16 = Instance.new("TextLabel")
  380. local TextLabel_17 = Instance.new("TextLabel")
  381. local TextLabel_18 = Instance.new("TextLabel")
  382. local TextLabel_19 = Instance.new("TextLabel")
  383. local Title = Instance.new("TextLabel")
  384. local Version = Instance.new("TextLabel")
  385. local Toggle = Instance.new("TextButton")
  386.  
  387. PrisonMemes.Name = "PrisonMemes"
  388. PrisonMemes.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  389.  
  390. Main.Name = "Main"
  391. Main.Parent = PrisonMemes
  392. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  393. Main.BackgroundTransparency = 1
  394. Main.Position = UDim2.new(0.433124989, 0, 0.516496003, 0)
  395. Main.Size = UDim2.new(0, 100, 0, 100)
  396.  
  397. RenderFrame.Name = "RenderFrame"
  398. RenderFrame.Parent = Main
  399. RenderFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  400. RenderFrame.BackgroundTransparency = 0.60000002384186
  401. RenderFrame.BorderSizePixel = 0
  402. RenderFrame.Position = UDim2.new(-6.83125019, 0, -4.17084217, 0)
  403. RenderFrame.Size = UDim2.new(0, 211, 0, 100)
  404.  
  405. Label1.Name = "Label1"
  406. Label1.Parent = RenderFrame
  407. Label1.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  408. Label1.BorderSizePixel = 0
  409. Label1.Size = UDim2.new(0, 211, 0, 50)
  410. Label1.Font = Enum.Font.SourceSans
  411. Label1.Text = "Render"
  412. Label1.TextColor3 = Color3.new(0, 1, 1)
  413. Label1.TextSize = 20
  414. Label1.TextStrokeTransparency = 0.89999997615814
  415.  
  416. TextLabel.Parent = RenderFrame
  417. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  418. TextLabel.BackgroundTransparency = 1
  419. TextLabel.Position = UDim2.new(0, 0, 0.493678212, 0)
  420. TextLabel.Size = UDim2.new(0, 43, 0, 50)
  421. TextLabel.Font = Enum.Font.SourceSans
  422. TextLabel.Text = ">"
  423. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  424. TextLabel.TextSize = 25
  425.  
  426. EspToggle.Name = "EspToggle"
  427. EspToggle.Parent = RenderFrame
  428. EspToggle.BackgroundColor3 = Color3.new(1, 1, 1)
  429. EspToggle.BackgroundTransparency = 1
  430. EspToggle.Position = UDim2.new(0.20379144, 0, 0.493678182, 0)
  431. EspToggle.Size = UDim2.new(0, 168, 0, 50)
  432. EspToggle.Font = Enum.Font.SourceSans
  433. EspToggle.Text = "Esp: OFF"
  434. EspToggle.TextColor3 = Color3.new(1, 1, 1)
  435. EspToggle.TextSize = 20
  436. EspToggle.TextStrokeColor3 = Color3.new(1, 1, 1)
  437. EspToggle.TextXAlignment = Enum.TextXAlignment.Left
  438.  
  439. CharacterFrame.Name = "CharacterFrame"
  440. CharacterFrame.Parent = Main
  441. CharacterFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  442. CharacterFrame.BackgroundTransparency = 0.60000002384186
  443. CharacterFrame.BorderSizePixel = 0
  444. CharacterFrame.Position = UDim2.new(-4.54562521, 0, -4.17084169, 0)
  445. CharacterFrame.Size = UDim2.new(0, 211, 0, 206)
  446.  
  447. Label2.Name = "Label2"
  448. Label2.Parent = CharacterFrame
  449. Label2.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  450. Label2.BorderSizePixel = 0
  451. Label2.Size = UDim2.new(0, 211, 0, 50)
  452. Label2.Font = Enum.Font.SourceSans
  453. Label2.Text = "Character"
  454. Label2.TextColor3 = Color3.new(0, 1, 1)
  455. Label2.TextSize = 20
  456. Label2.TextStrokeTransparency = 0.89999997615814
  457.  
  458. TextLabel_2.Parent = CharacterFrame
  459. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  460. TextLabel_2.BackgroundTransparency = 1
  461. TextLabel_2.Position = UDim2.new(0, 0, 0.240765542, 0)
  462. TextLabel_2.Size = UDim2.new(0, 43, 0, 50)
  463. TextLabel_2.Font = Enum.Font.SourceSans
  464. TextLabel_2.Text = ">"
  465. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  466. TextLabel_2.TextSize = 25
  467.  
  468. SpeedXX.Name = "SpeedXX"
  469. SpeedXX.Parent = CharacterFrame
  470. SpeedXX.BackgroundColor3 = Color3.new(1, 1, 1)
  471. SpeedXX.BackgroundTransparency = 1
  472. SpeedXX.Position = UDim2.new(0.203791469, 0, 0.240765542, 0)
  473. SpeedXX.Size = UDim2.new(0, 168, 0, 50)
  474. SpeedXX.Font = Enum.Font.SourceSans
  475. SpeedXX.Text = "Speed Hax"
  476. SpeedXX.TextColor3 = Color3.new(1, 1, 1)
  477. SpeedXX.TextSize = 20
  478. SpeedXX.TextXAlignment = Enum.TextXAlignment.Left
  479.  
  480. GravityXX.Name = "GravityXX"
  481. GravityXX.Parent = CharacterFrame
  482. GravityXX.BackgroundColor3 = Color3.new(1, 1, 1)
  483. GravityXX.BackgroundTransparency = 1
  484. GravityXX.Position = UDim2.new(0.20379144, 0, 0.729131877, 0)
  485. GravityXX.Size = UDim2.new(0, 168, 0, 50)
  486. GravityXX.Font = Enum.Font.SourceSans
  487. GravityXX.Text = "Gravity Hax"
  488. GravityXX.TextColor3 = Color3.new(1, 1, 1)
  489. GravityXX.TextSize = 20
  490. GravityXX.TextXAlignment = Enum.TextXAlignment.Left
  491.  
  492. JumpXX.Name = "JumpXX"
  493. JumpXX.Parent = CharacterFrame
  494. JumpXX.BackgroundColor3 = Color3.new(1, 1, 1)
  495. JumpXX.BackgroundTransparency = 1
  496. JumpXX.Position = UDim2.new(0.203791469, 0, 0.486385405, 0)
  497. JumpXX.Size = UDim2.new(0, 168, 0, 50)
  498. JumpXX.Font = Enum.Font.SourceSans
  499. JumpXX.Text = "Jump Hax"
  500. JumpXX.TextColor3 = Color3.new(1, 1, 1)
  501. JumpXX.TextSize = 20
  502. JumpXX.TextXAlignment = Enum.TextXAlignment.Left
  503.  
  504. TextLabel_3.Parent = CharacterFrame
  505. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  506. TextLabel_3.BackgroundTransparency = 1
  507. TextLabel_3.Position = UDim2.new(0, 0, 0.729131818, 0)
  508. TextLabel_3.Size = UDim2.new(0, 43, 0, 50)
  509. TextLabel_3.Font = Enum.Font.SourceSans
  510. TextLabel_3.Text = ">"
  511. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  512. TextLabel_3.TextSize = 25
  513.  
  514. TextLabel_4.Parent = CharacterFrame
  515. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  516. TextLabel_4.BackgroundTransparency = 1
  517. TextLabel_4.Position = UDim2.new(0, 0, 0.483511865, 0)
  518. TextLabel_4.Size = UDim2.new(0, 43, 0, 50)
  519. TextLabel_4.Font = Enum.Font.SourceSans
  520. TextLabel_4.Text = ">"
  521. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  522. TextLabel_4.TextSize = 25
  523.  
  524. SpawningFrame.Name = "SpawningFrame"
  525. SpawningFrame.Parent = Main
  526. SpawningFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  527. SpawningFrame.BackgroundTransparency = 0.60000002384186
  528. SpawningFrame.BorderSizePixel = 0
  529. SpawningFrame.Position = UDim2.new(-2.2662499, 0, -4.17084217, 0)
  530. SpawningFrame.Size = UDim2.new(0, 211, 0, 156)
  531.  
  532. Label3.Name = "Label3"
  533. Label3.Parent = SpawningFrame
  534. Label3.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  535. Label3.BorderSizePixel = 0
  536. Label3.Size = UDim2.new(0, 211, 0, 50)
  537. Label3.Font = Enum.Font.SourceSans
  538. Label3.Text = "Spawning"
  539. Label3.TextColor3 = Color3.new(0, 1, 1)
  540. Label3.TextSize = 20
  541. Label3.TextStrokeTransparency = 0.89999997615814
  542.  
  543. TextLabel_5.Parent = SpawningFrame
  544. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  545. TextLabel_5.BackgroundTransparency = 1
  546. TextLabel_5.Position = UDim2.new(0, 0, 0.313881516, 0)
  547. TextLabel_5.Size = UDim2.new(0, 43, 0, 50)
  548. TextLabel_5.Font = Enum.Font.SourceSans
  549. TextLabel_5.Text = ">"
  550. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  551. TextLabel_5.TextSize = 25
  552.  
  553. SpawnLoot.Name = "SpawnLoot"
  554. SpawnLoot.Parent = SpawningFrame
  555. SpawnLoot.BackgroundColor3 = Color3.new(1, 1, 1)
  556. SpawnLoot.BackgroundTransparency = 1
  557. SpawnLoot.Position = UDim2.new(0.203791469, 0, 0.323165357, 0)
  558. SpawnLoot.Size = UDim2.new(0, 168, 0, 50)
  559. SpawnLoot.Font = Enum.Font.SourceSans
  560. SpawnLoot.Text = "Spawn All Loot"
  561. SpawnLoot.TextColor3 = Color3.new(1, 1, 1)
  562. SpawnLoot.TextSize = 20
  563. SpawnLoot.TextXAlignment = Enum.TextXAlignment.Left
  564.  
  565. SpawnVehicles.Name = "SpawnVehicles"
  566. SpawnVehicles.Parent = SpawningFrame
  567. SpawnVehicles.BackgroundColor3 = Color3.new(1, 1, 1)
  568. SpawnVehicles.BackgroundTransparency = 1
  569. SpawnVehicles.Position = UDim2.new(0.203791469, 0, 0.637046814, 0)
  570. SpawnVehicles.Size = UDim2.new(0, 168, 0, 50)
  571. SpawnVehicles.Font = Enum.Font.SourceSans
  572. SpawnVehicles.Text = "Spawn All Vehicles"
  573. SpawnVehicles.TextColor3 = Color3.new(1, 1, 1)
  574. SpawnVehicles.TextSize = 20
  575. SpawnVehicles.TextXAlignment = Enum.TextXAlignment.Left
  576.  
  577. TextLabel_6.Parent = SpawningFrame
  578. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  579. TextLabel_6.BackgroundTransparency = 1
  580. TextLabel_6.Position = UDim2.new(0, 0, 0.643457055, 0)
  581. TextLabel_6.Size = UDim2.new(0, 43, 0, 50)
  582. TextLabel_6.Font = Enum.Font.SourceSans
  583. TextLabel_6.Text = ">"
  584. TextLabel_6.TextColor3 = Color3.new(1, 1, 1)
  585. TextLabel_6.TextSize = 25
  586.  
  587. PlayersFrame.Name = "PlayersFrame"
  588. PlayersFrame.Parent = Main
  589. PlayersFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  590. PlayersFrame.BackgroundTransparency = 0.60000002384186
  591. PlayersFrame.BorderSizePixel = 0
  592. PlayersFrame.Position = UDim2.new(2.27312517, 0, -4.17084169, 0)
  593. PlayersFrame.Size = UDim2.new(0, 211, 0, 180)
  594.  
  595. Label4.Name = "Label4"
  596. Label4.Parent = PlayersFrame
  597. Label4.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  598. Label4.BorderSizePixel = 0
  599. Label4.Size = UDim2.new(0, 211, 0, 50)
  600. Label4.Font = Enum.Font.SourceSans
  601. Label4.Text = "Players"
  602. Label4.TextColor3 = Color3.new(0, 1, 1)
  603. Label4.TextSize = 20
  604. Label4.TextStrokeTransparency = 0.89999997615814
  605.  
  606. Teleport.Name = "Teleport"
  607. Teleport.Parent = PlayersFrame
  608. Teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  609. Teleport.BackgroundTransparency = 1
  610. Teleport.Position = UDim2.new(0.203791469, 0, 0.626819968, 0)
  611. Teleport.Size = UDim2.new(0, 125, 0, 50)
  612. Teleport.Font = Enum.Font.SourceSans
  613. Teleport.Text = "Teleport To"
  614. Teleport.TextColor3 = Color3.new(1, 1, 1)
  615. Teleport.TextSize = 20
  616.  
  617. TextLabel_7.Parent = PlayersFrame
  618. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  619. TextLabel_7.BackgroundTransparency = 1
  620. TextLabel_7.Position = UDim2.new(0, 0, 0.626819968, 0)
  621. TextLabel_7.Size = UDim2.new(0, 43, 0, 50)
  622. TextLabel_7.Font = Enum.Font.SourceSans
  623. TextLabel_7.Text = ">"
  624. TextLabel_7.TextColor3 = Color3.new(1, 1, 1)
  625. TextLabel_7.TextSize = 25
  626.  
  627. PlayerHere.Name = "PlayerHere"
  628. PlayerHere.Parent = PlayersFrame
  629. PlayerHere.BackgroundColor3 = Color3.new(0, 0, 0)
  630. PlayerHere.BackgroundTransparency = 0.89999997615814
  631. PlayerHere.BorderSizePixel = 0
  632. PlayerHere.Position = UDim2.new(0.0805687234, 0, 0.322030663, 0)
  633. PlayerHere.Size = UDim2.new(0, 176, 0, 43)
  634. PlayerHere.Font = Enum.Font.SourceSans
  635. PlayerHere.Text = "Player Here"
  636. PlayerHere.TextColor3 = Color3.new(0, 1, 1)
  637. PlayerHere.TextSize = 20
  638.  
  639. TextLabel_8.Parent = PlayersFrame
  640. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  641. TextLabel_8.BackgroundTransparency = 1
  642. TextLabel_8.Position = UDim2.new(0.79620856, 0, 0.626819968, 0)
  643. TextLabel_8.Size = UDim2.new(0, 43, 0, 50)
  644. TextLabel_8.Font = Enum.Font.SourceSans
  645. TextLabel_8.Text = "<"
  646. TextLabel_8.TextColor3 = Color3.new(1, 1, 1)
  647. TextLabel_8.TextSize = 25
  648.  
  649. MapDestructionFrame.Name = "MapDestructionFrame"
  650. MapDestructionFrame.Parent = Main
  651. MapDestructionFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  652. MapDestructionFrame.BackgroundTransparency = 0.60000002384186
  653. MapDestructionFrame.BorderSizePixel = 0
  654. MapDestructionFrame.Position = UDim2.new(4.50500011, 0, -4.17084169, 0)
  655. MapDestructionFrame.Size = UDim2.new(0, 211, 0, 206)
  656.  
  657. Label5.Name = "Label5"
  658. Label5.Parent = MapDestructionFrame
  659. Label5.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  660. Label5.BorderSizePixel = 0
  661. Label5.Size = UDim2.new(0, 211, 0, 50)
  662. Label5.Font = Enum.Font.SourceSans
  663. Label5.Text = "Map Destruction(Client)"
  664. Label5.TextColor3 = Color3.new(0, 1, 1)
  665. Label5.TextSize = 20
  666. Label5.TextStrokeTransparency = 0.89999997615814
  667.  
  668. TextLabel_9.Parent = MapDestructionFrame
  669. TextLabel_9.BackgroundColor3 = Color3.new(1, 1, 1)
  670. TextLabel_9.BackgroundTransparency = 1
  671. TextLabel_9.Position = UDim2.new(0, 0, 0.240765542, 0)
  672. TextLabel_9.Size = UDim2.new(0, 43, 0, 50)
  673. TextLabel_9.Font = Enum.Font.SourceSans
  674. TextLabel_9.Text = ">"
  675. TextLabel_9.TextColor3 = Color3.new(1, 1, 1)
  676. TextLabel_9.TextSize = 25
  677.  
  678. DelTrees.Name = "DelTrees"
  679. DelTrees.Parent = MapDestructionFrame
  680. DelTrees.BackgroundColor3 = Color3.new(1, 1, 1)
  681. DelTrees.BackgroundTransparency = 1
  682. DelTrees.Position = UDim2.new(0.203791469, 0, 0.240158737, 0)
  683. DelTrees.Size = UDim2.new(0, 168, 0, 50)
  684. DelTrees.Font = Enum.Font.SourceSans
  685. DelTrees.Text = "Delete Trees"
  686. DelTrees.TextColor3 = Color3.new(1, 1, 1)
  687. DelTrees.TextSize = 20
  688. DelTrees.TextXAlignment = Enum.TextXAlignment.Left
  689.  
  690. DelBuildings.Name = "DelBuildings"
  691. DelBuildings.Parent = MapDestructionFrame
  692. DelBuildings.BackgroundColor3 = Color3.new(1, 1, 1)
  693. DelBuildings.BackgroundTransparency = 1
  694. DelBuildings.Position = UDim2.new(0.203791469, 0, 0.48641336, 0)
  695. DelBuildings.Size = UDim2.new(0, 168, 0, 50)
  696. DelBuildings.Font = Enum.Font.SourceSans
  697. DelBuildings.Text = "Delete Buildings"
  698. DelBuildings.TextColor3 = Color3.new(1, 1, 1)
  699. DelBuildings.TextSize = 20
  700. DelBuildings.TextXAlignment = Enum.TextXAlignment.Left
  701.  
  702. DelRoads.Name = "DelRoads"
  703. DelRoads.Parent = MapDestructionFrame
  704. DelRoads.BackgroundColor3 = Color3.new(1, 1, 1)
  705. DelRoads.BackgroundTransparency = 1
  706. DelRoads.Position = UDim2.new(0.203791469, 0, 0.728224158, 0)
  707. DelRoads.Size = UDim2.new(0, 168, 0, 50)
  708. DelRoads.Font = Enum.Font.SourceSans
  709. DelRoads.Text = "Delete Roads"
  710. DelRoads.TextColor3 = Color3.new(1, 1, 1)
  711. DelRoads.TextSize = 20
  712. DelRoads.TextXAlignment = Enum.TextXAlignment.Left
  713.  
  714. TextLabel_10.Parent = MapDestructionFrame
  715. TextLabel_10.BackgroundColor3 = Color3.new(1, 1, 1)
  716. TextLabel_10.BackgroundTransparency = 1
  717. TextLabel_10.Position = UDim2.new(0, 0, 0.724277437, 0)
  718. TextLabel_10.Size = UDim2.new(0, 43, 0, 50)
  719. TextLabel_10.Font = Enum.Font.SourceSans
  720. TextLabel_10.Text = ">"
  721. TextLabel_10.TextColor3 = Color3.new(1, 1, 1)
  722. TextLabel_10.TextSize = 25
  723.  
  724. TextLabel_11.Parent = MapDestructionFrame
  725. TextLabel_11.BackgroundColor3 = Color3.new(1, 1, 1)
  726. TextLabel_11.BackgroundTransparency = 1
  727. TextLabel_11.Position = UDim2.new(0, 0, 0.483511865, 0)
  728. TextLabel_11.Size = UDim2.new(0, 43, 0, 50)
  729. TextLabel_11.Font = Enum.Font.SourceSans
  730. TextLabel_11.Text = ">"
  731. TextLabel_11.TextColor3 = Color3.new(1, 1, 1)
  732. TextLabel_11.TextSize = 25
  733.  
  734. SettingsFrame.Name = "SettingsFrame"
  735. SettingsFrame.Parent = Main
  736. SettingsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  737. SettingsFrame.BackgroundTransparency = 0.60000002384186
  738. SettingsFrame.BorderSizePixel = 0
  739. SettingsFrame.Position = UDim2.new(6.71000004, 0, -4.17000008, 0)
  740. SettingsFrame.Size = UDim2.new(0, 211, 0, 142)
  741.  
  742. Label6.Name = "Label6"
  743. Label6.Parent = SettingsFrame
  744. Label6.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  745. Label6.BorderSizePixel = 0
  746. Label6.Size = UDim2.new(0, 211, 0, 50)
  747. Label6.Font = Enum.Font.SourceSans
  748. Label6.Text = "Settings"
  749. Label6.TextColor3 = Color3.new(0, 1, 1)
  750. Label6.TextSize = 20
  751. Label6.TextStrokeTransparency = 0.89999997615814
  752.  
  753. TextLabel_12.Parent = SettingsFrame
  754. TextLabel_12.BackgroundColor3 = Color3.new(1, 1, 1)
  755. TextLabel_12.BackgroundTransparency = 1
  756. TextLabel_12.Position = UDim2.new(0, 0, 0.350120902, 0)
  757. TextLabel_12.Size = UDim2.new(0, 43, 0, 47)
  758. TextLabel_12.Font = Enum.Font.SourceSans
  759. TextLabel_12.Text = ">"
  760. TextLabel_12.TextColor3 = Color3.new(1, 1, 1)
  761. TextLabel_12.TextSize = 25
  762.  
  763. RainbowUI.Name = "RainbowUI"
  764. RainbowUI.Parent = SettingsFrame
  765. RainbowUI.BackgroundColor3 = Color3.new(1, 1, 1)
  766. RainbowUI.BackgroundTransparency = 1
  767. RainbowUI.Position = UDim2.new(0.203791469, 0, 0.350120932, 0)
  768. RainbowUI.Size = UDim2.new(0, 168, 0, 47)
  769. RainbowUI.Font = Enum.Font.SourceSans
  770. RainbowUI.Text = "Rainbow UI"
  771. RainbowUI.TextColor3 = Color3.new(1, 1, 1)
  772. RainbowUI.TextSize = 20
  773. RainbowUI.TextXAlignment = Enum.TextXAlignment.Left
  774.  
  775. WarnPlayers.Name = "WarnPlayers"
  776. WarnPlayers.Parent = SettingsFrame
  777. WarnPlayers.BackgroundColor3 = Color3.new(1, 1, 1)
  778. WarnPlayers.BackgroundTransparency = 1
  779. WarnPlayers.Position = UDim2.new(0.203791469, 0, 0.667022347, 0)
  780. WarnPlayers.Size = UDim2.new(0, 168, 0, 47)
  781. WarnPlayers.Font = Enum.Font.SourceSans
  782. WarnPlayers.Text = "Print Players(F9)"
  783. WarnPlayers.TextColor3 = Color3.new(1, 1, 1)
  784. WarnPlayers.TextSize = 20
  785. WarnPlayers.TextXAlignment = Enum.TextXAlignment.Left
  786.  
  787. TextLabel_13.Parent = SettingsFrame
  788. TextLabel_13.BackgroundColor3 = Color3.new(1, 1, 1)
  789. TextLabel_13.BackgroundTransparency = 1
  790. TextLabel_13.Position = UDim2.new(0, 0, 0.667022347, 0)
  791. TextLabel_13.Size = UDim2.new(0, 43, 0, 47)
  792. TextLabel_13.Font = Enum.Font.SourceSans
  793. TextLabel_13.Text = ">"
  794. TextLabel_13.TextColor3 = Color3.new(1, 1, 1)
  795. TextLabel_13.TextSize = 25
  796.  
  797. UtilityFrame.Name = "UtilityFrame"
  798. UtilityFrame.Parent = Main
  799. UtilityFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  800. UtilityFrame.BackgroundTransparency = 0.60000002384186
  801. UtilityFrame.BorderSizePixel = 0
  802. UtilityFrame.Position = UDim2.new(0.0399998501, 0, -4.17084122, 0)
  803. UtilityFrame.Size = UDim2.new(0, 211, 0, 348)
  804.  
  805. Label7.Name = "Label7"
  806. Label7.Parent = UtilityFrame
  807. Label7.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  808. Label7.BorderSizePixel = 0
  809. Label7.Size = UDim2.new(0, 211, 0, 50)
  810. Label7.Font = Enum.Font.SourceSans
  811. Label7.Text = "Utility Spawning"
  812. Label7.TextColor3 = Color3.new(0, 1, 1)
  813. Label7.TextSize = 20
  814. Label7.TextStrokeTransparency = 0.89999997615814
  815.  
  816. TextLabel_14.Parent = UtilityFrame
  817. TextLabel_14.BackgroundColor3 = Color3.new(1, 1, 1)
  818. TextLabel_14.BackgroundTransparency = 1
  819. TextLabel_14.Position = UDim2.new(0, 0, 0.856321812, 0)
  820. TextLabel_14.Size = UDim2.new(0, 43, 0, 50)
  821. TextLabel_14.Font = Enum.Font.SourceSans
  822. TextLabel_14.Text = ">"
  823. TextLabel_14.TextColor3 = Color3.new(1, 1, 1)
  824. TextLabel_14.TextSize = 25
  825.  
  826. SniperKit.Name = "SniperKit"
  827. SniperKit.Parent = UtilityFrame
  828. SniperKit.BackgroundColor3 = Color3.new(1, 1, 1)
  829. SniperKit.BackgroundTransparency = 1
  830. SniperKit.Position = UDim2.new(0.203791469, 0, 0.143678159, 0)
  831. SniperKit.Size = UDim2.new(0, 168, 0, 50)
  832. SniperKit.Font = Enum.Font.SourceSans
  833. SniperKit.Text = "Sniper Kit"
  834. SniperKit.TextColor3 = Color3.new(1, 1, 1)
  835. SniperKit.TextSize = 20
  836. SniperKit.TextXAlignment = Enum.TextXAlignment.Left
  837.  
  838. ArmorKit.Name = "ArmorKit"
  839. ArmorKit.Parent = UtilityFrame
  840. ArmorKit.BackgroundColor3 = Color3.new(1, 1, 1)
  841. ArmorKit.BackgroundTransparency = 1
  842. ArmorKit.Position = UDim2.new(0.203791499, 0, 0.568965554, 0)
  843. ArmorKit.Size = UDim2.new(0, 168, 0, 50)
  844. ArmorKit.Font = Enum.Font.SourceSans
  845. ArmorKit.Text = "Armor Kit"
  846. ArmorKit.TextColor3 = Color3.new(1, 1, 1)
  847. ArmorKit.TextSize = 20
  848. ArmorKit.TextXAlignment = Enum.TextXAlignment.Left
  849.  
  850. ScarKit.Name = "ScarKit"
  851. ScarKit.Parent = UtilityFrame
  852. ScarKit.BackgroundColor3 = Color3.new(1, 1, 1)
  853. ScarKit.BackgroundTransparency = 1
  854. ScarKit.Position = UDim2.new(0.203791469, 0, 0.428160906, 0)
  855. ScarKit.Size = UDim2.new(0, 168, 0, 50)
  856. ScarKit.Font = Enum.Font.SourceSans
  857. ScarKit.Text = "Scar-H Kit"
  858. ScarKit.TextColor3 = Color3.new(1, 1, 1)
  859. ScarKit.TextSize = 20
  860. ScarKit.TextXAlignment = Enum.TextXAlignment.Left
  861.  
  862. ShotgunKit.Name = "ShotgunKit"
  863. ShotgunKit.Parent = UtilityFrame
  864. ShotgunKit.BackgroundColor3 = Color3.new(1, 1, 1)
  865. ShotgunKit.BackgroundTransparency = 1
  866. ShotgunKit.Position = UDim2.new(0.203791469, 0, 0.284482777, 0)
  867. ShotgunKit.Size = UDim2.new(0, 168, 0, 50)
  868. ShotgunKit.Font = Enum.Font.SourceSans
  869. ShotgunKit.Text = "Shotgun Kit"
  870. ShotgunKit.TextColor3 = Color3.new(1, 1, 1)
  871. ShotgunKit.TextSize = 20
  872. ShotgunKit.TextXAlignment = Enum.TextXAlignment.Left
  873.  
  874. PistolKit.Name = "PistolKit"
  875. PistolKit.Parent = UtilityFrame
  876. PistolKit.BackgroundColor3 = Color3.new(1, 1, 1)
  877. PistolKit.BackgroundTransparency = 1
  878. PistolKit.Position = UDim2.new(0.203791469, 0, 0.715517282, 0)
  879. PistolKit.Size = UDim2.new(0, 168, 0, 50)
  880. PistolKit.Font = Enum.Font.SourceSans
  881. PistolKit.Text = "Pistol Kit"
  882. PistolKit.TextColor3 = Color3.new(1, 1, 1)
  883. PistolKit.TextSize = 20
  884. PistolKit.TextXAlignment = Enum.TextXAlignment.Left
  885.  
  886. AmmoKit.Name = "AmmoKit"
  887. AmmoKit.Parent = UtilityFrame
  888. AmmoKit.BackgroundColor3 = Color3.new(1, 1, 1)
  889. AmmoKit.BackgroundTransparency = 1
  890. AmmoKit.Position = UDim2.new(0.203791469, 0, 0.856321812, 0)
  891. AmmoKit.Size = UDim2.new(0, 168, 0, 50)
  892. AmmoKit.Font = Enum.Font.SourceSans
  893. AmmoKit.Text = "Ammo Kit"
  894. AmmoKit.TextColor3 = Color3.new(1, 1, 1)
  895. AmmoKit.TextSize = 20
  896. AmmoKit.TextXAlignment = Enum.TextXAlignment.Left
  897.  
  898. TextLabel_15.Parent = UtilityFrame
  899. TextLabel_15.BackgroundColor3 = Color3.new(1, 1, 1)
  900. TextLabel_15.BackgroundTransparency = 1
  901. TextLabel_15.Position = UDim2.new(0, 0, 0.712643623, 0)
  902. TextLabel_15.Size = UDim2.new(0, 43, 0, 50)
  903. TextLabel_15.Font = Enum.Font.SourceSans
  904. TextLabel_15.Text = ">"
  905. TextLabel_15.TextColor3 = Color3.new(1, 1, 1)
  906. TextLabel_15.TextSize = 25
  907.  
  908. TextLabel_16.Parent = UtilityFrame
  909. TextLabel_16.BackgroundColor3 = Color3.new(1, 1, 1)
  910. TextLabel_16.BackgroundTransparency = 1
  911. TextLabel_16.Position = UDim2.new(0, 0, 0.571839094, 0)
  912. TextLabel_16.Size = UDim2.new(0, 43, 0, 50)
  913. TextLabel_16.Font = Enum.Font.SourceSans
  914. TextLabel_16.Text = ">"
  915. TextLabel_16.TextColor3 = Color3.new(1, 1, 1)
  916. TextLabel_16.TextSize = 25
  917.  
  918. TextLabel_17.Parent = UtilityFrame
  919. TextLabel_17.BackgroundColor3 = Color3.new(1, 1, 1)
  920. TextLabel_17.BackgroundTransparency = 1
  921. TextLabel_17.Position = UDim2.new(0, 0, 0.428160906, 0)
  922. TextLabel_17.Size = UDim2.new(0, 43, 0, 50)
  923. TextLabel_17.Font = Enum.Font.SourceSans
  924. TextLabel_17.Text = ">"
  925. TextLabel_17.TextColor3 = Color3.new(1, 1, 1)
  926. TextLabel_17.TextSize = 25
  927.  
  928. TextLabel_18.Parent = UtilityFrame
  929. TextLabel_18.BackgroundColor3 = Color3.new(1, 1, 1)
  930. TextLabel_18.BackgroundTransparency = 1
  931. TextLabel_18.Position = UDim2.new(0, 0, 0.284482747, 0)
  932. TextLabel_18.Size = UDim2.new(0, 43, 0, 50)
  933. TextLabel_18.Font = Enum.Font.SourceSans
  934. TextLabel_18.Text = ">"
  935. TextLabel_18.TextColor3 = Color3.new(1, 1, 1)
  936. TextLabel_18.TextSize = 25
  937.  
  938. TextLabel_19.Parent = UtilityFrame
  939. TextLabel_19.BackgroundColor3 = Color3.new(1, 1, 1)
  940. TextLabel_19.BackgroundTransparency = 1
  941. TextLabel_19.Position = UDim2.new(0, 0, 0.143678144, 0)
  942. TextLabel_19.Size = UDim2.new(0, 43, 0, 50)
  943. TextLabel_19.Font = Enum.Font.SourceSans
  944. TextLabel_19.Text = ">"
  945. TextLabel_19.TextColor3 = Color3.new(1, 1, 1)
  946. TextLabel_19.TextSize = 25
  947.  
  948. Title.Name = "Title"
  949. Title.Parent = Main
  950. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  951. Title.BackgroundTransparency = 1
  952. Title.Position = UDim2.new(-6.50124979, 0, -4.82610941, 0)
  953. Title.Size = UDim2.new(0, 246, 0, 93)
  954. Title.Font = Enum.Font.SourceSans
  955. Title.Text = "Prison Royale Haxx"
  956. Title.TextColor3 = Color3.new(0.333333, 1, 0)
  957. Title.TextSize = 40
  958.  
  959. Version.Name = "Version"
  960. Version.Parent = Main
  961. Version.BackgroundColor3 = Color3.new(1, 1, 1)
  962. Version.BackgroundTransparency = 1
  963. Version.Position = UDim2.new(-3.9837501, 0, -4.43377733, 0)
  964. Version.Size = UDim2.new(0, 36, 0, 26)
  965. Version.Font = Enum.Font.SourceSans
  966. Version.Text = "v1"
  967. Version.TextColor3 = Color3.new(0.666667, 1, 0)
  968. Version.TextSize = 20
  969.  
  970. Toggle.Name = "Toggle"
  971. Toggle.Parent = PrisonMemes
  972. Toggle.BackgroundColor3 = Color3.new(0, 0, 0)
  973. Toggle.BackgroundTransparency = 0.69999998807907
  974. Toggle.Position = UDim2.new(0.0181249995, 0, 0.930602968, 0)
  975. Toggle.Size = UDim2.new(0, 144, 0, 24)
  976. Toggle.Font = Enum.Font.SourceSans
  977. Toggle.Text = "Toggle"
  978. Toggle.TextColor3 = Color3.new(1, 0.666667, 0)
  979. Toggle.TextSize = 20
  980.  
  981. RenderFrame.Active = true
  982. CharacterFrame.Active = true
  983. SpawningFrame.Active = true
  984. PlayersFrame.Active = true
  985. MapDestructionFrame.Active = true
  986. SettingsFrame.Active = true
  987. UtilityFrame.Active = true
  988.  
  989. RenderFrame.Draggable = true
  990. CharacterFrame.Draggable = true
  991. SpawningFrame.Draggable = true
  992. PlayersFrame.Draggable = true
  993. MapDestructionFrame.Draggable = true
  994. SettingsFrame.Draggable = true
  995. UtilityFrame.Draggable = true
  996.  
  997. Toggle.MouseButton1Click:connect(function()
  998. if Main.Visible == true
  999. then
  1000. Main.Visible = false
  1001. blur.Enabled = false
  1002. elseif
  1003. Main.Visible == false
  1004. then
  1005. Main.Visible = true
  1006. blur.Enabled = true
  1007. end
  1008. end)
  1009. ------------------TOGGLES------------------
  1010. --Rendering
  1011. EspToggle.MouseButton1Click:connect(function()
  1012. ESP = true
  1013. EspToggle.Text = "Esp: ON"
  1014. EspToggle.TextColor3 = Color3.new(0,185,0)
  1015. CreateEsp()
  1016. end)
  1017.  
  1018. --Character
  1019. SpeedXX.MouseButton1Click:connect(function()
  1020. SpeedHax = true
  1021. SpeedXX.TextColor3 = Color3.new(0,185,0)
  1022. CreateSpeed()
  1023. end)
  1024.  
  1025. GravityXX.MouseButton1Click:connect(function()
  1026. GravityHax = true
  1027. GravityXX.TextColor3 = Color3.new(0,185,0)
  1028. CreateGravity()
  1029. end)
  1030.  
  1031. JumpXX.MouseButton1Click:connect(function()
  1032. JumpHax = true
  1033. JumpXX.TextColor3 = Color3.new(0,185,0)
  1034. CreateJump()
  1035. end)
  1036.  
  1037. --Spawning
  1038. SpawnVehicles.MouseButton1Click:connect(function()
  1039. VehicleSpawn()
  1040. VehicleDataBase = true
  1041. SpawnVehicles.Text = "SuccessFully Spawned"
  1042. SpawnVehicles.TextColor3 = Color3.new(0,185,0)
  1043. wait(2.0)
  1044. VehicleDataBase = false
  1045. SpawnVehicles.Text = "Spawn All Vehicles"
  1046. SpawnVehicles.TextColor3 = Color3.new(255,255,255)
  1047. end)
  1048.  
  1049. SpawnLoot.MouseButton1Click:connect(function()
  1050. LootSpawn()
  1051. LootDataBase = true
  1052. SpawnLoot.Text = "SuccessFully Spawned"
  1053. SpawnLoot.TextColor3 = Color3.new(0,185,0)
  1054. wait(2.0)
  1055. LootDataBase = false
  1056. SpawnLoot.Text = "Spawn All Loot"
  1057. SpawnLoot.TextColor3 = Color3.new(255,255,255)
  1058. end)
  1059.  
  1060. --Players
  1061. Teleport.MouseButton1Click:connect(function()
  1062. CreateTeleport()
  1063. TeleportTo = true
  1064. Teleport.Text = "SuccessFully Teleported"
  1065. Teleport.TextColor3 = Color3.new(0,185,0)
  1066. wait(1.5)
  1067. TeleportTo = false
  1068. Teleport.Text = "Teleport To"
  1069. Teleport.TextColor3 = Color3.new(255, 255, 255)
  1070. end)
  1071.  
  1072. --MapDestruction
  1073. DelTrees.MouseButton1Click:connect(function()
  1074. KillTrees()
  1075. DeleteTrees = true
  1076. DelTrees.Text = "SuccessFully Deleted"
  1077. DelTrees.TextColor3 = Color3.new(0,185,0)
  1078. end)
  1079.  
  1080. DelRoads.MouseButton1Click:connect(function()
  1081. KillRoads()
  1082. DeleteRoads = true
  1083. DelRoads.Text = "SuccessFully Deleted"
  1084. DelRoads.TextColor3 = Color3.new(0,185,0)
  1085. end)
  1086.  
  1087. DelBuildings.MouseButton1Click:connect(function()
  1088. KillBuildings()
  1089. DeleteBuildings = true
  1090. DelBuildings.Text = "SuccessFully Deleted"
  1091. DelBuildings.TextColor3 = Color3.new(0,185,0)
  1092. end)
  1093.  
  1094. --Settings
  1095. RainbowUI.MouseButton1Click:connect(function()--This Actuallyed probably Doesn't work XD
  1096. CreateRainbowUI()
  1097. RainbowUII = true
  1098. RainbowUI.Text = "Rainbowed"
  1099. DelBuildings.TextColor3 = Color3.new(0,185,0)
  1100. end)
  1101.  
  1102. WarnPlayers.MouseButton1Click:connect(function()
  1103. PlayerPrint()
  1104. PrintPlayers = true
  1105. WarnPlayers.Text = "SuccessFully Printed Players"
  1106. WarnPlayers.TextColor3 = Color3.new(0,185,0)
  1107. wait(2.0)
  1108. PrintPlayers = false
  1109. WarnPlayers.Text = "Print Players(F9)"
  1110. WarnPlayers.TextColor3 = Color3.new(255,255,255)
  1111. end)
  1112.  
  1113. --Utility
  1114. AmmoKit.MouseButton1Click:connect(function()
  1115. SpawnAmmo()
  1116. AmmoPackage = true
  1117. AmmoKit.Text = "SuccessFully Spawned"
  1118. AmmoKit.TextColor3 = Color3.new(0,185,0)
  1119. wait(2.0)
  1120. AmmoPackage = false
  1121. AmmoKit.Text = "Ammo Kit"
  1122. AmmoKit.TextColor3 = Color3.new(255,255,255)
  1123. end)
  1124.  
  1125. ScarKit.MouseButton1Click:connect(function()
  1126. SpawnScarH()
  1127. ScarAmmo()
  1128. ScarPackage = true
  1129. ScarKit.Text = "SuccessFully Spawned"
  1130. ScarKit.TextColor3 = Color3.new(0,185,0)
  1131. wait(2.0)
  1132. ScarPackage = false
  1133. ScarKit.Text = "Scar Kit"
  1134. ScarKit.TextColor3 = Color3.new(255,255,255)
  1135. end)
  1136.  
  1137. ArmorKit.MouseButton1Click:connect(function()
  1138. SpawnArmor()
  1139. SpawnBackpack()
  1140. ArmorPackage = true
  1141. ArmorKit.Text = "SuccessFully Spawned"
  1142. ArmorKit.TextColor3 = Color3.new(0,185,0)
  1143. wait(2.0)
  1144. ArmorPackage = false
  1145. ArmorKit.Text = "Armor Kit"
  1146. ArmorKit.TextColor3 = Color3.new(255,255,255)
  1147. end)
  1148.  
  1149. PistolKit.MouseButton1Click:connect(function()
  1150. SpawnPistols()
  1151. SpawnPistolAmmo()
  1152. PistolPackage = true
  1153. PistolKit.Text = "SuccessFully Spawned"
  1154. PistolKit.TextColor3 = Color3.new(0,185,0)
  1155. wait(2.0)
  1156. PistolPackage = false
  1157. PistolKit.Text = "Pistol Kit"
  1158. PistolKit.TextColor3 = Color3.new(255,255,255)
  1159. end)
  1160.  
  1161. SniperKit.MouseButton1Click:connect(function()
  1162. SpawnSniper()
  1163. SpawnSniperAmmo()
  1164. SniperPackage = true
  1165. SniperKit.Text = "SuccessFully Spawned"
  1166. SniperKit.TextColor3 = Color3.new(0,185,0)
  1167. wait(2.0)
  1168. SniperPackage = false
  1169. SniperKit.Text = "Sniper Kit"
  1170. SniperKit.TextColor3 = Color3.new(255,255,255)
  1171. end)
  1172.  
  1173. ShotgunKit.MouseButton1Click:connect(function()
  1174. SpawnShotGun()
  1175. ShotGunAmmo()
  1176. ShotgunPackage = true
  1177. ShotgunKit.Text = "SuccessFully Spawned"
  1178. ShotgunKit.TextColor3 = Color3.new(0,185,0)
  1179. wait(2.0)
  1180. ShotgunPackage = false
  1181. ShotgunKit.Text = "ShotGun Kit"
  1182. ShotgunKit.TextColor3 = Color3.new(255,255,255)
  1183. end)
  1184. --End
  1185. wait(0.1)
  1186. local Player = game.Players.LocalPlayer
  1187. local Mouse = Player:GetMouse()
  1188. local char = Player.Character
  1189.  
  1190. local gPlayers = game:GetService("Players")
  1191. local admin = gPlayers.LocalPlayer.Name
  1192.  
  1193. local services={}
  1194. local cmds={}
  1195. local std={}
  1196.  
  1197. local Version = '1.0.2'
  1198.  
  1199. wait(0.1)
  1200.  
  1201. services.players=gPlayers
  1202. services.lighting=game:GetService('Lighting')
  1203. services.workspace=game:GetService('Workspace')
  1204. services.events = {}
  1205. local user = gPlayers.LocalPlayer
  1206.  
  1207. local cmdprefix=';'
  1208. local scriptprefix='\\'
  1209. local split=" "
  1210.  
  1211. --| Ban Data |--
  1212.  
  1213. local BanFolder = Instance.new("Fire", game.ContextActionService)
  1214. BanFolder.Name = "BanList"
  1215. BanFolder.RobloxLocked = true
  1216. _G.Banned = function(Ban)
  1217. local SValue = Instance.new("StringValue", BanFolder)
  1218. SValue.Value = Ban
  1219. SValue.RobloxLocked = true
  1220. end
  1221.  
  1222. BannedPlayers = {
  1223. 'KrystalTeam', -- For banning me.
  1224. 'LordCrazy13', -- You're fucking annoying.
  1225. 'CRICKET69'
  1226. }
  1227.  
  1228. --| Tables |--
  1229.  
  1230. --| Admins |--
  1231.  
  1232. local AdminFolder = Instance.new("Folder", game.ContextActionService)
  1233. AdminFolder.Name = "AdminList"
  1234. AdminFolder.RobloxLocked = true
  1235. _G.Admin = function(Admin)
  1236. local SValue = Instance.new("StringValue", AdminFolder)
  1237. SValue.Value = Admin
  1238. SValue.RobloxLocked = true
  1239. end
  1240.  
  1241. -- These are my friends that don't have Seven, remove then off the list if you'd like.
  1242. local admins = {
  1243. 'guestpro1',
  1244. 'THEGAMINGTRTLE',
  1245. 'JackLikesBugs',
  1246. 'JoshuaAsencio'
  1247. }
  1248.  
  1249. --| CMD List |--
  1250.  
  1251. CMDs = {
  1252. '1. ff player',
  1253. '2. noff player',
  1254. '3. fire player',
  1255. '4. nofire player',
  1256. '5. sp player',
  1257. '6. nosp player',
  1258. '7. smoke player',
  1259. '8. nosmoke player',
  1260. '9. btools player',
  1261. '10. god player',
  1262. '11. sgod player',
  1263. '12. ungod player',
  1264. '13. heal player',
  1265. '14. freeze player',
  1266. '15. thaw player',
  1267. '16. kill player',
  1268. '17. sound',
  1269. '18. volume',
  1270. '19. pitch',
  1271. '20. explode player',
  1272. '21. invis player',
  1273. '22. vis player',
  1274. '23. goto player',
  1275. '24. bring player',
  1276. '25. tp player',
  1277. '26. charapp player',
  1278. '27. ws player',
  1279. '28. time',
  1280. '29. kick player',
  1281. '30. ban player',
  1282. '31. unlockws',
  1283. '32. unanchorws',
  1284. '33. hat player',
  1285. '34. gear player',
  1286. '35. pstools player',
  1287. '36. skick player',
  1288. '37. admin player',
  1289. '38. unadmin player',
  1290. '39. firstp player',
  1291. '40. thirdp player',
  1292. '41. chat player',
  1293. '42. insert',
  1294. '43. name player',
  1295. '44. unname player',
  1296. '45. stun player',
  1297. '46. unstun player',
  1298. '47. sit player',
  1299. '48. guest player',
  1300. '49. damage player',
  1301. '50. view player',
  1302. '51. unview player',
  1303. '52. nolimbs player',
  1304. '53. box player 1012',
  1305. '54. nobox player',
  1306. '55. ghost player',
  1307. '56. sphere player',
  1308. '57. loadmap',
  1309. '58. sky',
  1310. '59. ambient',
  1311. '60. gui',
  1312. '61. jail player',
  1313. '62. unjail player',
  1314. '63. shutdown',
  1315. '64. animation player',
  1316. '65. fix player',
  1317. '66. creeper player',
  1318. '67. uncreeper player',
  1319. '68. shrek player',
  1320. '69. unshrek player',
  1321. '70. spam',
  1322. '71. nospam',
  1323. '72. control player',
  1324. '73. nuke player',
  1325. '74. infect player',
  1326. '75. uninfect player',
  1327. '76. duck player',
  1328. '77. unduck player',
  1329. '78. disable player',
  1330. '79. enable player',
  1331. '80. size player',
  1332. '81. confuse player',
  1333. '82. unconfuse player',
  1334. '83. clone player',
  1335. '84. spin player',
  1336. '85. unspin player',
  1337. '86. dog player',
  1338. '87. undog player',
  1339. '88. tptool',
  1340. '89. loopsit player',
  1341. '90. unloopsit player',
  1342. '91. loopjump player',
  1343. '92. unloopjump player',
  1344. '93. loopheal player',
  1345. '94. unloopheal player',
  1346. '95. fling player',
  1347. '96. ayylmao player',
  1348. '97. nograv player',
  1349. '98. grav player',
  1350. '99. seizure player',
  1351. '100. unseizure player',
  1352. '101. cape 1012',
  1353. '102. uncape',
  1354. '103. paper player',
  1355. '104. punish player',
  1356. '105. unpunish player',
  1357. '106. disco',
  1358. '107. undisco',
  1359. '- float player',
  1360. '- unfloat player',
  1361. '- noclip',
  1362. '- clip',
  1363. '- prefix <string>',
  1364. '- admins',
  1365. '- bans',
  1366. '- cmds',
  1367. '- version'
  1368. }
  1369.  
  1370. --| Lib |--
  1371.  
  1372. updateevents=function()
  1373. for i,v in pairs(services.events) do services.events:remove(i) v:disconnect() end
  1374. for i,v in pairs(gPlayers:players())do
  1375. local ev = v.Chatted:connect(function(msg) do_exec(msg,v) end)
  1376. services.events[#services.events+1] = ev
  1377. end
  1378. end
  1379.  
  1380. std.inTable=function(tbl,val)
  1381. if tbl==nil then return false end
  1382.  
  1383. for _,v in pairs(tbl)do
  1384. if v==val then return true end
  1385. end
  1386. return false
  1387. end
  1388.  
  1389. std.out=function(str)
  1390. print(str)
  1391. end
  1392.  
  1393. std.list=function(tbl)
  1394. local str=''
  1395. for i,v in pairs(tbl)do
  1396. str=str..tostring(v)
  1397. if i~=#tbl then str=str..', ' end
  1398. end
  1399. return str
  1400. end
  1401.  
  1402. std.endat=function(str,val)
  1403. local z=str:find(val)
  1404. if z then
  1405. return str:sub(0,z-string.len(val)),true
  1406. else
  1407. return str,false
  1408. end
  1409. end
  1410.  
  1411. std.first=function(str) return str:sub(1,1) end
  1412.  
  1413. isAdmin=function(name)
  1414. if name==admin then
  1415. return true
  1416. elseif admins[name]==true then
  1417. return true
  1418. end
  1419. return false
  1420. end
  1421.  
  1422. local exec=function(str)
  1423. spawn(function()
  1424. local script, loaderr = loadstring(str)
  1425. if not script then
  1426. error(loaderr)
  1427. else
  1428. script()
  1429. end
  1430. end)
  1431. end
  1432.  
  1433. local findCmd=function(cmd_name)
  1434. for i,v in pairs(cmds)do
  1435. if v.NAME:lower()==cmd_name:lower() or std.inTable(v.ALIAS,cmd_name:lower())then
  1436. return v
  1437. end
  1438. end
  1439. end
  1440.  
  1441. local getCmd=function(msg)
  1442. local cmd,hassplit=std.endat(msg:lower(),split)
  1443. if hassplit then
  1444. return {cmd,true}
  1445. else
  1446. return {cmd,false}
  1447. end
  1448. end
  1449.  
  1450. local getprfx=function(strn)
  1451. if strn:sub(1,string.len(cmdprefix))==cmdprefix then return{'cmd',string.len(cmdprefix)+1}
  1452. elseif strn:sub(1,string.len(scriptprefix))==scriptprefix then return{'exec',string.len(scriptprefix)+1}
  1453. end return
  1454. end
  1455.  
  1456. local getArgs=function(str)
  1457. local args={}
  1458. local new_arg=nil
  1459. local hassplit=nil
  1460. local s=str
  1461. repeat
  1462. new_arg,hassplit=std.endat(s:lower(),split)
  1463. if new_arg~='' then
  1464. args[#args+1]=new_arg
  1465. s=s:sub(string.len(new_arg)+string.len(split)+1)
  1466. end
  1467. until hassplit==false
  1468. return args
  1469. end
  1470.  
  1471. local function execCmd(str, plr)
  1472. local s_cmd
  1473. local a
  1474. local cmd
  1475. s_cmd = getCmd(str)
  1476. cmd = findCmd(s_cmd[1])
  1477. if cmd == nil then return end
  1478. a = str:sub(string.len(s_cmd[1]) + string.len(split) + 1)
  1479. local args=getArgs(a)
  1480.  
  1481. pcall(function()
  1482. cmd.FUNC(args, plr)
  1483. end)
  1484. end
  1485.  
  1486. function do_exec(str,plr)
  1487. if not isAdmin(plr.Name)then return end
  1488.  
  1489. str=str:gsub('/e ','')
  1490.  
  1491. local t=getprfx(str)
  1492. if t==nil then return end
  1493. str=str:sub(t[2])
  1494. if t[1]=='exec' then
  1495. exec(str)
  1496. elseif t[1]=='cmd' then
  1497. execCmd(str, plr)
  1498. end
  1499. end
  1500.  
  1501. updateevents()
  1502. _G.exec_cmd = execCmd
  1503. --game.Players.LocalPlayer.Chatted:connect(doexec)
  1504.  
  1505. local _char=function(plr_name)
  1506. for i,v in pairs(game.Players:GetChildren())do
  1507. if v:IsA'Player'then
  1508. if v.Name==plr_name then return v.Character end
  1509. end
  1510. end
  1511. return
  1512. end
  1513.  
  1514. local _plr=function(plr_name)
  1515. for i,v in pairs(game.Players:GetChildren())do
  1516. if v:IsA'Player'then
  1517. if v.Name==plr_name then return v end
  1518. end
  1519. end
  1520. return
  1521. end
  1522.  
  1523. function addcmd(name,desc,alias,func)
  1524. cmds[#cmds+1]=
  1525. {
  1526. NAME=name;
  1527. DESC=desc;
  1528. ALIAS=alias;
  1529. FUNC=func;
  1530. }
  1531. end
  1532.  
  1533. local function getPlayer(name)
  1534. local nameTable = {}
  1535. name=name:lower()
  1536. if name == "me" then
  1537. nameTable[#nameTable+1]=admin
  1538. elseif name == "others" then
  1539. for i,v in pairs(gPlayers:GetChildren()) do
  1540. if v:IsA'Player'then
  1541. if v.Name~=admin then
  1542. nameTable[#nameTable+1]=v.Name
  1543. end
  1544. end
  1545. end
  1546. elseif name == "all" then
  1547. for i,v in pairs(gPlayers:GetChildren()) do
  1548. if v:IsA'Player'then
  1549. nameTable[#nameTable+1]=v.Name
  1550. end
  1551. end
  1552. else
  1553. for i,v in pairs(gPlayers:GetChildren()) do
  1554. local lname = v.Name:lower()
  1555. local i,j = lname:find(name)
  1556. if i == 1 then
  1557. return {v.Name}
  1558. end
  1559. end
  1560. end
  1561. return nameTable
  1562. end
  1563.  
  1564. --| Cape Function |--
  1565.  
  1566. local capeColor = 1012
  1567.  
  1568. function Cape(playerCaped)
  1569.  
  1570. if playerCaped.Character:FindFirstChild("Cape") ~= nil then
  1571. playerCaped.Character.Cape:Destroy()
  1572. end
  1573.  
  1574. repeat
  1575. wait()
  1576. until playerCaped and playerCaped.Character and playerCaped.Character:FindFirstChild("Torso")
  1577.  
  1578. local Torso = playerCaped.Character.Torso
  1579.  
  1580. local Cape = Instance.new("Part", Torso.Parent)
  1581. Cape.Name = "Cape"
  1582. Cape.Anchored = false
  1583. Cape.CanCollide = false
  1584. Cape.TopSurface = 0
  1585. Cape.BottomSurface = 0
  1586. Cape.BrickColor = BrickColor.new("" .. capeColor)
  1587. Cape.Material = "Neon"
  1588. Cape.formFactor = "Custom"
  1589. Cape.Size = Vector3.new(0.2,0.2,0.2)
  1590.  
  1591. local msh = Instance.new("BlockMesh", Cape)
  1592. msh.Scale = Vector3.new(9,17.5,.5)
  1593.  
  1594. local motor1 = Instance.new("Motor", Cape)
  1595. motor1.Part0 = Cape
  1596. motor1.Part1 = Torso
  1597.  
  1598. motor1.MaxVelocity = 1
  1599. motor1.C0 = CFrame.new(0,1.75,0)*CFrame.Angles(0,math.rad(90),0)
  1600. motor1.C1 = CFrame.new(0,1,.45)*CFrame.Angles(0,math.rad(90),0)
  1601.  
  1602. local wave = false
  1603.  
  1604. repeat wait(1/44)
  1605. local ang = 0.2
  1606. local oldmag = Torso.Velocity.magnitude
  1607. local mv = .1
  1608.  
  1609. if wave then
  1610. ang = ang + ((Torso.Velocity.magnitude/10) * .05) + 1
  1611. wave = false
  1612. else
  1613. wave = false
  1614. end
  1615. ang = ang + math.min(Torso.Velocity.magnitude/30, 1)
  1616. motor1.MaxVelocity = math.min((Torso.Velocity.magnitude/10), .04) + mv
  1617. motor1.DesiredAngle = -ang
  1618. if motor1.CurrentAngle < -.05 and motor1.DesiredAngle > -.05 then
  1619. motor1.MaxVelocity = .04
  1620. end
  1621. repeat
  1622. wait()
  1623. until
  1624. motor1.CurrentAngle == motor1.DesiredAngle or math.abs(Torso.Velocity.magnitude - oldmag) >= (Torso.Velocity.magnitude/10) + 1
  1625. if Torso.Velocity.magnitude < .1 then
  1626. wait(.1)
  1627. end
  1628. until not Cape or Cape.Parent ~= Torso.Parent
  1629. end
  1630.  
  1631. game.Lighting.Outlines = false -- Outlines are disgusting
  1632.  
  1633. --| Commands |--
  1634.  
  1635. addcmd('ff','gives ff to player',{},
  1636. function(args)
  1637. local players = getPlayer(args[1])
  1638. for i,v in pairs(players)do
  1639. local pchar=_char(v)
  1640. Instance.new("ForceField", pchar)
  1641. end
  1642. end)
  1643.  
  1644. addcmd('noff', 'takes away ff from player',{'unff'},
  1645. function(args)
  1646. local players = getPlayer(args[1])
  1647. for i,v in pairs(players)do
  1648. local pchar=_char(v)
  1649. for j,v1 in pairs(pchar:GetChildren()) do
  1650. if v1:IsA("ForceField") then
  1651. v1:Destroy()
  1652. end
  1653. end
  1654. end
  1655. end)
  1656.  
  1657. addcmd('fire', 'set a player on fire',{},
  1658. function(args)
  1659. local players = getPlayer(args[1])
  1660. for i,v in pairs(players)do
  1661. local pchar=_char(v)
  1662. local Fire1 = Instance.new("Fire", pchar.Head)
  1663. local Fire2 = Instance.new("Fire", pchar.Torso)
  1664. local Fire3 = Instance.new("Fire", pchar["Left Arm"])
  1665. local Fire4 = Instance.new("Fire", pchar["Right Arm"])
  1666. local Fire5 = Instance.new("Fire", pchar["Left Leg"])
  1667. local Fire6 = Instance.new("Fire", pchar["Right Leg"])
  1668. Fire1.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1669. Fire1.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1670. Fire2.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1671. Fire2.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1672. Fire3.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1673. Fire3.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1674. Fire4.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1675. Fire4.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1676. Fire5.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1677. Fire5.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1678. Fire6.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1679. Fire6.SecondaryColor = Color3.new((args[2]),(args[3]),(args[4]))
  1680. end
  1681. end)
  1682.  
  1683. addcmd('nofire', 'extinguish a player',{'unfire'},
  1684. function(args)
  1685. local players = getPlayer(args[1])
  1686. for i,v in pairs(players)do
  1687. local pchar=_char(v)
  1688. for j,v1 in pairs(pchar.Head:GetChildren()) do
  1689. if v1:IsA("Fire") then
  1690. v1:Destroy()
  1691. end
  1692. end
  1693. for j,v1 in pairs(pchar.Torso:GetChildren()) do
  1694. if v1:IsA("Fire") then
  1695. v1:Destroy()
  1696. end
  1697. end
  1698. for j,v1 in pairs(pchar["Left Arm"]:GetChildren()) do
  1699. if v1:IsA("Fire") then
  1700. v1:Destroy()
  1701. end
  1702. end
  1703. for j,v1 in pairs(pchar["Right Arm"]:GetChildren()) do
  1704. if v1:IsA("Fire") then
  1705. v1:Destroy()
  1706. end
  1707. end
  1708. for j,v1 in pairs(pchar["Left Leg"]:GetChildren()) do
  1709. if v1:IsA("Fire") then
  1710. v1:Destroy()
  1711. end
  1712. end
  1713. for j,v1 in pairs(pchar["Right Leg"]:GetChildren()) do
  1714. if v1:IsA("Fire") then
  1715. v1:Destroy()
  1716. end
  1717. end
  1718. end
  1719. end)
  1720.  
  1721. addcmd('sp', 'give a player sparkles',{},
  1722. function(args)
  1723. local players = getPlayer(args[1])
  1724. for i,v in pairs(players)do
  1725. local pchar=_char(v)
  1726. local Sparkles1 = Instance.new("Sparkles", pchar.Head)
  1727. local Sparkles2 = Instance.new("Sparkles", pchar.Torso)
  1728. local Sparkles3 = Instance.new("Sparkles", pchar["Left Arm"])
  1729. local Sparkles4 = Instance.new("Sparkles", pchar["Right Arm"])
  1730. local Sparkles5 = Instance.new("Sparkles", pchar["Left Leg"])
  1731. local Sparkles6 = Instance.new("Sparkles", pchar["Right Leg"])
  1732. Sparkles1.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1733. Sparkles2.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1734. Sparkles3.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1735. Sparkles4.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1736. Sparkles5.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1737. Sparkles6.Color = Color3.new((args[2]),(args[3]),(args[4]))
  1738. end
  1739. end)
  1740.  
  1741. addcmd('nosp', 'remove sparkles from a player',{'unsp'},
  1742. function(args)
  1743. local players = getPlayer(args[1])
  1744. for i,v in pairs(players)do
  1745. local pchar=_char(v)
  1746. for j,v1 in pairs(pchar.Head:GetChildren()) do
  1747. if v1:IsA("Sparkles") then
  1748. v1:Destroy()
  1749. end
  1750. end
  1751. for j,v1 in pairs(pchar.Torso:GetChildren()) do
  1752. if v1:IsA("Sparkles") then
  1753. v1:Destroy()
  1754. end
  1755. end
  1756. for j,v1 in pairs(pchar["Left Arm"]:GetChildren()) do
  1757. if v1:IsA("Sparkles") then
  1758. v1:Destroy()
  1759. end
  1760. end
  1761. for j,v1 in pairs(pchar["Right Arm"]:GetChildren()) do
  1762. if v1:IsA("Sparkles") then
  1763. v1:Destroy()
  1764. end
  1765. end
  1766. for j,v1 in pairs(pchar["Left Leg"]:GetChildren()) do
  1767. if v1:IsA("Sparkles") then
  1768. v1:Destroy()
  1769. end
  1770. end
  1771. for j,v1 in pairs(pchar["Right Leg"]:GetChildren()) do
  1772. if v1:IsA("Sparkles") then
  1773. v1:Destroy()
  1774. end
  1775. end
  1776. end
  1777. end)
  1778.  
  1779. addcmd('smoke', 'give a player smoke',{},
  1780. function(args)
  1781. local players = getPlayer(args[1])
  1782. for i,v in pairs(players)do
  1783. local pchar=_char(v)
  1784. Instance.new("Smoke", pchar.Torso)
  1785. end
  1786. end)
  1787.  
  1788. addcmd('nosmoke', 'remove smoke from a player',{},
  1789. function(args)
  1790. local players = getPlayer(args[1])
  1791. for i,v in pairs(players)do
  1792. local pchar=_char(v)
  1793. for j,v1 in pairs(pchar.Torso:GetChildren()) do
  1794. if v1:IsA("Smoke") then
  1795. v1:Destroy()
  1796. end
  1797. end
  1798. end
  1799. end)
  1800.  
  1801. addcmd('btools', 'gives a player btools',{},
  1802. function(args)
  1803. local players = getPlayer(args[1])
  1804. if players ~= nil then
  1805. for i, v in pairs(players) do
  1806. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 2
  1807. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 3
  1808. Instance.new("HopperBin", gPlayers[v].Backpack).BinType = 4
  1809. end
  1810. end
  1811. end)
  1812.  
  1813. addcmd('god', 'gods player',{},
  1814. function(args)
  1815. local players = getPlayer(args[1])
  1816. for i,v in pairs(players)do
  1817. local pchar=_char(v)
  1818. if pchar then pchar.Humanoid.MaxHealth=math.huge end
  1819. end
  1820. end)
  1821.  
  1822. addcmd('sgod', 'silently gods player',{},
  1823. function(args)
  1824. local players = getPlayer(args[1])
  1825. for i,v in pairs(players)do
  1826. local pchar=_char(v)
  1827. spawn(function()
  1828. pchar.Humanoid.MaxHealth = 10000000
  1829. wait()
  1830. pchar.Humanoid.Health = 10000000
  1831. end)
  1832. end
  1833. end)
  1834.  
  1835. addcmd('ungod', 'removes god from a player',{},
  1836. function(args)
  1837. local players = getPlayer(args[1])
  1838. for i,v in pairs(players)do
  1839. local pchar=_char(v)
  1840. if pchar then
  1841. pchar.Humanoid.MaxHealth=100
  1842. pchar.Humanoid.Health=100
  1843. end
  1844. end
  1845. end)
  1846.  
  1847. addcmd('heal', 'resets a players health',{},
  1848. function(args)
  1849. local players = getPlayer(args[1])
  1850. for i,v in pairs(players)do
  1851. local pchar=_char(v)
  1852. if pchar then pchar.Humanoid.Health=pchar.Humanoid.MaxHealth;end
  1853. end
  1854. end)
  1855.  
  1856. addcmd('frz', 'freezes a player',{'freeze'},
  1857. function(args)
  1858. local players = getPlayer(args[1])
  1859. if players ~= nil then
  1860. for i, v in pairs(players) do
  1861. _char(v).Torso.Anchored = true
  1862. end
  1863. end
  1864. end)
  1865.  
  1866. addcmd('thaw', 'freezes a player',{},
  1867. function(args)
  1868. local players = getPlayer(args[1])
  1869. if players ~= nil then
  1870. for i, v in pairs(players) do
  1871. _char(v).Torso.Anchored = false
  1872. end
  1873. end
  1874. end)
  1875.  
  1876. addcmd('kill', 'kills a player',{},
  1877. function(args)
  1878. local players = getPlayer(args[1])
  1879. for i,v in pairs(players)do
  1880. local pchar=_char(v)
  1881. if pchar then pchar.Humanoid.MaxHealth=0;pchar.Humanoid.Health=0;end
  1882. end
  1883. end)
  1884.  
  1885. addcmd('sound', 'plays a sound',{},
  1886. function(args)
  1887. local function dels(instance)
  1888. for i,v in pairs(instance:GetChildren())do
  1889. if v:IsA'Sound'then v:Destroy()end
  1890. dels(v)
  1891. end
  1892. end
  1893. dels(workspace)
  1894.  
  1895. local c = args[1] or 'stop'
  1896. if std.inTable({'stop'}, c:lower()) then return end
  1897. local s = Instance.new("Sound", workspace)
  1898. s.Name = "DuckSong"
  1899. s.Looped = true
  1900. s.SoundId = "rbxassetid://" .. c
  1901. s.Volume = 1
  1902. s:Play()
  1903. end)
  1904.  
  1905. addcmd('volume','changes volume of sound',{},
  1906. function(args)
  1907. for i,v in pairs(game.Workspace:GetChildren())do
  1908. if v:IsA("Sound") and v.Name == "DuckSong" then
  1909. v.Volume = args[1]
  1910. end
  1911. end
  1912. end)
  1913.  
  1914. addcmd('pitch','changes pitch of sound',{},
  1915. function(args)
  1916. for i,v in pairs(game.Workspace:GetChildren())do
  1917. if v:IsA("Sound") and v.Name == "DuckSong" then
  1918. v.Pitch = args[1]
  1919. end
  1920. end
  1921. end)
  1922.  
  1923. addcmd('explode', 'explode a player', {},
  1924. function(args)
  1925. local players = getPlayer(args[1])
  1926. for i, v in pairs(players) do
  1927. local char = _char(v)
  1928. if char:FindFirstChild("Torso") then
  1929. Instance.new("Explosion", char).Position = char.Torso.Position
  1930. end
  1931. end
  1932. end)
  1933.  
  1934. addcmd('invis', 'make a player invisible',{},
  1935. function(args)
  1936. local players = getPlayer(args[1])
  1937. for i, v in pairs(players) do
  1938. for k, v2 in pairs(_char(v):GetChildren()) do
  1939. if v2.className == "Part" then
  1940. if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 1 end
  1941. elseif v2.className == "Hat" then
  1942. if v2:FindFirstChild("Handle") then
  1943. v2.Handle.Transparency = 1
  1944. end
  1945. end
  1946. if v2:FindFirstChild("face") then
  1947. v2.face:Destroy()
  1948. end
  1949. end
  1950. end
  1951. end)
  1952.  
  1953. addcmd('vis', 'make a player visible',{},
  1954. function(args)
  1955. local players = getPlayer(args[1])
  1956. for i, v in pairs(players) do
  1957. for k, v2 in pairs(_char(v):GetChildren()) do
  1958. if v2.className == "Part" then
  1959. if v2.Name ~= "HumanoidRootPart" then v2.Transparency = 0 end
  1960. elseif v2.className == "Hat" then
  1961. if v2:FindFirstChild("Handle") then v2.Handle.Transparency = 0 end
  1962. end
  1963. if v2:FindFirstChild("face") then
  1964. v2.face:Destroy()
  1965. end
  1966. end
  1967. end
  1968. end)
  1969.  
  1970. addcmd('goto', 'go to a player',{},
  1971. function(args)
  1972. local players = getPlayer(args[1])
  1973. if players ~= nil and _char(players[1]):FindFirstChild("HumanoidRootPart") then
  1974. _char(admin).HumanoidRootPart.CFrame = _char(players[1]).HumanoidRootPart.CFrame
  1975. end
  1976. end)
  1977.  
  1978. addcmd('bring', 'bring a player to you',{},
  1979. function(args)
  1980. local players = getPlayer(args[1])
  1981. for i,v in pairs(players) do
  1982. if _char(v):FindFirstChild("HumanoidRootPart") then
  1983. _char(v).HumanoidRootPart.CFrame = _char(admin).HumanoidRootPart.CFrame
  1984. end
  1985. end
  1986. end)
  1987.  
  1988. addcmd('tp', 'teleport player 1 to player 2',{},
  1989. function(args)
  1990. local players1=getPlayer(args[1])
  1991. local players2=getPlayer(args[2])
  1992. if not players2[1] then return end
  1993. for i,v in pairs(players1) do
  1994. if _char(v):FindFirstChild("HumanoidRootPart") and _char(players2[1]):FindFirstChild("HumanoidRootPart") then
  1995. _char(v).HumanoidRootPart.CFrame = _char(players2[1]).HumanoidRootPart.CFrame
  1996. end
  1997. end
  1998. end)
  1999.  
  2000. addcmd('charapp', 'change a players appearance',{'char'},
  2001. function(args)
  2002. local players = getPlayer(args[1])
  2003. if not args[1]or not args[2]then return end
  2004. local id=args[2]
  2005. if players ~= nil then
  2006. for i,v in pairs(players) do
  2007. gPlayers[v].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..id
  2008. if _char(v):FindFirstChild("Head") then
  2009. _char(v).Head:Destroy()
  2010. end
  2011. end
  2012. end
  2013. end)
  2014.  
  2015. addcmd('ws', 'change a players walkspeed',{},
  2016. function(args)
  2017. local players = getPlayer(args[1])
  2018. if not args[1]or not args[2]then return end
  2019. local num=args[2]
  2020. for i,v in pairs(players) do
  2021. if _char(v):FindFirstChild("Humanoid") then
  2022. _char(v).Humanoid.WalkSpeed=tonumber(num)
  2023. end
  2024. end
  2025. end)
  2026.  
  2027. addcmd('time', 'change the time of day',{},
  2028. function(args)
  2029. if not args[1]then return end
  2030. local time_=tonumber(args[1])
  2031.  
  2032. game.Lighting:SetMinutesAfterMidnight(time_*60)
  2033. end)
  2034.  
  2035. addcmd('kick', 'kick a player',{},
  2036. function(args)
  2037. local players = getPlayer(args[1])
  2038. for i,v in pairs(players) do
  2039. Notify('Kicked ' .. gPlayers[v].Name)
  2040. gPlayers[v]:Destroy()
  2041. end
  2042. end)
  2043.  
  2044. addcmd('ban', 'ban a player',{},
  2045. function(args)
  2046. local players=getPlayer(args[1])
  2047. for i,v in pairs(players) do
  2048. _G.Banned(gPlayers[v].Name)
  2049. gPlayers[v]:Destroy()
  2050. end
  2051. end)
  2052.  
  2053. addcmd('unlockws', 'unlock the whole workspace',{'unlock'},
  2054. function(args)
  2055. local function unlock(instance)
  2056. for i,v in pairs(instance:GetChildren()) do
  2057. if v:IsA("BasePart") then
  2058. v.Locked = false
  2059. end
  2060. unlock(v)
  2061. end
  2062. end
  2063. unlock(workspace)
  2064. end)
  2065.  
  2066. addcmd('unanchorws', 'unanchor the whole workspace',{'unanchor', 'unanchr'},
  2067. function(args)
  2068. local function unanchor(instance)
  2069. for i,v in pairs(instance:GetChildren()) do
  2070. if v:IsA("BasePart") then
  2071. v.Anchored=false
  2072. end
  2073. unanchor(v)
  2074. end
  2075. end
  2076. unanchor(workspace)
  2077. end)
  2078.  
  2079. addcmd('hat', 'give player a hat ingame',{},
  2080. function(args)
  2081. if not args[1] or not args[2] then return end
  2082. local players = getPlayer(args[1])
  2083. local id=args[2]
  2084. local hat = game:GetService("InsertService"):LoadAsset(id)
  2085. if hat:IsA("Hat") then
  2086. for i,v in pairs(players) do
  2087. hat:clone().Parent = _char(v)
  2088. end
  2089. end
  2090. hat:Destroy()
  2091. end)
  2092.  
  2093. addcmd('gear', 'give player a gear ingame',{},
  2094. function(args)
  2095. spawn(function()
  2096. if not args[1] or not args[2] then return end
  2097. local players = getPlayer(args[1])
  2098. local id=args[2]
  2099. local model = game:GetService("InsertService"):LoadAsset(id)
  2100. for i,v in pairs(players) do
  2101. for _,j in pairs(model:GetChildren()) do
  2102. if j:IsA("Tool") then
  2103. j:Clone().Parent = gPlayers[v].Backpack
  2104. end
  2105. end
  2106. end
  2107. model:Destroy()
  2108. end)
  2109. end)
  2110.  
  2111. addcmd('pstools', 'give player personal server tools',{},
  2112. function(args)
  2113. local players = getPlayer(args[1])
  2114. for i,v in pairs(players) do
  2115. gPlayers[v].PersonalServerRank = 240
  2116. end
  2117. end)
  2118.  
  2119. addcmd('skick','kicks a player by shutting them down, takes a few seconds',{},
  2120. function(args)
  2121. local players = getPlayer(args[1])
  2122. for i,v in pairs(players) do
  2123. spawn(function()
  2124. gPlayers[v].PersonalServerRank = 240
  2125. gPlayers[v].Backpack:WaitForChild("ClassicTool")
  2126. gPlayers[v].PersonalServerRank = 0
  2127. end)
  2128. end
  2129. end)
  2130.  
  2131. addcmd('admin', 'gives a player admin',{},
  2132. function(args)
  2133. if not args[1]then return end
  2134. local players = getPlayer(args[1])
  2135. table.foreach(players,function(k,v)
  2136. admins[v]=true
  2137. Notify(gPlayers[v].Name .. ' has been given Admin.')
  2138. end)
  2139. for i,v in pairs(players) do
  2140. local pchar = gPlayers[v].Character
  2141. game.Chat:Chat(pchar.Head, "You've been given admin.")
  2142. wait(2.5)
  2143. game.Chat:Chat(pchar.Head, 'Prefix is "' .. cmdprefix .. '"')
  2144. wait(2.5)
  2145. game.Chat:Chat(pchar.Head, "[NO] ;fire me [YES] ;fire YourName")
  2146. wait(2.5)
  2147. game.Chat:Chat(pchar.Head, "You may now use commands.")
  2148. end
  2149. end)
  2150.  
  2151. addcmd('unadmin', 'removes a players admin',{},
  2152. function(args)
  2153. if not args[1] then return end
  2154. local players = getPlayer(args[1])
  2155. table.foreach(players,function(k,v)
  2156. admins[v]=nil
  2157. Notify(gPlayers[v].Name .. ' no longer has Admin.')
  2158. end)
  2159. end)
  2160.  
  2161. addcmd('firstp', 'forces player to go into first person',{},
  2162. function(args)
  2163. local players = getPlayer(args[1])
  2164. for i,v in pairs(players)do
  2165. gPlayers[v].CameraMode = "LockFirstPerson"
  2166. end
  2167. end)
  2168.  
  2169. addcmd('thirdp', 'allows player to go into third person',{},
  2170. function(args)
  2171. local players = getPlayer(args[1])
  2172. for i,v in pairs(players)do
  2173. gPlayers[v].CameraMode = "Classic"
  2174. end
  2175. end)
  2176.  
  2177. addcmd('chat', 'forces player to chat what you input',{},
  2178. function(args)
  2179. local players = getPlayer(args[1])
  2180. local MSG = table.concat(args, " ")
  2181. local newMSG = string.gsub(MSG, args[1] .. " ", "")
  2182. for i,v in pairs(players)do
  2183. game.Chat:Chat(gPlayers[v].Character.Head, newMSG)
  2184. end
  2185. end)
  2186.  
  2187. addcmd('insert', 'inserts a model',{},
  2188. function(args)
  2189. local model = game:GetService("InsertService"):LoadAsset(args[1])
  2190. model.Parent = game.Workspace
  2191. model:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  2192. model:MakeJoints()
  2193. end)
  2194.  
  2195. addcmd('name', 'names player',{},
  2196. function(args)
  2197. local players = getPlayer(args[1])
  2198. local msg = table.concat(args, " ")
  2199. local newmsg = string.gsub(msg, args[1] .. " ", "")
  2200. for i,v in pairs(players) do
  2201. for a, mod in pairs(gPlayers[v].Character:children()) do
  2202. if mod:FindFirstChild("TAG") then
  2203. gPlayers[v].Character.Head.Transparency = 0
  2204. mod:Destroy()
  2205. end
  2206. end
  2207.  
  2208. local char = gPlayers[v].Character
  2209. local model = Instance.new("Model", char)
  2210. local clone = char.Head:Clone()
  2211. local hum = Instance.new("Humanoid", model)
  2212. local weld = Instance.new("Weld", clone)
  2213. model.Name = newmsg
  2214. clone.Parent = model
  2215. hum.Name = "TAG"
  2216. hum.MaxHealth = 100
  2217. hum.Health = 100
  2218. weld.Part0 = clone
  2219. weld.Part1 = char.Head
  2220. char.Head.Transparency = 1
  2221. end
  2222. end)
  2223.  
  2224. addcmd('unname', 'unnames player',{},
  2225. function(args)
  2226. local players = getPlayer(args[1])
  2227. local name = (args[2])
  2228. for i,v in pairs(players) do
  2229. for a, mod in pairs(gPlayers[v].Character:children()) do
  2230. if mod:FindFirstChild("TAG") then
  2231. gPlayers[v].Character.Head.Transparency = 0
  2232. mod:Destroy()
  2233. end
  2234. end
  2235. end
  2236. end)
  2237.  
  2238. addcmd('stun', 'stuns player',{},
  2239. function(args)
  2240. local players = getPlayer(args[1])
  2241. for i,v in pairs(players) do
  2242. gPlayers[v].Character.Humanoid.PlatformStand = true
  2243. end
  2244. end)
  2245.  
  2246. addcmd('unstun', 'stuns player',{},
  2247. function(args)
  2248. local players = getPlayer(args[1])
  2249. for i,v in pairs(players) do
  2250. gPlayers[v].Character.Humanoid.PlatformStand = false
  2251. end
  2252. end)
  2253.  
  2254. addcmd('sit', 'stuns player',{},
  2255. function(args)
  2256. local players = getPlayer(args[1])
  2257. for i,v in pairs(players) do
  2258. gPlayers[v].Character.Humanoid.Sit = true
  2259. end
  2260. end)
  2261.  
  2262. addcmd('guest', 'ew a guest',{},
  2263. function(args)
  2264. local players = getPlayer(args[1])
  2265. for i,v in pairs(players) do
  2266. gPlayers[v].CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
  2267. gPlayers[v].Character:BreakJoints()
  2268. end
  2269. end)
  2270.  
  2271. addcmd('damage', 'damages a player',{},
  2272. function(args)
  2273. local players = getPlayer(args[1])
  2274. for i,v in pairs(players) do
  2275. gPlayers[v].Character.Humanoid.Health = gPlayers[v].Character.Humanoid.Health - 25
  2276. end
  2277. end)
  2278.  
  2279. addcmd('view', 'views player',{},
  2280. function(args)
  2281. local players = getPlayer(args[1])
  2282. for i,v in pairs(players) do
  2283. game.Workspace.CurrentCamera.CameraSubject = gPlayers[v].Character
  2284. end
  2285. end)
  2286.  
  2287. addcmd('unview', 'stops viewing player',{},
  2288. function()
  2289. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  2290. end)
  2291.  
  2292. addcmd('nolimbs', 'removes limbs from player',{},
  2293. function(args)
  2294. local players = getPlayer(args[1])
  2295. for i,v in pairs(players) do
  2296. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  2297. if v:IsA("BasePart") and
  2298. v.Name == "Right Leg" or
  2299. v.Name == "Left Leg" or
  2300. v.Name == "Right Arm" or
  2301. v.Name == "Left Arm" then
  2302. v:Remove()
  2303. end
  2304. end
  2305. end
  2306. end)
  2307.  
  2308. addcmd('box', 'creates a box around player',{},
  2309. function(args)
  2310. local players = getPlayer(args[1])
  2311. for i,v in pairs(players)do
  2312. local pchar=_char(v)
  2313. local SB = Instance.new("SelectionBox", pchar)
  2314. SB.Adornee = SB.Parent
  2315. SB.Color = BrickColor.new("" .. (args[2]))
  2316. end
  2317. end)
  2318.  
  2319. addcmd('nobox', 'takes away box from player',{'unbox'},
  2320. function(args)
  2321. local players = getPlayer(args[1])
  2322. for i,v in pairs(players)do
  2323. local pchar=_char(v)
  2324. for i,v in pairs(gPlayers[v].Character:GetChildren()) do
  2325. if v:IsA("SelectionBox") then
  2326. v:Destroy()
  2327. end
  2328. end
  2329. end
  2330. end)
  2331.  
  2332. addcmd('ghost', 'ghostifys player',{},
  2333. function(args)
  2334. local players = getPlayer(args[1])
  2335. for i,v in pairs(players)do
  2336. local pchar=gPlayers[v].Character
  2337. pchar.Head.Transparency = 0.5
  2338. pchar.Torso.Transparency = 0.5
  2339. pchar["Left Arm"].Transparency = 0.5
  2340. pchar["Right Arm"].Transparency = 0.5
  2341. pchar["Left Leg"].Transparency = 0.5
  2342. pchar["Right Leg"].Transparency = 0.5
  2343. pchar.Head.face.Transparency = 0.5
  2344. end
  2345. end)
  2346.  
  2347. addcmd('sphere', 'puts sphere around player',{},
  2348. function(args)
  2349. local players = getPlayer(args[1])
  2350. for i,v in pairs(players)do
  2351. local pchar=gPlayers[v].Character
  2352. local SS = Instance.new("SelectionSphere", pchar)
  2353. SS.Adornee = SS.Parent
  2354. end
  2355. end)
  2356.  
  2357. addcmd('loadmap','loads map from model',{},
  2358. function(args)
  2359. pcall(function()
  2360. for i,v in pairs(workspace:GetChildren()) do
  2361. if v.Name~="Camera" and v.Name~="Terrain" then
  2362. v:Destroy()
  2363. end
  2364. end
  2365. workspace.Terrain:Clear()
  2366. for i,v in pairs(game.Players:GetChildren()) do
  2367. local plr = v
  2368. local prt = Instance.new("Model", workspace)
  2369. Instance.new("Part", prt).Name="Torso"
  2370. Instance.new("Part", prt).Name="Head"
  2371. Instance.new("Humanoid", prt).Name="Humanoid"
  2372. plr.Character = prt
  2373. end
  2374. if (args[1]) == "sfotho" then
  2375. local b = Insert(296400126, game.Workspace, "sfotho")
  2376. b:MakeJoints()
  2377. end
  2378. local b = Insert(args[1], game.Workspace, "LoadedMap")
  2379. b:MakeJoints()
  2380. end)
  2381. Notify('Loaded Map')
  2382. end)
  2383.  
  2384. addcmd('sky','changes skybox',{},
  2385. function(args)
  2386. pcall(function()
  2387. local ID = (args[1])
  2388. local sky = Instance.new("Sky", game.Lighting)
  2389. sky.SkyboxBk = "rbxassetid://" .. ID
  2390. sky.SkyboxDn = "rbxassetid://" .. ID
  2391. sky.SkyboxFt = "rbxassetid://" .. ID
  2392. sky.SkyboxLf = "rbxassetid://" .. ID
  2393. sky.SkyboxRt = "rbxassetid://" .. ID
  2394. sky.SkyboxUp = "rbxassetid://" .. ID
  2395. end)
  2396. end)
  2397.  
  2398. addcmd('ambient','changes ambient',{},
  2399. function(args)
  2400. game.Lighting.Ambient = Color3.new(args[1],args[2],args[3])
  2401. end)
  2402.  
  2403. addcmd('gui','gives YourMom GUI',{},
  2404. function(args)
  2405. loadstring(Insert(289110135, game.CoreGui.RobloxGui).Source)()
  2406. end)
  2407.  
  2408. addcmd('jail','jails player',{},
  2409. function(args)
  2410. local players = getPlayer(args[1])
  2411. for i,v in pairs(players)do
  2412. local pchar=gPlayers[v].Character
  2413. local JailPlayer = DATA.JAIL:Clone()
  2414. JailPlayer.Parent = game.Workspace
  2415. JailPlayer:MoveTo(pchar.Torso.Position)
  2416. JailPlayer.Name = "JAIL_" .. gPlayers[v].Name
  2417. if pchar:FindFirstChild("HumanoidRootPart") then
  2418. pchar.HumanoidRootPart.CFrame = JailPlayer.MAIN.CFrame
  2419. end
  2420. end
  2421. end)
  2422.  
  2423. addcmd('unjail','unjails player',{},
  2424. function(args)
  2425. local players = getPlayer(args[1])
  2426. for i,v in pairs(players)do
  2427. game.Workspace["JAIL_" .. gPlayers[v].Name]:Destroy()
  2428. end
  2429. end)
  2430.  
  2431. addcmd('shutdown', 'shuts the server down',{},
  2432. function(args)
  2433. local function ShutDown(Base)
  2434. for i,v in pairs(Base:GetChildren()) do
  2435. v:Destroy()
  2436. end
  2437. end
  2438. ShutDown(game.Players)
  2439. end)
  2440.  
  2441. addcmd('animation','makes player animate',{'anim'},
  2442. function(args)
  2443. local players = getPlayer(args[1])
  2444. for i,v in pairs(players)do
  2445. local pchar = gPlayers[v].Character
  2446. local ID = args[2]
  2447.  
  2448. if args[2] == "climb" then
  2449. ID = "180436334"
  2450. end
  2451. if args[2] == "fall" then
  2452. ID = "180436148"
  2453. end
  2454. if args[2] == "jump" then
  2455. ID = "125750702"
  2456. end
  2457. if args[2] == "sit" then
  2458. ID = "178130996"
  2459. end
  2460. for _,x in pairs(gPlayers[v].Character.Animate:GetChildren()) do
  2461. if x:IsA("StringValue") then
  2462. for _,c in pairs(x:GetChildren()) do
  2463. if c:IsA("Animation") then
  2464. c.AnimationId = "rbxassetid://" .. ID
  2465. end
  2466. end
  2467. end
  2468. end
  2469. end
  2470. end)
  2471.  
  2472. addcmd('fix','turns player back to normal',{},
  2473. function(args)
  2474. local players = getPlayer(args[1])
  2475. for i,v in pairs(players)do
  2476. local pchar = gPlayers[v].Character
  2477.  
  2478. pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  2479. pchar.Torso["Right Shoulder"].C0 = CFrame.new(1,0.5,0) * CFrame.Angles(0,math.rad(90),0)
  2480. pchar.Torso["Left Shoulder"].C0 = CFrame.new(-1,0.5,0) * CFrame.Angles(0,math.rad(-90),0)
  2481. pchar.Torso["Right Hip"].C0 = CFrame.new(1,-1,0) * CFrame.Angles(0,math.rad(90),0)
  2482. pchar.Torso["Left Hip"].C0 = CFrame.new(-1,-1,0) * CFrame.Angles(0,math.rad(-90),0)
  2483.  
  2484. for i,v in pairs(pchar.Head:GetChildren()) do
  2485. if v:IsA("SpecialMesh") then
  2486. v:Destroy()
  2487. end
  2488. end
  2489.  
  2490. for i,v in pairs(pchar:GetChildren()) do
  2491. if v:IsA("Shirt") then
  2492. v:Destroy()
  2493. end
  2494. end
  2495.  
  2496. for i,v in pairs(pchar:GetChildren()) do
  2497. if v:IsA("Pants") then
  2498. v:Destroy()
  2499. end
  2500. end
  2501.  
  2502. if Player.Character:FindFirstChild("Shirt Graphic") ~= nil then
  2503. Player.Character["Shirt Graphic"].Graphic = ""
  2504. end
  2505.  
  2506. local HeadMesh = Instance.new("SpecialMesh", pchar.Head)
  2507. HeadMesh.MeshType = "Head"
  2508. HeadMesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  2509.  
  2510. pchar.Head.Transparency = 0
  2511. pchar.Torso.Transparency = 0
  2512. pchar["Left Arm"].Transparency = 0
  2513. pchar["Right Arm"].Transparency = 0
  2514. pchar["Left Leg"].Transparency = 0
  2515. pchar["Right Leg"].Transparency = 0
  2516.  
  2517. for i,v in pairs(pchar.Head:GetChildren()) do
  2518. if v:IsA("Decal") then
  2519. v:Destroy()
  2520. end
  2521. end
  2522.  
  2523. local face = Instance.new("Decal", pchar.Head)
  2524. face.Name = "face"
  2525. face.Texture = "rbxasset://textures/face.png"
  2526. face.Face = "Front"
  2527.  
  2528. for i,v in pairs(pchar:GetChildren()) do
  2529. if v:IsA("Seat") then
  2530. v:Destroy()
  2531. end
  2532. end
  2533.  
  2534. for i,v in pairs(pchar.Torso:GetChildren()) do
  2535. if v:IsA("Weld") then
  2536. v:Destroy()
  2537. end
  2538. end
  2539.  
  2540. for i,v in pairs(pchar.Torso:GetChildren()) do
  2541. if v:IsA("SpecialMesh") then
  2542. v:Destroy()
  2543. end
  2544. end
  2545.  
  2546. pchar["Body Colors"].HeadColor = BrickColor.new("Cool yellow")
  2547. pchar["Body Colors"].LeftArmColor = BrickColor.new("Cool yellow")
  2548. pchar["Body Colors"].LeftLegColor = BrickColor.new("Medium blue")
  2549. pchar["Body Colors"].RightArmColor = BrickColor.new("Cool yellow")
  2550. pchar["Body Colors"].RightLegColor = BrickColor.new("Medium blue")
  2551. pchar["Body Colors"].TorsoColor = BrickColor.new("Bright blue")
  2552. for _,v in pairs(Player.Character:GetChildren()) do
  2553. if v:IsA("Hat") then
  2554. v:Destroy()
  2555. end
  2556. end
  2557. end
  2558. end)
  2559.  
  2560. addcmd('creeper','make the player a creeper',{'crpr'},
  2561. function(args)
  2562. local players = getPlayer(args[1])
  2563. for i,v in pairs(players)do
  2564. local pchar = gPlayers[v].Character
  2565. if gPlayers[v] and pchar and pchar:findFirstChild("Torso") then
  2566. if pchar:FindFirstChild("Shirt") then
  2567. pchar.Shirt.Parent = pchar.Torso
  2568. end
  2569. if pchar:FindFirstChild("Pants") then
  2570. pchar.Pants.Parent = pchar.Torso
  2571. end
  2572. if pchar:FindFirstChild("Shirt Graphic") then
  2573. pchar["Shirt Graphic"].Graphic = ""
  2574. end
  2575. for i,v in pairs(pchar:GetChildren()) do
  2576. if v:IsA("Hat") then
  2577. v:Destroy()
  2578. end
  2579. end
  2580. pchar.Torso.Neck.C0 = CFrame.new(0,1,0) * CFrame.Angles(math.rad(90),math.rad(180),0)
  2581. pchar.Torso["Right Shoulder"].C0 = CFrame.new(0,-1.5,-.5) * CFrame.Angles(0,math.rad(90),0)
  2582. pchar.Torso["Left Shoulder"].C0 = CFrame.new(0,-1.5,-.5) * CFrame.Angles(0,math.rad(-90),0)
  2583. pchar.Torso["Right Hip"].C0 = CFrame.new(0,-1,.5) * CFrame.Angles(0,math.rad(90),0)
  2584. pchar.Torso["Left Hip"].C0 = CFrame.new(0,-1,.5) * CFrame.Angles(0,math.rad(-90),0)
  2585. pchar["Body Colors"].HeadColor = BrickColor.new("Bright green")
  2586. pchar["Body Colors"].LeftArmColor = BrickColor.new("Bright green")
  2587. pchar["Body Colors"].LeftLegColor = BrickColor.new("Bright green")
  2588. pchar["Body Colors"].RightArmColor = BrickColor.new("Bright green")
  2589. pchar["Body Colors"].RightLegColor = BrickColor.new("Bright green")
  2590. pchar["Body Colors"].TorsoColor = BrickColor.new("Bright green")
  2591. end
  2592. end
  2593. end)
  2594.  
  2595. addcmd('uncreeper','makes player back to normal',{},
  2596. function(args)
  2597. local players = getPlayer(args[1])
  2598. for i,v in pairs(players)do
  2599. execCmd("fix " .. gPlayers[v].Name, Player)
  2600. end
  2601. end)
  2602.  
  2603. addcmd('shrek', 'makes player shrek',{},
  2604. function(args)
  2605. local players = getPlayer(args[1])
  2606. for i,v in pairs(players) do
  2607. local pchar = gPlayers[v].Character
  2608. for i,v in pairs(pchar:GetChildren()) do
  2609. if v:IsA("Hat") or v:IsA("CharacterMesh") or v:IsA("Shirt") or v:IsA("Pants") then
  2610. v:Destroy()
  2611. end
  2612. end
  2613. for i,v in pairs(pchar.Head:GetChildren()) do
  2614. if v:IsA("Decal") or v:IsA("SpecialMesh") then
  2615. v:Destroy()
  2616. end
  2617. end
  2618.  
  2619. local mesh = Instance.new("SpecialMesh", pchar.Head)
  2620. mesh.MeshType = "FileMesh"
  2621. pchar.Head.Mesh.MeshId = "http://www.roblox.com/asset/?id=19999257"
  2622. pchar.Head.Mesh.Offset = Vector3.new(-0.1, 0.1, 0)
  2623. pchar.Head.Mesh.TextureId = "http://www.roblox.com/asset/?id=156397869"
  2624.  
  2625. local Shirt = Instance.new("Shirt", gPlayers[v].Character)
  2626. local Pants = Instance.new("Pants", gPlayers[v].Character)
  2627.  
  2628. Shirt.ShirtTemplate = "rbxassetid://133078194"
  2629. Pants.PantsTemplate = "rbxassetid://133078204"
  2630. end
  2631. end)
  2632.  
  2633. addcmd('unshrek','makes player back to normal',{},
  2634. function(args)
  2635. local players = getPlayer(args[1])
  2636. for i,v in pairs(players)do
  2637. execCmd("fix " .. gPlayers[v].Name, Player)
  2638. end
  2639. end)
  2640.  
  2641. local Spamming = false
  2642.  
  2643. addcmd('spam','spams text',{},
  2644. function(args)
  2645. Spamming = true
  2646. spawn(function()
  2647. while wait(0) do
  2648. if Spamming == true then
  2649. while wait(0.1) do
  2650. if Spamming == true then
  2651. game.Players:Chat("" .. args[1])
  2652. elseif Spamming == false then
  2653. return
  2654. end
  2655. end
  2656. end
  2657. end
  2658. end)
  2659. end)
  2660.  
  2661. addcmd('nospam','stops spamming',{},
  2662. function(args)
  2663. Spamming = false
  2664. end)
  2665.  
  2666. addcmd('control','controls player',{},
  2667. function(args)
  2668. local players = getPlayer(args[1])
  2669. for i,v in pairs(players)do
  2670. local pchar = gPlayers[v].Character
  2671. if gPlayers[v] and pchar then
  2672. pchar.Humanoid.PlatformStand = true
  2673. local w = Instance.new("Weld", Player.Character.Torso)
  2674. w.Part0 = Player.Character.Torso
  2675. w.Part1 = pchar.Torso
  2676. local w2 = Instance.new("Weld", Player.Character.Head)
  2677. w2.Part0 = Player.Character.Head
  2678. w2.Part1 = pchar.Head
  2679. local w3 = Instance.new("Weld", Player.Character:findFirstChild("Right Arm"))
  2680. w3.Part0 = Player.Character:findFirstChild("Right Arm")
  2681. w3.Part1 = pchar:findFirstChild("Right Arm")
  2682. local w4 = Instance.new("Weld", Player.Character:findFirstChild("Left Arm"))
  2683. w4.Part0 = Player.Character:findFirstChild("Left Arm")
  2684. w4.Part1 = pchar:findFirstChild("Left Arm")
  2685. local w5 = Instance.new("Weld", Player.Character:findFirstChild("Right Leg"))
  2686. w5.Part0 = Player.Character:findFirstChild("Right Leg")
  2687. w5.Part1 = pchar:findFirstChild("Right Leg")
  2688. local w6 = Instance.new("Weld", Player.Character:findFirstChild("Left Leg"))
  2689. w6.Part0 = Player.Character:findFirstChild("Left Leg")
  2690. w6.Part1 = pchar:findFirstChild("Left Leg")
  2691. char.Head.face:Destroy()
  2692. for i,v in pairs(pchar:GetChildren()) do
  2693. if v:IsA("BasePart") then
  2694. v.CanCollide = false
  2695. end
  2696. end
  2697. for i,v in pairs(char:GetChildren()) do
  2698. if v:IsA("BasePart") then
  2699. v.Transparency = 1
  2700. elseif v:IsA("Hat") then
  2701. v:Destroy()
  2702. end
  2703. end
  2704. pchar.Parent = char
  2705. pchar.Humanoid.Changed:connect(function()
  2706. pchar.Humanoid.PlatformStand = true
  2707. end)
  2708. end
  2709. end
  2710. end)
  2711.  
  2712. addcmd('nuke','nukes player',{},
  2713. function(args)
  2714. local players = getPlayer(args[1])
  2715. for i,v in pairs(players)do
  2716. local pchar = gPlayers[v].Character
  2717. if gPlayers[v] and pchar and pchar:FindFirstChild("Torso") then
  2718. local nuke = Instance.new("Part", game.Workspace)
  2719. nuke.Anchored = true
  2720. nuke.CanCollide = false
  2721. nuke.FormFactor = "Symmetric"
  2722. nuke.Shape = "Ball"
  2723. nuke.Size = Vector3.new(1,1,1)
  2724. nuke.BrickColor = BrickColor.new("New Yeller")
  2725. nuke.Transparency = 0.5
  2726. nuke.Reflectance = 0.2
  2727. nuke.TopSurface = 0
  2728. nuke.BottomSurface = 0
  2729. nuke.Touched:connect(function (hit)
  2730. if hit and hit.Parent then
  2731. local boom = Instance.new("Explosion", game.Workspace)
  2732. boom.Position = hit.Position
  2733. boom.BlastRadius = 11
  2734. boom.BlastPressure = math.huge
  2735. end
  2736. end)
  2737. local CF = pchar.Torso.CFrame
  2738. nuke.CFrame = CF
  2739. for i = 1,333 do
  2740. nuke.Size = nuke.Size + Vector3.new(3,3,3)
  2741. nuke.CFrame = CF
  2742. wait(1/44)
  2743. end
  2744. nuke:Destroy()
  2745. end
  2746. end
  2747. end)
  2748.  
  2749. addcmd('infect','infects player',{},
  2750. function(args)
  2751. local players = getPlayer(args[1])
  2752. for i,v in pairs(players)do
  2753. function infect(rip)
  2754. local pchar = gPlayers[v].Character
  2755. for i,v in pairs(pchar:GetChildren()) do
  2756. if v:IsA("Hat") or v:IsA("Shirt") or v:IsA("Pants") then
  2757. v:Destroy()
  2758. end
  2759. end
  2760. if pchar.Torso:FindFirstChild("roblox") then
  2761. pchar.Torso.roblox:Destroy()
  2762. end
  2763. if pchar.Head:FindFirstChild("face") then
  2764. pchar.Head.face.Texture = "http://www.roblox.com/asset/?id=94634491"
  2765. end
  2766. if pchar:FindFirstChild("Body Colors") then
  2767. local Colors = pchar["Body Colors"]
  2768. local Skin = BrickColor.new("Pastel green")
  2769. local Clothes = BrickColor.new("Reddish brown")
  2770. Colors.HeadColor = Skin
  2771. Colors.LeftArmColor = Skin
  2772. Colors.RightArmColor = Skin
  2773. Colors.LeftLegColor = Clothes
  2774. Colors.RightLegColor = Clothes
  2775. Colors.TorsoColor = Clothes
  2776. end
  2777. local w1 = Instance.new("Weld", pchar)
  2778. w1.Part0 = pchar["Right Arm"]
  2779. w1.Part1 = pchar.Torso
  2780. w1.C0 = CFrame.new(-1.5, 0.5, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(0), math.rad(0))
  2781. local w2 = Instance.new("Weld", pchar)
  2782. w2.Part0 = pchar["Left Arm"]
  2783. w2.Part1 = pchar.Torso
  2784. w2.C0 = CFrame.new(1.5, 0.5, 0.5) * CFrame.fromEulerAnglesXYZ(math.rad(-90), math.rad(0), math.rad(0))
  2785. local rip = false
  2786. local connect1 = pchar["Left Arm"].Touched:connect(function(hit)
  2787. if connect1 == false then
  2788. connect1 = true
  2789. if game.Players:FindFirstChild(hit.Parent.Name) then
  2790. infect(game.Players[hit.Parent.Name])
  2791. end
  2792. wait(0.5)
  2793. connect1 = true
  2794. end
  2795. end)
  2796. local connect2 = pchar["Right Arm"].Touched:connect(function(hit)
  2797. if connect2 == false then
  2798. connect2 = true
  2799. if game.Players:FindFirstChild(hit.Parent.Name) then
  2800. infect(game.Players[hit.Parent.Name])
  2801. end
  2802. wait(0.5)
  2803. connect2 = true
  2804. end
  2805. end)
  2806. local IV = Instance.new("IntValue", pchar)
  2807. IV.Name = "Infected"
  2808. IV.Value = 0
  2809. IV.Changed:connect(function()
  2810. connect1:disconnect()
  2811. connect2:disconnect()
  2812. end)
  2813. end
  2814. infect(v)
  2815. end
  2816. end)
  2817.  
  2818. addcmd('uninfect','makes player back to normal',{},
  2819. function(args)
  2820. local players = getPlayer(args[1])
  2821. for i,v in pairs(players)do
  2822. execCmd("fix " .. gPlayers[v].Name, Player)
  2823. end
  2824. end)
  2825.  
  2826. addcmd('duck','makes players head a duck',{},
  2827. function(args)
  2828. local players = getPlayer(args[1])
  2829. for i,v in pairs(players)do
  2830. local pchar = gPlayers[v].Character
  2831. for i,v in pairs(pchar.Torso:GetChildren()) do
  2832. if v:IsA("Decal") then
  2833. v:Destroy()
  2834. end
  2835. end
  2836. for i,v in pairs(pchar:GetChildren()) do
  2837. if v:IsA("Hat") then
  2838. v:Destroy()
  2839. end
  2840. end
  2841. local duck = Instance.new("SpecialMesh", pchar.Torso)
  2842. duck.MeshType = "FileMesh"
  2843. duck.MeshId = "http://www.roblox.com/asset/?id=9419831"
  2844. duck.TextureId = "http://www.roblox.com/asset/?id=9419827"
  2845. duck.Scale = Vector3.new(5, 5, 5)
  2846. pchar.Head.Transparency = 1
  2847. pchar["Left Arm"].Transparency = 1
  2848. pchar["Right Arm"].Transparency = 1
  2849. pchar["Left Leg"].Transparency = 1
  2850. pchar["Right Leg"].Transparency = 1
  2851. pchar.Head.face.Transparency = 1
  2852. end
  2853. end)
  2854.  
  2855. addcmd('unduck','makes player back to normal',{},
  2856. function(args)
  2857. local players = getPlayer(args[1])
  2858. for i,v in pairs(players)do
  2859. execCmd("fix " .. gPlayers[v].Name, Player)
  2860. end
  2861. end)
  2862.  
  2863. addcmd('disable','removes players humanoid',{},
  2864. function(args)
  2865. local players = getPlayer(args[1])
  2866. for i,v in pairs(players)do
  2867. local pchar = gPlayers[v].Character
  2868. if pchar:FindFirstChild("Humanoid") then
  2869. pchar.Humanoid.Name = "HUMANOID_" .. gPlayers[v].Name
  2870. local humanoid = pchar["HUMANOID_" .. gPlayers[v].Name]
  2871. humanoid.Parent = game.ContextActionService
  2872. end
  2873. end
  2874. end)
  2875.  
  2876. addcmd('enable','gives player humanoid',{},
  2877. function(args)
  2878. local players = getPlayer(args[1])
  2879. for i,v in pairs(players)do
  2880. local pchar = gPlayers[v].Character
  2881. if pchar:FindFirstChild("Humanoid") then
  2882. return
  2883. else
  2884. local humanoid = game.ContextActionService["HUMANOID_" .. gPlayers[v].Name]
  2885. humanoid.Parent = pchar
  2886. humanoid.Name = "Humanoid"
  2887. end
  2888. end
  2889. end)
  2890.  
  2891. addcmd('size','changes size of player',{},
  2892. function(args)
  2893. local players = getPlayer(args[1])
  2894. for i,v in pairs(players)do
  2895. local pchar = gPlayers[v].Character
  2896. local function scale(chr,scl)
  2897.  
  2898. for _,v in pairs(pchar:GetChildren()) do
  2899. if v:IsA("Hat") then
  2900. v:Clone()
  2901. v.Parent = game.Lighting
  2902. end
  2903. end
  2904.  
  2905. local Head = chr['Head']
  2906. local Torso = chr['Torso']
  2907. local LA = chr['Left Arm']
  2908. local RA = chr['Right Arm']
  2909. local LL = chr['Left Leg']
  2910. local RL = chr['Right Leg']
  2911. local HRP = chr['HumanoidRootPart']
  2912.  
  2913. wait(0.1)
  2914.  
  2915. Head.formFactor = 3
  2916. Torso.formFactor = 3
  2917. LA.formFactor = 3
  2918. RA.formFactor = 3
  2919. LL.formFactor = 3
  2920. RL.formFactor = 3
  2921. HRP.formFactor = 3
  2922.  
  2923. Head.Size = Vector3.new(scl * 2, scl, scl)
  2924. Torso.Size = Vector3.new(scl * 2, scl * 2, scl)
  2925. LA.Size = Vector3.new(scl, scl * 2, scl)
  2926. RA.Size = Vector3.new(scl, scl * 2, scl)
  2927. LL.Size = Vector3.new(scl, scl * 2, scl)
  2928. RL.Size = Vector3.new(scl, scl * 2, scl)
  2929. HRP.Size = Vector3.new(scl * 2, scl * 2, scl)
  2930.  
  2931. local Motor1 = Instance.new('Motor6D', Torso)
  2932. Motor1.Part0 = Torso
  2933. Motor1.Part1 = Head
  2934. Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  2935. Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1)
  2936. Motor1.Name = "Neck"
  2937.  
  2938. local Motor2 = Instance.new('Motor6D', Torso)
  2939. Motor2.Part0 = Torso
  2940. Motor2.Part1 = LA
  2941. Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2942. Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2943. Motor2.Name = "Left Shoulder"
  2944.  
  2945. local Motor3 = Instance.new('Motor6D', Torso)
  2946. Motor3.Part0 = Torso
  2947. Motor3.Part1 = RA
  2948. Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2949. Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2950. Motor3.Name = "Right Shoulder"
  2951.  
  2952. local Motor4 = Instance.new('Motor6D', Torso)
  2953. Motor4.Part0 = Torso
  2954. Motor4.Part1 = LL
  2955. Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2956. Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0)
  2957. Motor4.Name = "Left Hip"
  2958.  
  2959. local Motor5 = Instance.new('Motor6D', Torso)
  2960. Motor5.Part0 = Torso
  2961. Motor5.Part1 = RL
  2962. Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2963. Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0)
  2964. Motor5.Name = "Right Hip"
  2965.  
  2966. local Motor6 = Instance.new('Motor6D', HRP)
  2967. Motor6.Part0 = HRP
  2968. Motor6.Part1 = Torso
  2969. Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  2970. Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1)
  2971.  
  2972. end
  2973.  
  2974. scale(pchar, args[2])
  2975.  
  2976. for _,v in pairs(game.Lighting:GetChildren()) do
  2977. if v:IsA("Hat") then
  2978. v.Parent = pchar
  2979. end
  2980. end
  2981. end
  2982. end)
  2983.  
  2984. addcmd('confuse','reverses players speed',{'reverse'},
  2985. function(args)
  2986. local players = getPlayer(args[1])
  2987. for i,v in pairs(players)do
  2988. local pchar = gPlayers[v].Character
  2989. pchar.Humanoid.WalkSpeed = tonumber(-16)
  2990. end
  2991. end)
  2992.  
  2993. addcmd('unconfuse','reverses players speed',{'unreverse'},
  2994. function(args)
  2995. local players = getPlayer(args[1])
  2996. for i,v in pairs(players)do
  2997. local pchar = gPlayers[v].Character
  2998. pchar.Humanoid.WalkSpeed = tonumber(16)
  2999. end
  3000. end)
  3001.  
  3002. addcmd('clone','clones player',{},
  3003. function(args)
  3004. local players = getPlayer(args[1])
  3005. for i,v in pairs(players)do
  3006. local pchar = gPlayers[v].Character
  3007. pchar.Archivable = true
  3008. local clone = pchar:Clone()
  3009. clone.Parent = game.Workspace
  3010. clone:MoveTo(pchar:GetModelCFrame().p)
  3011. clone:MakeJoints()
  3012. pchar.Archivable = false
  3013. end
  3014. end)
  3015.  
  3016. addcmd('spin','spins player',{},
  3017. function(args)
  3018. local players = getPlayer(args[1])
  3019. for i,v in pairs(players)do
  3020. local pchar = gPlayers[v].Character
  3021. for i,v in pairs(pchar.Torso:GetChildren()) do
  3022. if v.Name == "Spinning" then
  3023. v:Destroy()
  3024. end
  3025. end
  3026. local Torso = pchar.Torso
  3027. local BG = Instance.new("BodyGyro", Torso)
  3028. BG.Name = "Spinning"
  3029. BG.maxTorque = Vector3.new(0, math.huge, 0)
  3030. BG.P = 11111
  3031. BG.cframe = Torso.CFrame
  3032. repeat wait(1/44)
  3033. BG.CFrame = BG.CFrame * CFrame.Angles(0,math.rad(30),0)
  3034. until not BG or BG.Parent ~= Torso
  3035. end
  3036. end)
  3037.  
  3038. addcmd('unspin','stops spinning player',{},
  3039. function(args)
  3040. local players = getPlayer(args[1])
  3041. for i,v in pairs(players)do
  3042. local pchar = gPlayers[v].Character
  3043. for i,v in pairs(pchar.Torso:GetChildren()) do
  3044. if v.Name == "Spinning" then
  3045. v:Destroy()
  3046. end
  3047. end
  3048. end
  3049. end)
  3050.  
  3051. addcmd('dog','makes player a dog',{},
  3052. function(args)
  3053. local players = getPlayer(args[1])
  3054. for i,v in pairs(players)do
  3055. local pchar = gPlayers[v].Character
  3056. if pchar:FindFirstChild("Shirt") then
  3057. pchar.Shirt:Destroy()
  3058. end
  3059. if pchar:FindFirstChild("Pants") then
  3060. pchar.Pants:Destroy()
  3061. end
  3062. if pchar:FindFirstChild("Shirt Graphic") then
  3063. pchar["Shirt Graphic"].Graphic = ""
  3064. end
  3065. pchar.Torso.Transparency = 1
  3066. pchar.Torso.Neck.C0 = CFrame.new(0,-.5,-2) * CFrame.Angles(math.rad(90),math.rad(180),0)
  3067. pchar.Torso["Right Shoulder"].C0 = CFrame.new(.5,-1.5,-1.5) * CFrame.Angles(0,math.rad(90),0)
  3068. pchar.Torso["Left Shoulder"].C0 = CFrame.new(-.5,-1.5,-1.5) * CFrame.Angles(0,math.rad(-90),0)
  3069. pchar.Torso["Right Hip"].C0 = CFrame.new(1.5,-1,1.5) * CFrame.Angles(0,math.rad(90),0)
  3070. pchar.Torso["Left Hip"].C0 = CFrame.new(-1.5,-1,1.5) * CFrame.Angles(0,math.rad(-90),0)
  3071. local FakeTorso = Instance.new("Seat", pchar)
  3072. FakeTorso.Name = "FakeTorso"
  3073. FakeTorso.FormFactor = "Symmetric"
  3074. FakeTorso.TopSurface = 0
  3075. FakeTorso.BottomSurface = 0
  3076. FakeTorso.Size = Vector3.new(3,1,4)
  3077. FakeTorso.BrickColor = BrickColor.new("Brown")
  3078. FakeTorso.CFrame = pchar.Torso.CFrame
  3079. local BF = Instance.new("BodyForce", FakeTorso)
  3080. BF.Force = Vector3.new(0, FakeTorso:GetMass() * 196.25, 0)
  3081. local W = Instance.new("Weld", pchar.Torso)
  3082. W.Part0 = pchar.Torso
  3083. W.Part1 = FakeTorso
  3084. W.C0 = CFrame.new(0,-.5,0)
  3085. local BC = pchar["Body Colors"]
  3086. BC.HeadColor = BrickColor.new("Brown")
  3087. BC.LeftArmColor = BrickColor.new("Brown")
  3088. BC.LeftLegColor = BrickColor.new("Brown")
  3089. BC.RightArmColor = BrickColor.new("Brown")
  3090. BC.RightLegColor = BrickColor.new("Brown")
  3091. BC.TorsoColor = BrickColor.new("Brown")
  3092. end
  3093. end)
  3094.  
  3095. addcmd('undog','makes player back to normal',{},
  3096. function(args)
  3097. local players = getPlayer(args[1])
  3098. for i,v in pairs(players)do
  3099. execCmd("fix " .. gPlayers[v].Name, Player)
  3100. end
  3101. end)
  3102.  
  3103. addcmd('tptool','gives player tptool',{''},
  3104. function(args)
  3105. local tool = DATA.Teleport:Clone()
  3106. tool.Parent = Player.Backpack
  3107. end)
  3108.  
  3109. addcmd('loopsit','loop sits player',{},
  3110. function(args)
  3111. local players = getPlayer(args[1])
  3112. for i,v in pairs(players)do
  3113. local pchar = gPlayers[v].Character
  3114. if pchar:FindFirstChild("LoopSit") then
  3115. pchar.LoopSit.Name = "NotLoopSit"
  3116. wait(0.1)
  3117. pchar.NotLoopSit:Destroy()
  3118. end
  3119. local LoopSit = Instance.new("StringValue", pchar)
  3120. LoopSit.Name = "LoopSit"
  3121. repeat wait(0.1)
  3122. pchar.Humanoid.Sit = true
  3123. until LoopSit.Name == "NotLoopSit"
  3124. end
  3125. end)
  3126.  
  3127. addcmd('unloopsit','stops loop sit on player',{'noloopsit'},
  3128. function(args)
  3129. local players = getPlayer(args[1])
  3130. for i,v in pairs(players)do
  3131. local pchar = gPlayers[v].Character
  3132. if pchar:FindFirstChild("LoopSit") then
  3133. pchar.LoopSit.Name = "NotLoopSit"
  3134. wait(0.1)
  3135. pchar.NotLoopSit:Destroy()
  3136. end
  3137. end
  3138. end)
  3139.  
  3140. addcmd('loopjump','loop jumps player',{},
  3141. function(args)
  3142. local players = getPlayer(args[1])
  3143. for i,v in pairs(players)do
  3144. local pchar = gPlayers[v].Character
  3145. if pchar:FindFirstChild("LoopJump") then
  3146. pchar.LoopJump.Name = "NotLoopJump"
  3147. wait(0.1)
  3148. pchar.NotLoopJump:Destroy()
  3149. end
  3150. local LoopJump = Instance.new("StringValue", pchar)
  3151. LoopJump.Name = "LoopJump"
  3152. repeat wait(0.1)
  3153. pchar.Humanoid.Jump = true
  3154. until LoopJump.Name == "NotLoopJump"
  3155. end
  3156. end)
  3157.  
  3158. addcmd('unloopjump','stops loop jump on player',{'noloopjump'},
  3159. function(args)
  3160. local players = getPlayer(args[1])
  3161. for i,v in pairs(players)do
  3162. local pchar = gPlayers[v].Character
  3163. if pchar:FindFirstChild("LoopJump") then
  3164. pchar.LoopJump.Name = "NotLoopJump"
  3165. wait(0.1)
  3166. pchar.NotLoopJump:Destroy()
  3167. end
  3168. end
  3169. end)
  3170.  
  3171. addcmd('loopheal','loop heals player',{},
  3172. function(args)
  3173. local players = getPlayer(args[1])
  3174. for i,v in pairs(players)do
  3175. local pchar = gPlayers[v].Character
  3176. if pchar:FindFirstChild("LoopHeal") then
  3177. pchar.LoopHeal.Name = "NotLoopHeal"
  3178. wait(0.1)
  3179. pchar.NotLoopHeal:Destroy()
  3180. end
  3181. local LoopHeal = Instance.new("StringValue", pchar)
  3182. LoopHeal.Name = "LoopHeal"
  3183. repeat wait(0.1)
  3184. pchar.Humanoid.Health = pchar.Humanoid.MaxHealth
  3185. until LoopHeal.Name == "NotLoopHeal"
  3186. end
  3187. end)
  3188.  
  3189. addcmd('unloopheal','stops loop heal on player',{'noloopheal'},
  3190. function(args)
  3191. local players = getPlayer(args[1])
  3192. for i,v in pairs(players)do
  3193. local pchar = gPlayers[v].Character
  3194. if pchar:FindFirstChild("LoopHeal") then
  3195. pchar.LoopHeal.Name = "NotLoopHeal"
  3196. wait(0.1)
  3197. pchar.NotLoopHeal:Destroy()
  3198. end
  3199. end
  3200. end)
  3201.  
  3202. addcmd('fling','flings player',{},
  3203. function(args)
  3204. local players = getPlayer(args[1])
  3205. for i,v in pairs(players)do
  3206. local pchar = gPlayers[v].Character
  3207. if pchar:FindFirstChild("Humanoid") then
  3208. local xran
  3209. local zran
  3210. repeat
  3211. xran = math.random(-9999,9999)
  3212. until math.abs(xran) >= 5555
  3213. repeat
  3214. zran = math.random(-9999,9999)
  3215. until math.abs(zran) >= 5555
  3216. pchar.Humanoid.Sit = true
  3217. pchar.Torso.Velocity = Vector3.new(0,0,0)
  3218. local BF = Instance.new("BodyForce", pchar.Torso)
  3219. BF.force = Vector3.new(xran * 4, 9999 * 5, zran * 4)
  3220. end
  3221. end
  3222. end)
  3223.  
  3224. addcmd('nograv','makes player have moon gravity',{''},
  3225. function(args)
  3226. local players = getPlayer(args[1])
  3227. for i,v in pairs(players)do
  3228. local pchar = gPlayers[v].Character
  3229. for i,v in pairs(pchar.Torso:GetChildren()) do
  3230. if v.Name == "NoGrav" then
  3231. v:Destroy()
  3232. end
  3233. end
  3234. local BF = Instance.new("BodyForce", pchar.Torso)
  3235. BF.Name = "NoGrav"
  3236. BF.Force = Vector3.new(0,2700,0)
  3237. end
  3238. end)
  3239.  
  3240. addcmd('grav','makes player have normal gravity',{''},
  3241. function(args)
  3242. local players = getPlayer(args[1])
  3243. for i,v in pairs(players)do
  3244. local pchar = gPlayers[v].Character
  3245. for i,v in pairs(pchar.Torso:GetChildren()) do
  3246. if v.Name == "NoGrav" then
  3247. v:Destroy()
  3248. end
  3249. end
  3250. end
  3251. end)
  3252.  
  3253. addcmd('seizure','makes player have a seizure',{''},
  3254. function(args)
  3255. local players = getPlayer(args[1])
  3256. for i,v in pairs(players)do
  3257. local pchar = gPlayers[v].Character
  3258. if pchar:FindFirstChild("Seizure") then
  3259.  
  3260. end
  3261. local Seizure = Instance.new("StringValue", pchar)
  3262. Seizure.Name = "Seizure"
  3263. pchar.Humanoid.PlatformStand = true
  3264. repeat wait()
  3265. pchar.Torso.Velocity = Vector3.new(math.random(-10,10),-5,math.random(-10,10))
  3266. pchar.Torso.RotVelocity = Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  3267. until Seizure.Name == "NotSeizure"
  3268. end
  3269. end)
  3270.  
  3271. addcmd('unseizure','makes player stop having a seizure',{''},
  3272. function(args)
  3273. local players = getPlayer(args[1])
  3274. for i,v in pairs(players)do
  3275. local pchar = gPlayers[v].Character
  3276. if pchar:FindFirstChild("Seizure") then
  3277. pchar.Humanoid.PlatformStand = false
  3278. pchar.Seizure.Name = "NotSeizure"
  3279. wait(0.1)
  3280. pchar.NotSeizure:Destroy()
  3281. end
  3282. end
  3283. end)
  3284.  
  3285. addcmd('cape','gives you a cape',{''},
  3286. function(args)
  3287. if not args[1] then
  3288. args[1] = 1012
  3289. end
  3290. capeColor = args[1]
  3291. Cape(Player)
  3292. end)
  3293.  
  3294. addcmd('uncape','takes cape away from you',{''},
  3295. function(args)
  3296. if char:FindFirstChild("Cape") ~= nil then
  3297. char.Cape:Destroy()
  3298. end
  3299. end)
  3300.  
  3301. addcmd('paper','makes player thin as paper',{''},
  3302. function(args)
  3303. local players = getPlayer(args[1])
  3304. for i,v in pairs(players)do
  3305. local pchar = gPlayers[v].Character
  3306. local LA = DATA.Paper:Clone()
  3307. LA.Parent = pchar["Left Arm"]
  3308. local RA = DATA.Paper:Clone()
  3309. RA.Parent = pchar["Right Arm"]
  3310. local LL = DATA.Paper:Clone()
  3311. LL.Parent = pchar["Left Leg"]
  3312. local RL = DATA.Paper:Clone()
  3313. RL.Parent = pchar["Right Leg"]
  3314. local T = DATA.Paper:Clone()
  3315. T.Parent = pchar.Torso
  3316. local H = DATA.Paper:Clone()
  3317. H.Parent = pchar.Head
  3318. pchar.Head.face:Destroy()
  3319. end
  3320. end)
  3321.  
  3322. addcmd('punish','punishs player',{''},
  3323. function(args)
  3324. local players = getPlayer(args[1])
  3325. for i,v in pairs(players)do
  3326. local pchar = gPlayers[v].Character
  3327. pchar.Parent = game.Lighting
  3328. end
  3329. end)
  3330.  
  3331. addcmd('unpunish','unpunishs player',{''},
  3332. function(args)
  3333. local players = getPlayer(args[1])
  3334. for i,v in pairs(players)do
  3335. if game.Lighting:FindFirstChild("" .. gPlayers[v].Name) then
  3336. game.Lighting:FindFirstChild("" .. gPlayers[v].Name).Parent = game.Workspace
  3337. end
  3338. end
  3339. end)
  3340.  
  3341. addcmd('disco','disco party',{''},
  3342. function(args)
  3343. Disco = true
  3344. if Disco == true then
  3345. repeat wait(0.3)
  3346. game.Lighting.Ambient = Color3.new(math.random(),math.random(),math.random())
  3347. until Disco == false
  3348. end
  3349. end)
  3350.  
  3351. addcmd('undisco','rip disco party',{''},
  3352. function(args)
  3353. Disco = false
  3354. wait(0.1)
  3355. game.Lighting.Ambient = Color3.new(0.5,0.5,0.5)
  3356. end)
  3357.  
  3358. -- Extras --
  3359.  
  3360. Floating = false
  3361.  
  3362. addcmd('float', 'makes player float',{},
  3363. function(args,speaker)
  3364. Floating = true
  3365. local players = getPlayer(args[1])
  3366. for _,v in pairs(players) do
  3367. local pchar = gPlayers[v].Character
  3368. if gPlayers[v] and pchar and not pchar:FindFirstChild("Float") then
  3369. spawn(function()
  3370. local float = DATA.Float:Clone()
  3371. float.Parent = pchar
  3372. float.CFrame = pchar.Torso.CFrame * CFrame.new(0,-3.5,0)
  3373. spawn(function()
  3374. while wait(0.1) do
  3375. if pchar:FindFirstChild("Float") then
  3376. float.CFrame = pchar.Torso.CFrame * CFrame.new(0,-3.5,0)
  3377. else
  3378. break
  3379. end
  3380. end
  3381. end)
  3382. end)
  3383. end
  3384. end
  3385. end)
  3386.  
  3387. addcmd('unfloat','disables floating',{},
  3388. function(args)
  3389. Floating = false
  3390. local players = getPlayer(args[1])
  3391. for i,v in pairs(players)do
  3392. local pchar = gPlayers[v].Character
  3393. if pchar:FindFirstChild("Float") then
  3394. pchar.Float:Destroy()
  3395. end
  3396. end
  3397. end)
  3398.  
  3399. local Clip = true
  3400.  
  3401. addcmd('noclip','enables noclip',{},
  3402. function(args)
  3403. Notify('NoClip Enabled')
  3404. Clip = false
  3405. wait(1)
  3406. Name = game.Players.LocalPlayer.Name
  3407. game:GetService('Players').LocalPlayer.PlayerGui.ChildAdded:connect(function (NC)
  3408. delay(0, function()
  3409. if NC.Name ~= "OuputGUI" then
  3410. NC:Destroy()
  3411. end
  3412. end)
  3413. end)
  3414. game:GetService('RunService').Stepped:connect(function ()
  3415. game.Workspace[Name].Torso.CanCollide = Clip
  3416. game.Workspace[Name].Head.CanCollide = Clip
  3417. end)
  3418. game.Workspace[Name].Torso.Changed:connect(function()
  3419. game.Workspace[Name].Torso.CanCollide = Clip
  3420. game.Workspace[Name].Head.CanCollide = Clip
  3421. end)
  3422. end)
  3423.  
  3424. addcmd('clip','disables noclip',{},
  3425. function(args)
  3426. Notify('NoClip Disabled')
  3427. Clip = true
  3428. end)
  3429.  
  3430. wait(0.1)
  3431.  
  3432. addcmd('prefix','changes prefix',{},
  3433. function(args)
  3434. cmdprefix = args[1]
  3435. Notify('Changed prefix to "' .. args[1] .. '"')
  3436. end)
  3437.  
  3438. addcmd('admins','prints admins',{},
  3439. function(args)
  3440. for i,v in pairs(AdminFolder:GetChildren()) do
  3441. if v:IsA("StringValue") then
  3442. print("-" .. v.Value)
  3443. Notify('Printed Admins, Check Console')
  3444. end
  3445. end
  3446. end)
  3447.  
  3448. addcmd('bans','prints bans',{},
  3449. function(args)
  3450. for i,v in pairs(BanFolder:GetChildren()) do
  3451. if v:IsA("StringValue") then
  3452. print("-" .. v.Value)
  3453. Notify('Printed Bans, Check Console')
  3454. end
  3455. end
  3456. end)
  3457.  
  3458. addcmd('version','shows version',{''},
  3459. function(args)
  3460. Notify("Version is " .. Version)
  3461. end)
  3462.  
  3463. --| Floating |--
  3464.  
  3465. Mouse.KeyDown:connect(function (Key)
  3466. if Key:byte() == 29 then
  3467. if Floating == false then
  3468. execCmd("float me", Player)
  3469. Floating = true
  3470. elseif Floating == true then
  3471. execCmd("unfloat me", Player)
  3472. Floating = false
  3473. end
  3474. end
  3475. end)
  3476.  
  3477. --| Ban Data |--
  3478.  
  3479. for i,v in pairs(BannedPlayers) do
  3480. local ban = Instance.new("StringValue", BanFolder)
  3481. ban.Value = v
  3482. ban.RobloxLocked = true
  3483. end
  3484.  
  3485. spawn(function ()
  3486. while wait(0.1) do
  3487. for _,a in pairs(game.ContextActionService:GetChildren()) do
  3488. if a.Name == "BanList" then
  3489. for _,b in pairs(a:GetChildren()) do
  3490. if b:IsA("StringValue") then
  3491. for _,c in pairs(game.Players:GetChildren()) do
  3492. if c.Name == b.Value then
  3493. c.PersonalServerRank = 200
  3494. wait(0.1)
  3495. c.PersonalServerRank = 0
  3496. end
  3497. end
  3498. end
  3499. end
  3500. end
  3501. end
  3502. end
  3503. end)
  3504.  
  3505. --| Admin |--
  3506.  
  3507. for i,v in pairs(admins) do
  3508. local admin = Instance.new("StringValue", AdminFolder)
  3509. admin.Value = v
  3510. admin.RobloxLocked = true
  3511. end
  3512.  
  3513. spawn(function ()
  3514. while wait(0.1) do
  3515. for _,a in pairs(game.ContextActionService:GetChildren()) do
  3516. if a.Name == "AdminList" then
  3517. for _,b in pairs(a:GetChildren()) do
  3518. if b:IsA("StringValue") then
  3519. for _,c in pairs(game.Players:GetChildren()) do
  3520. if c.Name == b.Value then
  3521. execCmd('admin ' .. c.Name)
  3522. end
  3523. end
  3524. end
  3525. end
  3526. end
  3527. end
  3528. end
  3529. end)
  3530.  
  3531.  
  3532.  
  3533.  
  3534.  
  3535.  
  3536.  
  3537.  
  3538.  
  3539.  
  3540.  
  3541.  
  3542.  
  3543.  
  3544.  
  3545.  
  3546.  
  3547.  
  3548.  
  3549.  
  3550.  
  3551. --| Don't.. Touch.. |--
  3552.  
  3553.  
  3554.  
  3555.  
  3556.  
  3557.  
  3558. --| CMD Bar |--
  3559.  
  3560. CMDbar = Instance.new('ScreenGui', game.CoreGui)
  3561. CMDbar.Name = 'GUI'
  3562. cmdBAR = Instance.new('TextBox', CMDbar)
  3563. cmdBAR.Name = 'CMDbar'
  3564. cmdBAR.Active = true
  3565. cmdBAR.BackgroundColor = BrickColor.new(0,0,0)
  3566. cmdBAR.BackgroundTransparency = 0.5
  3567. cmdBAR.BorderColor = BrickColor.new(0,0,0)
  3568. cmdBAR.BorderSizePixel = 0
  3569. cmdBAR.Position = UDim2.new(0,0,1,-25)
  3570. cmdBAR.Size = UDim2.new(0,200,0,20)
  3571. cmdBAR.Font = 'SourceSans'
  3572. cmdBAR.FontSize = 'Size18'
  3573. cmdBAR.Text = 'Press ; to Execute a Command'
  3574. cmdBAR.TextColor = BrickColor.new(255,255,255)
  3575.  
  3576. --| Data |--
  3577.  
  3578. DATA = Instance.new('Folder', game.ContextActionService)
  3579. DATA.Name = 'Data'
  3580.  
  3581. Paper = Instance.new('BlockMesh', DATA)
  3582. Paper.Name = 'Paper'
  3583. Paper.Scale = Vector3.new(1,1,0.1)
  3584.  
  3585. ayylmao = Instance.new('Hat', DATA)
  3586. ayylmao.Name = 'ayylmao'
  3587. ayyHandle = Instance.new('Part', ayylmao)
  3588. ayyHandle.Name = 'Handle'
  3589. ayyHandle.Size = Vector3.new(2,2.4,2)
  3590. ayyHandle.FormFactor = 'Plate'
  3591. ayyMesh = Instance.new('SpecialMesh', ayyHandle)
  3592. ayyMesh.Scale = Vector3.new(1,1.02,1)
  3593. ayyMesh.MeshType = 'FileMesh'
  3594. ayyMesh.MeshId = 'http://www.roblox.com/asset/?id=13827689'
  3595. ayyMesh.TextureId = 'http://www.roblox.com/asset/?id=13827796'
  3596.  
  3597. Float = Instance.new('Part', DATA)
  3598. Float.Name = 'Float'
  3599. Float.Transparency = 1
  3600. Float.Size = Vector3.new(6,1,6)
  3601. Float.Anchored = true
  3602.  
  3603. cmdGUI = Instance.new('ScreenGui', DATA)
  3604. cmdGUI.Name = 'CMDs'
  3605. cmdMAIN = Instance.new('Frame', cmdGUI)
  3606. cmdMAIN.Name = 'MAIN'
  3607. cmdMAIN.Active = true
  3608. cmdMAIN.BackgroundColor = BrickColor.new(0,0,0)
  3609. cmdMAIN.BackgroundTransparency = 0.5
  3610. cmdMAIN.BorderColor = BrickColor.new(0,0,0)
  3611. cmdMAIN.BorderSizePixel = 0
  3612. cmdMAIN.Position = UDim2.new(0,10,0,350)
  3613. cmdMAIN.Size = UDim2.new(0,170,0,15)
  3614. cmdMAIN.Draggable = true
  3615. cmdCMDs = Instance.new('ScrollingFrame', cmdMAIN)
  3616. cmdCMDs.Name = 'CMDs'
  3617. cmdCMDs.BackgroundColor = BrickColor.new(0,0,0)
  3618. cmdCMDs.BackgroundTransparency = 0.8
  3619. cmdCMDs.BorderColor = BrickColor.new(0,0,0)
  3620. cmdCMDs.BorderSizePixel = 0
  3621. cmdCMDs.Position = UDim2.new(0,0,0,15)
  3622. cmdCMDs.Size = UDim2.new(0,200,0,150)
  3623. cmdCMDs.CanvasSize = UDim2.new(0,0,0,0)
  3624. cmdCMDs.TopImage = 'rbxasset://textures/blackBkg_square.png'
  3625. cmdCMDs.MidImage = 'rbxasset://textures/blackBkg_square.png'
  3626. cmdCMDs.BottomImage = 'rbxasset://textures/blackBkg_square.png'
  3627. cmdCMDs.ScrollBarThickness = 2
  3628. cmdExit = Instance.new('TextButton', cmdMAIN)
  3629. cmdExit.Name = 'Exit'
  3630. cmdExit.BackgroundColor = BrickColor.new(255,0,0)
  3631. cmdExit.BackgroundTransparency = 0.5
  3632. cmdExit.BorderColor = BrickColor.new(255,0,0)
  3633. cmdExit.BorderSizePixel = 0
  3634. cmdExit.Position = UDim2.new(0,185,0,0)
  3635. cmdExit.Size = UDim2.new(0,15,0,15)
  3636. cmdExit.Text = ""
  3637. ExitScript = Instance.new('LocalScript', cmdExit)
  3638. ExitScript.Source =
  3639. [[
  3640. script.Parent.MouseButton1Down:connect(function()
  3641. script.Parent.Parent.Parent:Destroy()
  3642. end)
  3643. ]]
  3644. cmdMin = Instance.new('TextButton', cmdMAIN)
  3645. cmdMin.Name = 'MM'
  3646. cmdMin.BackgroundColor = BrickColor.new(140,140,140)
  3647. cmdMin.BackgroundTransparency = 0.5
  3648. cmdMin.BorderColor = BrickColor.new(140,140,140)
  3649. cmdMin.BorderSizePixel = 0
  3650. cmdMin.Position = UDim2.new(0,170,0,0)
  3651. cmdMin.Size = UDim2.new(0,15,0,15)
  3652. cmdMin.Text = ""
  3653. MinScript = Instance.new('LocalScript', cmdMin)
  3654. MinScript.Source =
  3655. [[
  3656. local CMDs = script.Parent.Parent.CMDs
  3657.  
  3658. script.Parent.MouseButton1Down:connect(function()
  3659. if CMDs.Visible == true then
  3660. CMDs.Visible = false
  3661. elseif CMDs.Visible == false then
  3662. CMDs.Visible = true
  3663. end
  3664. end)
  3665. ]]
  3666. cmdEx = Instance.new('TextLabel', cmdMAIN)
  3667. cmdEx.Name = 'Example'
  3668. cmdEx.BackgroundColor = BrickColor.new(0,0,0)
  3669. cmdEx.BackgroundTransparency = 0.8
  3670. cmdEx.BorderColor = BrickColor.new(0,0,0)
  3671. cmdEx.BorderSizePixel = 0
  3672. cmdEx.Position = UDim2.new(0,5,0,20)
  3673. cmdEx.Size = UDim2.new(0,190,0,20)
  3674. cmdEx.Visible = false
  3675. cmdEx.TextColor = BrickColor.new(255,255,255)
  3676. cmdEx.TextXAlignment = 'Left'
  3677.  
  3678. duckGUI = Instance.new('ScreenGui', DATA)
  3679. duckGUI.Name = 'Duck'
  3680. duckImage = Instance.new('ImageLabel', duckGUI)
  3681. duckImage.BackgroundTransparency = 1
  3682. duckImage.Position = UDim2.new(0,-300,1,-150)
  3683. duckImage.Size = UDim2.new(0,300,0,300)
  3684. duckImage.Rotation = -30
  3685. duckImage.Image = 'rbxassetid://301388647'
  3686. duckScript = Instance.new('LocalScript', duckGUI)
  3687. duckScript.Source =
  3688. [[
  3689. local duck = script.Parent.ImageLabel
  3690.  
  3691. wait(2)
  3692.  
  3693. duck:TweenPosition(UDim2.new(1, 0, 1, -150), "InOut", "Quad", 3, true, nil)
  3694. ]]
  3695.  
  3696. espMAIN = Instance.new('BillboardGui', DATA)
  3697. espMAIN.Name = 'MAIN'
  3698. espMAIN.AlwaysOnTop = true
  3699. espMAIN.ExtentsOffset = Vector3.new(0,1,0)
  3700. espMAIN.Size = UDim2.new(0,5,0,5)
  3701. espMAIN.StudsOffset = Vector3.new(0,1,0)
  3702. espDot = Instance.new('Frame', espMAIN)
  3703. espDot.BackgroundColor = BrickColor.new(42,181,255)
  3704. espDot.BackgroundTransparency = 0.3
  3705. espDot.BorderSizePixel = 0
  3706. espDot.Position = UDim2.new(-0.5,0,-0.5,0)
  3707. espDot.Size = UDim2.new(2,0,2,0)
  3708. espDot.Visible = false
  3709. espDot.ZIndex = 10
  3710. espName = Instance.new('TextLabel', espMAIN)
  3711. espName.Name = 'Name'
  3712. espName.BackgroundColor = BrickColor.new(0,0,0)
  3713. espName.BackgroundTransparency = 1
  3714. espName.BorderColor = BrickColor.new(0,0,0)
  3715. espName.BorderSizePixel = 0
  3716. espName.Position = UDim2.new(0,0,0,-35)
  3717. espName.Size = UDim2.new(1,0,10,0)
  3718. espName.Visible = false
  3719. espName.ZIndex = 10
  3720.  
  3721. notifyMAIN = Instance.new('ScreenGui', DATA)
  3722. notifyMAIN.Name = 'Notification'
  3723. notifyNOT = Instance.new('Frame', notifyMAIN)
  3724. notifyNOT.Name = 'NOTIFY'
  3725. notifyNOT.BackgroundColor = BrickColor.new(0,0,0)
  3726. notifyNOT.BackgroundTransparency = 0.5
  3727. notifyNOT.BorderColor = BrickColor.new(255,255,255)
  3728. notifyNOT.BorderSizePixel = 2
  3729. notifyNOT.Position = UDim2.new(0,-200,0.7,0)
  3730. notifyNOT.Size = UDim2.new(0,200,0,30)
  3731. notifyNOTE = Instance.new('TextLabel', notifyNOT)
  3732. notifyNOTE.Name = 'NOTE'
  3733. notifyNOTE.BackgroundColor = BrickColor.new(255,255,255)
  3734. notifyNOTE.BackgroundTransparency = 1
  3735. notifyNOTE.BorderColor = BrickColor.new(255,255,255)
  3736. notifyNOTE.BorderSizePixel = 0
  3737. notifyNOTE.Size = UDim2.new(1,0,1,0)
  3738. notifyNOTE.ZIndex = 10
  3739. notifyNOTE.FontSize = 'Size18'
  3740. notifyNOTE.Font = 'SourceSans'
  3741. notifyNOTE.Text = 'NOTIFY'
  3742. notifyNOTE.TextColor = BrickColor.new(255,255,255)
  3743. notifyNOTE.TextStrokeColor3 = Color3.new(255,255,255)
  3744. notifyNOTE.TextStrokeTransparency = 0.8
  3745.  
  3746. tpTool = Instance.new('HopperBin', DATA)
  3747. tpTool.Name = 'Teleport'
  3748. tpScript = Instance.new('LocalScript', tpTool)
  3749. tpScript.Source =
  3750. [[
  3751. local Player = game.Players.LocalPlayer
  3752. local Mouse = Player:GetMouse()
  3753.  
  3754. local Tool = script.Parent
  3755.  
  3756. Mouse.Button1Down:connect(function()
  3757. if Mouse.Target and Tool.Active then
  3758. Player.Character.HumanoidRootPart.CFrame = Mouse.Hit + Vector3.new(0,2,0)
  3759. end
  3760. end)
  3761. ]]
  3762.  
  3763. modJAIL = Instance.new('Model', DATA)
  3764. modJAIL.Name = 'JAIL'
  3765. botJAIL = Instance.new('Part', modJAIL)
  3766. botJAIL.Name = 'BOTTOM'
  3767. botJAIL.BrickColor = BrickColor.new('Black')
  3768. botJAIL.Transparency = 0.5
  3769. botJAIL.Position = Vector3.new(-6.2,0.5,-11.6)
  3770. botJAIL.Anchored = true
  3771. botJAIL.Locked = true
  3772. botJAIL.Size = Vector3.new(6,1,6)
  3773. botJAIL.TopSurface = 'Smooth'
  3774. botJAIL.BottomSurface = 'Smooth'
  3775. topJAIL = Instance.new('Part', modJAIL)
  3776. topJAIL.Name = 'BOTTOM'
  3777. topJAIL.BrickColor = BrickColor.new('Black')
  3778. topJAIL.Transparency = 0.5
  3779. topJAIL.Position = Vector3.new(-6.2,7.5,-11.6)
  3780. topJAIL.Anchored = true
  3781. topJAIL.Locked = true
  3782. topJAIL.Size = Vector3.new(6,1,6)
  3783. topJAIL.TopSurface = 'Smooth'
  3784. topJAIL.BottomSurface = 'Smooth'
  3785. p1 = Instance.new('Part', modJAIL)
  3786. p1.Name = 'MAIN'
  3787. p1.BrickColor = BrickColor.new('Black')
  3788. p1.Transparency = 1
  3789. p1.Position = Vector3.new(-8.7,4,-11.6)
  3790. p1.Rotation = Vector3.new(-180,0,-180)
  3791. p1.Anchored = true
  3792. p1.Locked = true
  3793. p1.Size = Vector3.new(1,6,4)
  3794. p1.TopSurface = 'Smooth'
  3795. p1.BottomSurface = 'Smooth'
  3796. p2 = Instance.new('Part', modJAIL)
  3797. p2.BrickColor = BrickColor.new('Black')
  3798. p2.Transparency = 0.5
  3799. p2.Position = Vector3.new(-3.7,4,-14.1)
  3800. p2.Anchored = true
  3801. p2.Locked = true
  3802. p2.Size = Vector3.new(1,6,1)
  3803. p2.TopSurface = 'Smooth'
  3804. p2.BottomSurface = 'Smooth'
  3805. p3 = Instance.new('Part', modJAIL)
  3806. p3.BrickColor = BrickColor.new('Black')
  3807. p3.Transparency = 0.5
  3808. p3.Position = Vector3.new(-8.7,4,-9.1)
  3809. p3.Anchored = true
  3810. p3.Locked = true
  3811. p3.Size = Vector3.new(1,6,1)
  3812. p3.TopSurface = 'Smooth'
  3813. p3.BottomSurface = 'Smooth'
  3814. p4 = Instance.new('Part', modJAIL)
  3815. p4.BrickColor = BrickColor.new('Black')
  3816. p4.Transparency = 0.5
  3817. p4.Position = Vector3.new(-3.7,4,-9.1)
  3818. p4.Anchored = true
  3819. p4.Locked = true
  3820. p4.Size = Vector3.new(1,6,1)
  3821. p4.TopSurface = 'Smooth'
  3822. p4.BottomSurface = 'Smooth'
  3823. p5 = Instance.new('Part', modJAIL)
  3824. p5.BrickColor = BrickColor.new('Black')
  3825. p5.Transparency = 0.5
  3826. p5.Position = Vector3.new(-8.7,4,-14.1)
  3827. p5.Anchored = true
  3828. p5.Locked = true
  3829. p5.Size = Vector3.new(1,6,1)
  3830. p5.TopSurface = 'Smooth'
  3831. p5.BottomSurface = 'Smooth'
  3832. p6 = Instance.new('Part', modJAIL)
  3833. p6.BrickColor = BrickColor.new('Black')
  3834. p6.Transparency = 1
  3835. p6.Position = Vector3.new(-6.2,4,-14.1)
  3836. p6.Rotation = Vector3.new(0,90,0)
  3837. p6.Anchored = true
  3838. p6.Locked = true
  3839. p6.Size = Vector3.new(1,6,4)
  3840. p6.TopSurface = 'Smooth'
  3841. p6.BottomSurface = 'Smooth'
  3842. p7 = Instance.new('Part', modJAIL)
  3843. p7.BrickColor = BrickColor.new('Black')
  3844. p7.Transparency = 1
  3845. p7.Position = Vector3.new(-3.7,4,-11.6)
  3846. p7.Anchored = true
  3847. p7.Locked = true
  3848. p7.Size = Vector3.new(1,6,4)
  3849. p7.TopSurface = 'Smooth'
  3850. p7.BottomSurface = 'Smooth'
  3851. p8 = Instance.new('Part', modJAIL)
  3852. p8.BrickColor = BrickColor.new('Black')
  3853. p8.Transparency = 1
  3854. p8.Position = Vector3.new(-6.2,4,-9.1)
  3855. p8.Rotation = Vector3.new(0,90,0)
  3856. p8.Anchored = true
  3857. p8.Locked = true
  3858. p8.Size = Vector3.new(1,6,4)
  3859. p8.TopSurface = 'Smooth'
  3860. p8.BottomSurface = 'Smooth'
  3861.  
  3862. --| Some Commands |--
  3863.  
  3864. addcmd('ayylmao','ayy lmao',{''},
  3865. function(args)
  3866. local players = getPlayer(args[1])
  3867. for i,v in pairs(players)do
  3868. local pchar = gPlayers[v].Character
  3869. if pchar:FindFirstChild("Shirt") then
  3870. pchar.Shirt:Destroy()
  3871. end
  3872. if pchar:FindFirstChild("Pants") then
  3873. pchar.Pants:Destroy()
  3874. end
  3875. if pchar:FindFirstChild("Shirt Graphic") then
  3876. pchar["Shirt Graphic"].Graphic = ""
  3877. end
  3878. for i,v in pairs(pchar:GetChildren()) do
  3879. if v:IsA("Hat") then
  3880. v:Destroy()
  3881. end
  3882. end
  3883. local ayylmao = DATA.ayylmao:Clone()
  3884. ayylmao.Parent = pchar
  3885. local BC = pchar["Body Colors"]
  3886. BC.HeadColor = BrickColor.new("Fossil")
  3887. BC.LeftArmColor = BrickColor.new("Fossil")
  3888. BC.LeftLegColor = BrickColor.new("Fossil")
  3889. BC.RightArmColor = BrickColor.new("Fossil")
  3890. BC.RightLegColor = BrickColor.new("Fossil")
  3891. BC.TorsoColor = BrickColor.new("Fossil")
  3892. end
  3893. end)
  3894.  
  3895. -- CMDs GUI --
  3896.  
  3897. CMDsFolder = Instance.new("Folder", game.CoreGui)
  3898.  
  3899. for i,v in pairs(CMDs) do
  3900. CMDsValue = Instance.new("StringValue", CMDsFolder)
  3901. CMDsValue.Value = v
  3902. CMDsValue.RobloxLocked = true
  3903. end
  3904.  
  3905. local function commands()
  3906. local cmds = DATA.CMDs:Clone()
  3907. cmds.Parent = Player.PlayerGui
  3908. local CMDsV = CMDsFolder:GetChildren()
  3909. for i = 1, #CMDsV do
  3910. local YSize = 25
  3911. local Position = ((i * YSize) - YSize)
  3912. local newcmd = cmds.MAIN.Example:Clone()
  3913. newcmd.Parent = cmds.MAIN.CMDs
  3914. newcmd.Visible = true
  3915. newcmd.Position = UDim2.new(0,5,0, Position + 5)
  3916. newcmd.Text = "" .. CMDsV[i].Value
  3917. cmds.MAIN.CMDs.CanvasSize = UDim2.new(0,0,0, Position + 30)
  3918. end
  3919. end
  3920.  
  3921. addcmd('cmds','prints cmds',{},
  3922. function(args)
  3923. commands()
  3924. end)
  3925.  
  3926. --| Command Bar |--
  3927.  
  3928. CMDbar.CMDbar.FocusLost:connect(function(enterpressed)
  3929. if enterpressed and CMDbar.CMDbar.Text ~= "" then
  3930. spawn(function ()
  3931. execCmd(CMDbar.CMDbar.Text, Player)
  3932. end)
  3933. end
  3934. CMDbar.CMDbar:TweenPosition(UDim2.new(0, -200, 1, -25), "InOut", "Quad", 0.5, true, nil)
  3935. end)
  3936.  
  3937. Mouse.KeyDown:connect(function(Key)
  3938. if Key:byte() == 59 then
  3939. CMDbar.CMDbar:TweenPosition(UDim2.new(0, 0, 1, -25), "InOut", "Quad", 0.5, true, nil)
  3940. CMDbar.CMDbar:CaptureFocus()
  3941. end
  3942. end)
  3943.  
  3944. --| ESP Function |--
  3945.  
  3946. local ESP = false
  3947. local track = false
  3948.  
  3949. function Create(base, team)
  3950. local MAIN = DATA.MAIN:Clone()
  3951. local F = MAIN.DOT
  3952. local ESP = MAIN.NAME
  3953.  
  3954. MAIN.Parent = Player.PlayerGui
  3955. MAIN.Adornee = base
  3956.  
  3957. F.Visible = true
  3958.  
  3959. ESP.Text = base.Parent.Name:upper()
  3960. ESP.Visible = true
  3961. end
  3962.  
  3963. function Clear()
  3964. for _,v in pairs(Player.PlayerGui:children()) do
  3965. if v.Name == "MAIN" and v:IsA("BillboardGui") then
  3966. v:Destroy()
  3967. end
  3968. end
  3969. end
  3970.  
  3971. function Find()
  3972. Clear()
  3973. track = true
  3974. spawn(function()
  3975. while wait() do
  3976. if track then
  3977. Clear()
  3978. for i,v in pairs(game.Players:players()) do
  3979. if v.Character and v.Character.Head then
  3980. Create(v.Character.Head, true)
  3981. end
  3982. end
  3983. end
  3984. wait(1)
  3985. end
  3986. end)
  3987. end
  3988.  
  3989. --| ESP |--
  3990.  
  3991. Mouse.KeyDown:connect(function(Key)
  3992. if Key:byte() == 30 then
  3993. if ESP == false then
  3994. Find()
  3995. ESP = true
  3996. elseif ESP == true then
  3997. Clear()
  3998. track = false
  3999. ESP = false
  4000. end
  4001. end
  4002. end)
  4003.  
  4004. --| More Functions |--
  4005.  
  4006. local NOTIFY = DATA.Notification
  4007. NOTIFY.Parent = game.CoreGui
  4008.  
  4009. local duck = DATA.Duck:Clone()
  4010. duck.Parent = Player.PlayerGui
  4011.  
  4012. local usingNOTE = false
  4013.  
  4014. function Notify(msg)
  4015. if usingNOTE == false then
  4016. if NOTIFY.NOTIFY and NOTIFY.NOTIFY.NOTE then
  4017. spawn(function()
  4018. NOTIFY.NOTIFY:TweenPosition(UDim2.new(0, 0, 0.7, 0), "InOut", "Quad", 0.5, true, nil)
  4019. NOTIFY.NOTIFY.NOTE.Text = msg
  4020. usingNOTE = true
  4021. wait(2.5)
  4022. NOTIFY.NOTIFY:TweenPosition(UDim2.new(0, -200, 0.7, 0), "InOut", "Quad", 0.5, true, nil)
  4023. usingNOTE = false
  4024. end)
  4025. end
  4026. end
  4027. end
  4028.  
  4029. --| Notifications |--
  4030.  
  4031. wait(1)
  4032.  
  4033. if game.Workspace.FilteringEnabled == true then
  4034. NOTIFY.NOTIFY.BorderColor = BrickColor.new(255,0,0)
  4035. Notify('Filtering is ENABLED.')
  4036. elseif game.Workspace.FilteringEnabled == false then
  4037. NOTIFY.NOTIFY.BorderColor = BrickColor.new(0,255,0)
  4038. Notify('Filtering is Disabled.')
  4039. end
  4040.  
  4041. wait(3.5)
  4042.  
  4043. NOTIFY.NOTIFY.BorderColor = BrickColor.new(255,255,255)
  4044.  
  4045. Notify('Loaded ' .. #cmds .. ' commands!')
  4046.  
  4047. wait(3.5)
  4048.  
  4049. Notify('Welcome ' .. Player.Name .. '!')
  4050.  
  4051. Player.PlayerGui.Duck:Destroy()
  4052.  
  4053. --[[
  4054. addcmd('name','desc',{''},
  4055. function(args)
  4056. local players = getPlayer(args[1])
  4057. for i,v in pairs(players)do
  4058. local pchar = gPlayers[v].Character
  4059. end
  4060. end)
  4061. --]]alocal Run = game:GetService("RunService")
  4062. local CoreGui = game:GetService("CoreGui")
  4063. local Teams = game:GetService("Teams")
  4064. local UserInput = game:GetService("UserInputService")
  4065. local Workspace = game:GetService("Workspace")
  4066. local CoreGui = game:GetService("CoreGui")
  4067. local Players = game:GetService("Players")
  4068.  
  4069. local plr = game.Players.LocalPlayer
  4070. local mouse = plr:GetMouse()
  4071.  
  4072. local secret953 = secret953 or debug.getupvalues
  4073. local secret500 = secret500 or debug.setupvalue
  4074. local getreg = getreg or debug.getregistry
  4075.  
  4076. local cam = workspace.CurrentCamera
  4077. local blur = Instance.new("BlurEffect")
  4078. blur.Size = 40
  4079. blur.Parent = cam
  4080. blur.Enabled = true
  4081.  
  4082. local Rendering = {
  4083. ESP = false,
  4084. }
  4085.  
  4086. local CharacterCheats = {
  4087. SpeedHax = false,
  4088. JumpHax = false,
  4089. GravityHax = false,
  4090. }
  4091.  
  4092. local SpawningSystem = {
  4093. LootDataBase = false,
  4094. VehicleDataBase = false,
  4095. }
  4096.  
  4097. local Teleporting = {
  4098. TeleportTo = false,
  4099. }
  4100.  
  4101. local MapModding = {
  4102. DeleteRoads = false,
  4103. DeleteBuildings = false,
  4104. DeleteTrees = false,
  4105. }
  4106.  
  4107. local Settings = {
  4108. RainbowUII = false,
  4109. PrintPlayers = false,
  4110. }
  4111.  
  4112. local Utility = {
  4113. AmmoPackage = false,
  4114. ShotgunPackage = false,
  4115. SniperPackage = false,
  4116. ScarPackage = false,
  4117. ArmorPackage = false,
  4118. PistolPackage = false,
  4119. }
  4120.  
  4121. function PlayerPrint()
  4122. for i, v in pairs(game.Players:GetChildren()) do
  4123. warn(i,v)
  4124. end
  4125. end
  4126.  
  4127. function CreateSpeed()
  4128. while true do
  4129. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 300
  4130. wait()
  4131. end
  4132.  
  4133. end
  4134. --if you actually scrolling through the code press '=' in game
  4135. mouse.KeyDown:connect(function(key)
  4136. if key:lower() == "=" then
  4137. getrenv().game = nil
  4138. end
  4139. end)
  4140.  
  4141. function CreateJump()
  4142. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  4143. end
  4144.  
  4145. local __namecall = {}
  4146. --[[-Dev Stuff-
  4147. --When you Spawn the Item it falls through the map
  4148. local function s(n)
  4149. local new = game.ReplicatedStorage.Weapons[n]:Clone()
  4150. new.Parent = workspace
  4151. new:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4152. end
  4153. spawner ={"M9"}
  4154.  
  4155. for sp = 1, #spawner do
  4156. s(spawner[sp])
  4157. end
  4158. --]]
  4159.  
  4160. --Don't Edit --
  4161. local SniperKitt
  4162. Ammo = ".338 Magnum"
  4163. Gun = "L115A3"
  4164. local ShotGunKit
  4165. Ammo = "12 Gauge"
  4166. Gun = "Double Barrel"
  4167. local AmmoKitt
  4168. Ammo = ".45 ACP"
  4169. Ammo = "12 Gauge"
  4170. Ammo = "9mm"
  4171. Ammo = "7.62mm NATO"
  4172. Ammo = "6.5mm"
  4173.  
  4174. local ArmorKitt
  4175. Armor = "Tier 1 Vest"
  4176. Armor = "Tier 2 Vest"
  4177. Armor = "Tier 3 Vest"
  4178. Armor = "Sports Helmet"
  4179. Armor = "Skater Helment"
  4180.  
  4181.  
  4182. local PistolKitt
  4183. Ammo = "9mm"
  4184. Ammo = ".45 ACP"
  4185. Ammo = "6.5mm"
  4186. Gun = "CBJ-MS"
  4187. Gun = "M9"
  4188. local ScarHKit
  4189. Ammo = "7.62mm NATO"
  4190. Gun = "Scar-H"
  4191.  
  4192. --SniperKit
  4193. function SpawnSniper()
  4194. for _,v in pairs(workspace.Loot:children()) do
  4195. if v.Name == "L115A3" then
  4196. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4197. end
  4198. end
  4199. end
  4200.  
  4201. function SpawnSniperAmmo()
  4202. for _,v in pairs(workspace.Loot:children()) do
  4203. if v.Name == ".338 Magnum" then
  4204. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4205. end
  4206. end
  4207. end
  4208. --ShotgunKit
  4209. function SpawnShotGun()
  4210. for _,v in pairs(workspace.Loot:children()) do
  4211. if v.Name == "Double Barrel" then
  4212. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4213. end
  4214. end
  4215. end
  4216.  
  4217. function ShotGunAmmo()
  4218. for _,v in pairs(workspace.Loot:children()) do
  4219. if v.Name == "12 Gauge" then
  4220. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4221. end
  4222. end
  4223. end
  4224. --AmmoKit
  4225. function SpawnAmmo()
  4226. for _,v in pairs(workspace.Loot:children()) do
  4227. 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
  4228. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4229. end
  4230. end
  4231. end
  4232. --ArmorKit
  4233. function SpawnArmor()
  4234. for _,v in pairs(workspace.Loot:children()) do
  4235. 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
  4236. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4237. end
  4238. end
  4239. end
  4240.  
  4241. function SpawnBackpack()
  4242. for _,v in pairs(workspace.Loot:children()) do
  4243. if v.Name == "Military Pack" then
  4244. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4245. end
  4246. end
  4247. end
  4248. --Pistol Kit
  4249. function SpawnPistols()
  4250. for _,v in pairs(workspace.Loot:children()) do
  4251. if v.Name == "CBJ-MS" or v.Name == "M9" then
  4252. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4253. end
  4254. end
  4255. end
  4256.  
  4257. function SpawnPistolAmmo()
  4258. for _,v in pairs(workspace.Loot:children()) do
  4259. if v.Name == ".45 ACP" or v.Name == "9mm" or v.Name == "6.5mm" then
  4260. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4261. end
  4262. end
  4263. end
  4264. --Scar-H Kit
  4265. function SpawnScarH()
  4266. for _,v in pairs(workspace.Loot:children()) do
  4267. if v.Name == "Scar-H" then
  4268. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4269. end
  4270. end
  4271. end
  4272.  
  4273. function ScarAmmo()
  4274. for _,v in pairs(workspace.Loot:children()) do
  4275. if v.Name == "7.62mm NATO" then
  4276. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4277. end
  4278. end
  4279. end
  4280.  
  4281.  
  4282.  
  4283.  
  4284. function CreateGravity()
  4285. while true do
  4286. game.Workspace.Gravity = 80
  4287. wait()
  4288. end
  4289. end
  4290.  
  4291. function CreateRainbowUI()--i can't fucking make it smooth aight leave me alone XD
  4292. Label1.BackgroundColor3 = Color3.new(0, 255, 0)
  4293. Label2.BackgroundColor3 = Color3.new(0, 255, 0)
  4294. Label3.BackgroundColor3 = Color3.new(0, 255, 0)
  4295. Label4.BackgroundColor3 = Color3.new(0, 255, 0)
  4296. Label5.BackgroundColor3 = Color3.new(0, 255, 0)
  4297. Label6.BackgroundColor3 = Color3.new(0, 255, 0)
  4298. Label7.BackgroundColor3 = Color3.new(0, 255, 0)
  4299. wait(2)
  4300. Label1.BackgroundColor3 = Color3.new(255, 85, 0)
  4301. Label2.BackgroundColor3 = Color3.new(255, 85, 0)
  4302. Label3.BackgroundColor3 = Color3.new(255, 85, 0)
  4303. Label4.BackgroundColor3 = Color3.new(255, 85, 0)
  4304. Label5.BackgroundColor3 = Color3.new(255, 85, 0)
  4305. Label6.BackgroundColor3 = Color3.new(255, 85, 0)
  4306. Label7.BackgroundColor3 = Color3.new(255, 85, 0)
  4307. wait(2)
  4308. Label1.BackgroundColor3 = Color3.new(255, 0, 0)
  4309. Label2.BackgroundColor3 = Color3.new(255, 0, 0)
  4310. Label3.BackgroundColor3 = Color3.new(255, 0, 0)
  4311. Label4.BackgroundColor3 = Color3.new(255, 0, 0)
  4312. Label5.BackgroundColor3 = Color3.new(255, 0, 0)
  4313. Label6.BackgroundColor3 = Color3.new(255, 0, 0)
  4314. Label7.BackgroundColor3 = Color3.new(255, 0, 0)
  4315. wait(2)
  4316. Label1.BackgroundColor3 = Color3.new(21, 0, 255)
  4317. Label2.BackgroundColor3 = Color3.new(21, 0, 255)
  4318. Label3.BackgroundColor3 = Color3.new(21, 0, 255)
  4319. Label4.BackgroundColor3 = Color3.new(21, 0, 255)
  4320. Label5.BackgroundColor3 = Color3.new(21, 0, 255)
  4321. Label6.BackgroundColor3 = Color3.new(21, 0, 255)
  4322. Label7.BackgroundColor3 = Color3.new(21, 0, 255)
  4323. end
  4324.  
  4325. function CreateEsp()
  4326. local gui = Instance.new("BillboardGui");
  4327. gui.Name = "";
  4328. gui.AlwaysOnTop = true;
  4329. gui.LightInfluence = 0;
  4330. gui.Size = UDim2.new(1.75, 0, 1.75, 0);
  4331. local frame = Instance.new("Frame", gui);
  4332. frame.BackgroundColor3 = Color3.fromRGB(255,0,255);
  4333. frame.Size = UDim2.new(1, 0, 1, 0);
  4334. frame.BorderSizePixel = 4;
  4335. frame.BorderColor3 = Color3.fromRGB(0, 0, 0);
  4336. local gi = gui:Clone();
  4337. local body = frame:Clone();
  4338. body.Parent = gi;
  4339. body.BackgroundColor3 = Color3.fromRGB(0,185,0);
  4340.  
  4341. for _, v in pairs(game:GetService("Players"):GetPlayers()) do
  4342. if v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Character and v.Character:FindFirstChild("Head") then
  4343. gui:Clone().Parent = v.Character.Head;
  4344. end
  4345. end
  4346. end
  4347. function KillTrees()
  4348. game.Workspace.Map.Trees:Destroy()
  4349. end
  4350.  
  4351. function KillBuildings()
  4352. game.Workspace.Map.Buildings:Destroy()
  4353. end
  4354.  
  4355. function KillRoads()
  4356. game.Workspace.Map.Roads:Destroy()
  4357. end
  4358. --Why are you looking, explain your self, its my code ;-; not urs
  4359. function CreateTeleport()
  4360. getplr = function(plxr)
  4361. for i, v in pairs(game.Players:GetPlayers()) do
  4362. if string.find(v.Name, plxr) then
  4363. return v
  4364. elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  4365. return v
  4366. end
  4367. end
  4368. end
  4369. local plr = getplr(PlayerHere.Text)
  4370. game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  4371. end
  4372.  
  4373. function VehicleSpawn()
  4374. for _,v in pairs(workspace.Vehicles:children()) do
  4375. if v.ClassName == "Model" then
  4376. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4377. end
  4378. end
  4379. end
  4380.  
  4381. function LootSpawn()
  4382. for _,v in pairs(workspace.Loot:children()) do
  4383. if v.ClassName == "Model" then
  4384. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  4385. end
  4386. end
  4387. end
  4388.  
  4389. local PrisonMemes = Instance.new("ScreenGui")
  4390. local Main = Instance.new("Frame")
  4391. local RenderFrame = Instance.new("Frame")
  4392. local Label1 = Instance.new("TextLabel")
  4393. local TextLabel = Instance.new("TextLabel")
  4394. local EspToggle = Instance.new("TextButton")
  4395. local CharacterFrame = Instance.new("Frame")
  4396. local Label2 = Instance.new("TextLabel")
  4397. local TextLabel_2 = Instance.new("TextLabel")
  4398. local SpeedXX = Instance.new("TextButton")
  4399. local GravityXX = Instance.new("TextButton")
  4400. local JumpXX = Instance.new("TextButton")
  4401. local TextLabel_3 = Instance.new("TextLabel")
  4402. local TextLabel_4 = Instance.new("TextLabel")
  4403. local SpawningFrame = Instance.new("Frame")
  4404. local Label3 = Instance.new("TextLabel")
  4405. local TextLabel_5 = Instance.new("TextLabel")
  4406. local SpawnLoot = Instance.new("TextButton")
  4407. local SpawnVehicles = Instance.new("TextButton")
  4408. local TextLabel_6 = Instance.new("TextLabel")
  4409. local PlayersFrame = Instance.new("Frame")
  4410. local Label4 = Instance.new("TextLabel")
  4411. local Teleport = Instance.new("TextButton")
  4412. local TextLabel_7 = Instance.new("TextLabel")
  4413. local PlayerHere = Instance.new("TextBox")
  4414. local TextLabel_8 = Instance.new("TextLabel")
  4415. local MapDestructionFrame = Instance.new("Frame")
  4416. local Label5 = Instance.new("TextLabel")
  4417. local TextLabel_9 = Instance.new("TextLabel")
  4418. local DelTrees = Instance.new("TextButton")
  4419. local DelBuildings = Instance.new("TextButton")
  4420. local DelRoads = Instance.new("TextButton")
  4421. local TextLabel_10 = Instance.new("TextLabel")
  4422. local TextLabel_11 = Instance.new("TextLabel")
  4423. local SettingsFrame = Instance.new("Frame")
  4424. local Label6 = Instance.new("TextLabel")
  4425. local TextLabel_12 = Instance.new("TextLabel")
  4426. local RainbowUI = Instance.new("TextButton")
  4427. local WarnPlayers = Instance.new("TextButton")
  4428. local TextLabel_13 = Instance.new("TextLabel")
  4429. local UtilityFrame = Instance.new("Frame")
  4430. local Label7 = Instance.new("TextLabel")
  4431. local TextLabel_14 = Instance.new("TextLabel")
  4432. local SniperKit = Instance.new("TextButton")
  4433. local ArmorKit = Instance.new("TextButton")
  4434. local ScarKit = Instance.new("TextButton")
  4435. local ShotgunKit = Instance.new("TextButton")
  4436. local PistolKit = Instance.new("TextButton")
  4437. local AmmoKit = Instance.new("TextButton")
  4438. local TextLabel_15 = Instance.new("TextLabel")
  4439. local TextLabel_16 = Instance.new("TextLabel")
  4440. local TextLabel_17 = Instance.new("TextLabel")
  4441. local TextLabel_18 = Instance.new("TextLabel")
  4442. local TextLabel_19 = Instance.new("TextLabel")
  4443. local Title = Instance.new("TextLabel")
  4444. local Version = Instance.new("TextLabel")
  4445. local Toggle = Instance.new("TextButton")
  4446.  
  4447. PrisonMemes.Name = "PrisonMemes"
  4448. PrisonMemes.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  4449.  
  4450. Main.Name = "Main"
  4451. Main.Parent = PrisonMemes
  4452. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  4453. Main.BackgroundTransparency = 1
  4454. Main.Position = UDim2.new(0.433124989, 0, 0.516496003, 0)
  4455. Main.Size = UDim2.new(0, 100, 0, 100)
  4456.  
  4457. RenderFrame.Name = "RenderFrame"
  4458. RenderFrame.Parent = Main
  4459. RenderFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4460. RenderFrame.BackgroundTransparency = 0.60000002384186
  4461. RenderFrame.BorderSizePixel = 0
  4462. RenderFrame.Position = UDim2.new(-6.83125019, 0, -4.17084217, 0)
  4463. RenderFrame.Size = UDim2.new(0, 211, 0, 100)
  4464.  
  4465. Label1.Name = "Label1"
  4466. Label1.Parent = RenderFrame
  4467. Label1.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4468. Label1.BorderSizePixel = 0
  4469. Label1.Size = UDim2.new(0, 211, 0, 50)
  4470. Label1.Font = Enum.Font.SourceSans
  4471. Label1.Text = "Render"
  4472. Label1.TextColor3 = Color3.new(0, 1, 1)
  4473. Label1.TextSize = 20
  4474. Label1.TextStrokeTransparency = 0.89999997615814
  4475.  
  4476. TextLabel.Parent = RenderFrame
  4477. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4478. TextLabel.BackgroundTransparency = 1
  4479. TextLabel.Position = UDim2.new(0, 0, 0.493678212, 0)
  4480. TextLabel.Size = UDim2.new(0, 43, 0, 50)
  4481. TextLabel.Font = Enum.Font.SourceSans
  4482. TextLabel.Text = ">"
  4483. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  4484. TextLabel.TextSize = 25
  4485.  
  4486. EspToggle.Name = "EspToggle"
  4487. EspToggle.Parent = RenderFrame
  4488. EspToggle.BackgroundColor3 = Color3.new(1, 1, 1)
  4489. EspToggle.BackgroundTransparency = 1
  4490. EspToggle.Position = UDim2.new(0.20379144, 0, 0.493678182, 0)
  4491. EspToggle.Size = UDim2.new(0, 168, 0, 50)
  4492. EspToggle.Font = Enum.Font.SourceSans
  4493. EspToggle.Text = "Esp: OFF"
  4494. EspToggle.TextColor3 = Color3.new(1, 1, 1)
  4495. EspToggle.TextSize = 20
  4496. EspToggle.TextStrokeColor3 = Color3.new(1, 1, 1)
  4497. EspToggle.TextXAlignment = Enum.TextXAlignment.Left
  4498.  
  4499. CharacterFrame.Name = "CharacterFrame"
  4500. CharacterFrame.Parent = Main
  4501. CharacterFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4502. CharacterFrame.BackgroundTransparency = 0.60000002384186
  4503. CharacterFrame.BorderSizePixel = 0
  4504. CharacterFrame.Position = UDim2.new(-4.54562521, 0, -4.17084169, 0)
  4505. CharacterFrame.Size = UDim2.new(0, 211, 0, 206)
  4506.  
  4507. Label2.Name = "Label2"
  4508. Label2.Parent = CharacterFrame
  4509. Label2.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4510. Label2.BorderSizePixel = 0
  4511. Label2.Size = UDim2.new(0, 211, 0, 50)
  4512. Label2.Font = Enum.Font.SourceSans
  4513. Label2.Text = "Character"
  4514. Label2.TextColor3 = Color3.new(0, 1, 1)
  4515. Label2.TextSize = 20
  4516. Label2.TextStrokeTransparency = 0.89999997615814
  4517.  
  4518. TextLabel_2.Parent = CharacterFrame
  4519. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  4520. TextLabel_2.BackgroundTransparency = 1
  4521. TextLabel_2.Position = UDim2.new(0, 0, 0.240765542, 0)
  4522. TextLabel_2.Size = UDim2.new(0, 43, 0, 50)
  4523. TextLabel_2.Font = Enum.Font.SourceSans
  4524. TextLabel_2.Text = ">"
  4525. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  4526. TextLabel_2.TextSize = 25
  4527.  
  4528. SpeedXX.Name = "SpeedXX"
  4529. SpeedXX.Parent = CharacterFrame
  4530. SpeedXX.BackgroundColor3 = Color3.new(1, 1, 1)
  4531. SpeedXX.BackgroundTransparency = 1
  4532. SpeedXX.Position = UDim2.new(0.203791469, 0, 0.240765542, 0)
  4533. SpeedXX.Size = UDim2.new(0, 168, 0, 50)
  4534. SpeedXX.Font = Enum.Font.SourceSans
  4535. SpeedXX.Text = "Speed Hax"
  4536. SpeedXX.TextColor3 = Color3.new(1, 1, 1)
  4537. SpeedXX.TextSize = 20
  4538. SpeedXX.TextXAlignment = Enum.TextXAlignment.Left
  4539.  
  4540. GravityXX.Name = "GravityXX"
  4541. GravityXX.Parent = CharacterFrame
  4542. GravityXX.BackgroundColor3 = Color3.new(1, 1, 1)
  4543. GravityXX.BackgroundTransparency = 1
  4544. GravityXX.Position = UDim2.new(0.20379144, 0, 0.729131877, 0)
  4545. GravityXX.Size = UDim2.new(0, 168, 0, 50)
  4546. GravityXX.Font = Enum.Font.SourceSans
  4547. GravityXX.Text = "Gravity Hax"
  4548. GravityXX.TextColor3 = Color3.new(1, 1, 1)
  4549. GravityXX.TextSize = 20
  4550. GravityXX.TextXAlignment = Enum.TextXAlignment.Left
  4551.  
  4552. JumpXX.Name = "JumpXX"
  4553. JumpXX.Parent = CharacterFrame
  4554. JumpXX.BackgroundColor3 = Color3.new(1, 1, 1)
  4555. JumpXX.BackgroundTransparency = 1
  4556. JumpXX.Position = UDim2.new(0.203791469, 0, 0.486385405, 0)
  4557. JumpXX.Size = UDim2.new(0, 168, 0, 50)
  4558. JumpXX.Font = Enum.Font.SourceSans
  4559. JumpXX.Text = "Jump Hax"
  4560. JumpXX.TextColor3 = Color3.new(1, 1, 1)
  4561. JumpXX.TextSize = 20
  4562. JumpXX.TextXAlignment = Enum.TextXAlignment.Left
  4563.  
  4564. TextLabel_3.Parent = CharacterFrame
  4565. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  4566. TextLabel_3.BackgroundTransparency = 1
  4567. TextLabel_3.Position = UDim2.new(0, 0, 0.729131818, 0)
  4568. TextLabel_3.Size = UDim2.new(0, 43, 0, 50)
  4569. TextLabel_3.Font = Enum.Font.SourceSans
  4570. TextLabel_3.Text = ">"
  4571. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  4572. TextLabel_3.TextSize = 25
  4573.  
  4574. TextLabel_4.Parent = CharacterFrame
  4575. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  4576. TextLabel_4.BackgroundTransparency = 1
  4577. TextLabel_4.Position = UDim2.new(0, 0, 0.483511865, 0)
  4578. TextLabel_4.Size = UDim2.new(0, 43, 0, 50)
  4579. TextLabel_4.Font = Enum.Font.SourceSans
  4580. TextLabel_4.Text = ">"
  4581. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  4582. TextLabel_4.TextSize = 25
  4583.  
  4584. SpawningFrame.Name = "SpawningFrame"
  4585. SpawningFrame.Parent = Main
  4586. SpawningFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4587. SpawningFrame.BackgroundTransparency = 0.60000002384186
  4588. SpawningFrame.BorderSizePixel = 0
  4589. SpawningFrame.Position = UDim2.new(-2.2662499, 0, -4.17084217, 0)
  4590. SpawningFrame.Size = UDim2.new(0, 211, 0, 156)
  4591.  
  4592. Label3.Name = "Label3"
  4593. Label3.Parent = SpawningFrame
  4594. Label3.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4595. Label3.BorderSizePixel = 0
  4596. Label3.Size = UDim2.new(0, 211, 0, 50)
  4597. Label3.Font = Enum.Font.SourceSans
  4598. Label3.Text = "Spawning"
  4599. Label3.TextColor3 = Color3.new(0, 1, 1)
  4600. Label3.TextSize = 20
  4601. Label3.TextStrokeTransparency = 0.89999997615814
  4602.  
  4603. TextLabel_5.Parent = SpawningFrame
  4604. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  4605. TextLabel_5.BackgroundTransparency = 1
  4606. TextLabel_5.Position = UDim2.new(0, 0, 0.313881516, 0)
  4607. TextLabel_5.Size = UDim2.new(0, 43, 0, 50)
  4608. TextLabel_5.Font = Enum.Font.SourceSans
  4609. TextLabel_5.Text = ">"
  4610. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  4611. TextLabel_5.TextSize = 25
  4612.  
  4613. SpawnLoot.Name = "SpawnLoot"
  4614. SpawnLoot.Parent = SpawningFrame
  4615. SpawnLoot.BackgroundColor3 = Color3.new(1, 1, 1)
  4616. SpawnLoot.BackgroundTransparency = 1
  4617. SpawnLoot.Position = UDim2.new(0.203791469, 0, 0.323165357, 0)
  4618. SpawnLoot.Size = UDim2.new(0, 168, 0, 50)
  4619. SpawnLoot.Font = Enum.Font.SourceSans
  4620. SpawnLoot.Text = "Spawn All Loot"
  4621. SpawnLoot.TextColor3 = Color3.new(1, 1, 1)
  4622. SpawnLoot.TextSize = 20
  4623. SpawnLoot.TextXAlignment = Enum.TextXAlignment.Left
  4624.  
  4625. SpawnVehicles.Name = "SpawnVehicles"
  4626. SpawnVehicles.Parent = SpawningFrame
  4627. SpawnVehicles.BackgroundColor3 = Color3.new(1, 1, 1)
  4628. SpawnVehicles.BackgroundTransparency = 1
  4629. SpawnVehicles.Position = UDim2.new(0.203791469, 0, 0.637046814, 0)
  4630. SpawnVehicles.Size = UDim2.new(0, 168, 0, 50)
  4631. SpawnVehicles.Font = Enum.Font.SourceSans
  4632. SpawnVehicles.Text = "Spawn All Vehicles"
  4633. SpawnVehicles.TextColor3 = Color3.new(1, 1, 1)
  4634. SpawnVehicles.TextSize = 20
  4635. SpawnVehicles.TextXAlignment = Enum.TextXAlignment.Left
  4636.  
  4637. TextLabel_6.Parent = SpawningFrame
  4638. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  4639. TextLabel_6.BackgroundTransparency = 1
  4640. TextLabel_6.Position = UDim2.new(0, 0, 0.643457055, 0)
  4641. TextLabel_6.Size = UDim2.new(0, 43, 0, 50)
  4642. TextLabel_6.Font = Enum.Font.SourceSans
  4643. TextLabel_6.Text = ">"
  4644. TextLabel_6.TextColor3 = Color3.new(1, 1, 1)
  4645. TextLabel_6.TextSize = 25
  4646.  
  4647. PlayersFrame.Name = "PlayersFrame"
  4648. PlayersFrame.Parent = Main
  4649. PlayersFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4650. PlayersFrame.BackgroundTransparency = 0.60000002384186
  4651. PlayersFrame.BorderSizePixel = 0
  4652. PlayersFrame.Position = UDim2.new(2.27312517, 0, -4.17084169, 0)
  4653. PlayersFrame.Size = UDim2.new(0, 211, 0, 180)
  4654.  
  4655. Label4.Name = "Label4"
  4656. Label4.Parent = PlayersFrame
  4657. Label4.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4658. Label4.BorderSizePixel = 0
  4659. Label4.Size = UDim2.new(0, 211, 0, 50)
  4660. Label4.Font = Enum.Font.SourceSans
  4661. Label4.Text = "Players"
  4662. Label4.TextColor3 = Color3.new(0, 1, 1)
  4663. Label4.TextSize = 20
  4664. Label4.TextStrokeTransparency = 0.89999997615814
  4665.  
  4666. Teleport.Name = "Teleport"
  4667. Teleport.Parent = PlayersFrame
  4668. Teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  4669. Teleport.BackgroundTransparency = 1
  4670. Teleport.Position = UDim2.new(0.203791469, 0, 0.626819968, 0)
  4671. Teleport.Size = UDim2.new(0, 125, 0, 50)
  4672. Teleport.Font = Enum.Font.SourceSans
  4673. Teleport.Text = "Teleport To"
  4674. Teleport.TextColor3 = Color3.new(1, 1, 1)
  4675. Teleport.TextSize = 20
  4676.  
  4677. TextLabel_7.Parent = PlayersFrame
  4678. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  4679. TextLabel_7.BackgroundTransparency = 1
  4680. TextLabel_7.Position = UDim2.new(0, 0, 0.626819968, 0)
  4681. TextLabel_7.Size = UDim2.new(0, 43, 0, 50)
  4682. TextLabel_7.Font = Enum.Font.SourceSans
  4683. TextLabel_7.Text = ">"
  4684. TextLabel_7.TextColor3 = Color3.new(1, 1, 1)
  4685. TextLabel_7.TextSize = 25
  4686.  
  4687. PlayerHere.Name = "PlayerHere"
  4688. PlayerHere.Parent = PlayersFrame
  4689. PlayerHere.BackgroundColor3 = Color3.new(0, 0, 0)
  4690. PlayerHere.BackgroundTransparency = 0.89999997615814
  4691. PlayerHere.BorderSizePixel = 0
  4692. PlayerHere.Position = UDim2.new(0.0805687234, 0, 0.322030663, 0)
  4693. PlayerHere.Size = UDim2.new(0, 176, 0, 43)
  4694. PlayerHere.Font = Enum.Font.SourceSans
  4695. PlayerHere.Text = "Player Here"
  4696. PlayerHere.TextColor3 = Color3.new(0, 1, 1)
  4697. PlayerHere.TextSize = 20
  4698.  
  4699. TextLabel_8.Parent = PlayersFrame
  4700. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  4701. TextLabel_8.BackgroundTransparency = 1
  4702. TextLabel_8.Position = UDim2.new(0.79620856, 0, 0.626819968, 0)
  4703. TextLabel_8.Size = UDim2.new(0, 43, 0, 50)
  4704. TextLabel_8.Font = Enum.Font.SourceSans
  4705. TextLabel_8.Text = "<"
  4706. TextLabel_8.TextColor3 = Color3.new(1, 1, 1)
  4707. TextLabel_8.TextSize = 25
  4708.  
  4709. MapDestructionFrame.Name = "MapDestructionFrame"
  4710. MapDestructionFrame.Parent = Main
  4711. MapDestructionFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4712. MapDestructionFrame.BackgroundTransparency = 0.60000002384186
  4713. MapDestructionFrame.BorderSizePixel = 0
  4714. MapDestructionFrame.Position = UDim2.new(4.50500011, 0, -4.17084169, 0)
  4715. MapDestructionFrame.Size = UDim2.new(0, 211, 0, 206)
  4716.  
  4717. Label5.Name = "Label5"
  4718. Label5.Parent = MapDestructionFrame
  4719. Label5.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4720. Label5.BorderSizePixel = 0
  4721. Label5.Size = UDim2.new(0, 211, 0, 50)
  4722. Label5.Font = Enum.Font.SourceSans
  4723. Label5.Text = "Map Destruction(Client)"
  4724. Label5.TextColor3 = Color3.new(0, 1, 1)
  4725. Label5.TextSize = 20
  4726. Label5.TextStrokeTransparency = 0.89999997615814
  4727.  
  4728. TextLabel_9.Parent = MapDestructionFrame
  4729. TextLabel_9.BackgroundColor3 = Color3.new(1, 1, 1)
  4730. TextLabel_9.BackgroundTransparency = 1
  4731. TextLabel_9.Position = UDim2.new(0, 0, 0.240765542, 0)
  4732. TextLabel_9.Size = UDim2.new(0, 43, 0, 50)
  4733. TextLabel_9.Font = Enum.Font.SourceSans
  4734. TextLabel_9.Text = ">"
  4735. TextLabel_9.TextColor3 = Color3.new(1, 1, 1)
  4736. TextLabel_9.TextSize = 25
  4737.  
  4738. DelTrees.Name = "DelTrees"
  4739. DelTrees.Parent = MapDestructionFrame
  4740. DelTrees.BackgroundColor3 = Color3.new(1, 1, 1)
  4741. DelTrees.BackgroundTransparency = 1
  4742. DelTrees.Position = UDim2.new(0.203791469, 0, 0.240158737, 0)
  4743. DelTrees.Size = UDim2.new(0, 168, 0, 50)
  4744. DelTrees.Font = Enum.Font.SourceSans
  4745. DelTrees.Text = "Delete Trees"
  4746. DelTrees.TextColor3 = Color3.new(1, 1, 1)
  4747. DelTrees.TextSize = 20
  4748. DelTrees.TextXAlignment = Enum.TextXAlignment.Left
  4749.  
  4750. DelBuildings.Name = "DelBuildings"
  4751. DelBuildings.Parent = MapDestructionFrame
  4752. DelBuildings.BackgroundColor3 = Color3.new(1, 1, 1)
  4753. DelBuildings.BackgroundTransparency = 1
  4754. DelBuildings.Position = UDim2.new(0.203791469, 0, 0.48641336, 0)
  4755. DelBuildings.Size = UDim2.new(0, 168, 0, 50)
  4756. DelBuildings.Font = Enum.Font.SourceSans
  4757. DelBuildings.Text = "Delete Buildings"
  4758. DelBuildings.TextColor3 = Color3.new(1, 1, 1)
  4759. DelBuildings.TextSize = 20
  4760. DelBuildings.TextXAlignment = Enum.TextXAlignment.Left
  4761.  
  4762. DelRoads.Name = "DelRoads"
  4763. DelRoads.Parent = MapDestructionFrame
  4764. DelRoads.BackgroundColor3 = Color3.new(1, 1, 1)
  4765. DelRoads.BackgroundTransparency = 1
  4766. DelRoads.Position = UDim2.new(0.203791469, 0, 0.728224158, 0)
  4767. DelRoads.Size = UDim2.new(0, 168, 0, 50)
  4768. DelRoads.Font = Enum.Font.SourceSans
  4769. DelRoads.Text = "Delete Roads"
  4770. DelRoads.TextColor3 = Color3.new(1, 1, 1)
  4771. DelRoads.TextSize = 20
  4772. DelRoads.TextXAlignment = Enum.TextXAlignment.Left
  4773.  
  4774. TextLabel_10.Parent = MapDestructionFrame
  4775. TextLabel_10.BackgroundColor3 = Color3.new(1, 1, 1)
  4776. TextLabel_10.BackgroundTransparency = 1
  4777. TextLabel_10.Position = UDim2.new(0, 0, 0.724277437, 0)
  4778. TextLabel_10.Size = UDim2.new(0, 43, 0, 50)
  4779. TextLabel_10.Font = Enum.Font.SourceSans
  4780. TextLabel_10.Text = ">"
  4781. TextLabel_10.TextColor3 = Color3.new(1, 1, 1)
  4782. TextLabel_10.TextSize = 25
  4783.  
  4784. TextLabel_11.Parent = MapDestructionFrame
  4785. TextLabel_11.BackgroundColor3 = Color3.new(1, 1, 1)
  4786. TextLabel_11.BackgroundTransparency = 1
  4787. TextLabel_11.Position = UDim2.new(0, 0, 0.483511865, 0)
  4788. TextLabel_11.Size = UDim2.new(0, 43, 0, 50)
  4789. TextLabel_11.Font = Enum.Font.SourceSans
  4790. TextLabel_11.Text = ">"
  4791. TextLabel_11.TextColor3 = Color3.new(1, 1, 1)
  4792. TextLabel_11.TextSize = 25
  4793.  
  4794. SettingsFrame.Name = "SettingsFrame"
  4795. SettingsFrame.Parent = Main
  4796. SettingsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4797. SettingsFrame.BackgroundTransparency = 0.60000002384186
  4798. SettingsFrame.BorderSizePixel = 0
  4799. SettingsFrame.Position = UDim2.new(6.71000004, 0, -4.17000008, 0)
  4800. SettingsFrame.Size = UDim2.new(0, 211, 0, 142)
  4801.  
  4802. Label6.Name = "Label6"
  4803. Label6.Parent = SettingsFrame
  4804. Label6.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4805. Label6.BorderSizePixel = 0
  4806. Label6.Size = UDim2.new(0, 211, 0, 50)
  4807. Label6.Font = Enum.Font.SourceSans
  4808. Label6.Text = "Settings"
  4809. Label6.TextColor3 = Color3.new(0, 1, 1)
  4810. Label6.TextSize = 20
  4811. Label6.TextStrokeTransparency = 0.89999997615814
  4812.  
  4813. TextLabel_12.Parent = SettingsFrame
  4814. TextLabel_12.BackgroundColor3 = Color3.new(1, 1, 1)
  4815. TextLabel_12.BackgroundTransparency = 1
  4816. TextLabel_12.Position = UDim2.new(0, 0, 0.350120902, 0)
  4817. TextLabel_12.Size = UDim2.new(0, 43, 0, 47)
  4818. TextLabel_12.Font = Enum.Font.SourceSans
  4819. TextLabel_12.Text = ">"
  4820. TextLabel_12.TextColor3 = Color3.new(1, 1, 1)
  4821. TextLabel_12.TextSize = 25
  4822.  
  4823. RainbowUI.Name = "RainbowUI"
  4824. RainbowUI.Parent = SettingsFrame
  4825. RainbowUI.BackgroundColor3 = Color3.new(1, 1, 1)
  4826. RainbowUI.BackgroundTransparency = 1
  4827. RainbowUI.Position = UDim2.new(0.203791469, 0, 0.350120932, 0)
  4828. RainbowUI.Size = UDim2.new(0, 168, 0, 47)
  4829. RainbowUI.Font = Enum.Font.SourceSans
  4830. RainbowUI.Text = "Rainbow UI"
  4831. RainbowUI.TextColor3 = Color3.new(1, 1, 1)
  4832. RainbowUI.TextSize = 20
  4833. RainbowUI.TextXAlignment = Enum.TextXAlignment.Left
  4834.  
  4835. WarnPlayers.Name = "WarnPlayers"
  4836. WarnPlayers.Parent = SettingsFrame
  4837. WarnPlayers.BackgroundColor3 = Color3.new(1, 1, 1)
  4838. WarnPlayers.BackgroundTransparency = 1
  4839. WarnPlayers.Position = UDim2.new(0.203791469, 0, 0.667022347, 0)
  4840. WarnPlayers.Size = UDim2.new(0, 168, 0, 47)
  4841. WarnPlayers.Font = Enum.Font.SourceSans
  4842. WarnPlayers.Text = "Print Players(F9)"
  4843. WarnPlayers.TextColor3 = Color3.new(1, 1, 1)
  4844. WarnPlayers.TextSize = 20
  4845. WarnPlayers.TextXAlignment = Enum.TextXAlignment.Left
  4846.  
  4847. TextLabel_13.Parent = SettingsFrame
  4848. TextLabel_13.BackgroundColor3 = Color3.new(1, 1, 1)
  4849. TextLabel_13.BackgroundTransparency = 1
  4850. TextLabel_13.Position = UDim2.new(0, 0, 0.667022347, 0)
  4851. TextLabel_13.Size = UDim2.new(0, 43, 0, 47)
  4852. TextLabel_13.Font = Enum.Font.SourceSans
  4853. TextLabel_13.Text = ">"
  4854. TextLabel_13.TextColor3 = Color3.new(1, 1, 1)
  4855. TextLabel_13.TextSize = 25
  4856.  
  4857. UtilityFrame.Name = "UtilityFrame"
  4858. UtilityFrame.Parent = Main
  4859. UtilityFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  4860. UtilityFrame.BackgroundTransparency = 0.60000002384186
  4861. UtilityFrame.BorderSizePixel = 0
  4862. UtilityFrame.Position = UDim2.new(0.0399998501, 0, -4.17084122, 0)
  4863. UtilityFrame.Size = UDim2.new(0, 211, 0, 348)
  4864.  
  4865. Label7.Name = "Label7"
  4866. Label7.Parent = UtilityFrame
  4867. Label7.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4868. Label7.BorderSizePixel = 0
  4869. Label7.Size = UDim2.new(0, 211, 0, 50)
  4870. Label7.Font = Enum.Font.SourceSans
  4871. Label7.Text = "Utility Spawning"
  4872. Label7.TextColor3 = Color3.new(0, 1, 1)
  4873. Label7.TextSize = 20
  4874. Label7.TextStrokeTransparency = 0.89999997615814
  4875.  
  4876. TextLabel_14.Parent = UtilityFrame
  4877. TextLabel_14.BackgroundColor3 = Color3.new(1, 1, 1)
  4878. TextLabel_14.BackgroundTransparency = 1
  4879. TextLabel_14.Position = UDim2.new(0, 0, 0.856321812, 0)
  4880. TextLabel_14.Size = UDim2.new(0, 43, 0, 50)
  4881. TextLabel_14.Font = Enum.Font.SourceSans
  4882. TextLabel_14.Text = ">"
  4883. TextLabel_14.TextColor3 = Color3.new(1, 1, 1)
  4884. TextLabel_14.TextSize = 25
  4885.  
  4886. SniperKit.Name = "SniperKit"
  4887. SniperKit.Parent = UtilityFrame
  4888. SniperKit.BackgroundColor3 = Color3.new(1, 1, 1)
  4889. SniperKit.BackgroundTransparency = 1
  4890. SniperKit.Position = UDim2.new(0.203791469, 0, 0.143678159, 0)
  4891. SniperKit.Size = UDim2.new(0, 168, 0, 50)
  4892. SniperKit.Font = Enum.Font.SourceSans
  4893. SniperKit.Text = "Sniper Kit"
  4894. SniperKit.TextColor3 = Color3.new(1, 1, 1)
  4895. SniperKit.TextSize = 20
  4896. SniperKit.TextXAlignment = Enum.TextXAlignment.Left
  4897.  
  4898. ArmorKit.Name = "ArmorKit"
  4899. ArmorKit.Parent = UtilityFrame
  4900. ArmorKit.BackgroundColor3 = Color3.new(1, 1, 1)
  4901. ArmorKit.BackgroundTransparency = 1
  4902. ArmorKit.Position = UDim2.new(0.203791499, 0, 0.568965554, 0)
  4903. ArmorKit.Size = UDim2.new(0, 168, 0, 50)
  4904. ArmorKit.Font = Enum.Font.SourceSans
  4905. ArmorKit.Text = "Armor Kit"
  4906. ArmorKit.TextColor3 = Color3.new(1, 1, 1)
  4907. ArmorKit.TextSize = 20
  4908. ArmorKit.TextXAlignment = Enum.TextXAlignment.Left
  4909.  
  4910. ScarKit.Name = "ScarKit"
  4911. ScarKit.Parent = UtilityFrame
  4912. ScarKit.BackgroundColor3 = Color3.new(1, 1, 1)
  4913. ScarKit.BackgroundTransparency = 1
  4914. ScarKit.Position = UDim2.new(0.203791469, 0, 0.428160906, 0)
  4915. ScarKit.Size = UDim2.new(0, 168, 0, 50)
  4916. ScarKit.Font = Enum.Font.SourceSans
  4917. ScarKit.Text = "Scar-H Kit"
  4918. ScarKit.TextColor3 = Color3.new(1, 1, 1)
  4919. ScarKit.TextSize = 20
  4920. ScarKit.TextXAlignment = Enum.TextXAlignment.Left
  4921.  
  4922. ShotgunKit.Name = "ShotgunKit"
  4923. ShotgunKit.Parent = UtilityFrame
  4924. ShotgunKit.BackgroundColor3 = Color3.new(1, 1, 1)
  4925. ShotgunKit.BackgroundTransparency = 1
  4926. ShotgunKit.Position = UDim2.new(0.203791469, 0, 0.284482777, 0)
  4927. ShotgunKit.Size = UDim2.new(0, 168, 0, 50)
  4928. ShotgunKit.Font = Enum.Font.SourceSans
  4929. ShotgunKit.Text = "Shotgun Kit"
  4930. ShotgunKit.TextColor3 = Color3.new(1, 1, 1)
  4931. ShotgunKit.TextSize = 20
  4932. ShotgunKit.TextXAlignment = Enum.TextXAlignment.Left
  4933.  
  4934. PistolKit.Name = "PistolKit"
  4935. PistolKit.Parent = UtilityFrame
  4936. PistolKit.BackgroundColor3 = Color3.new(1, 1, 1)
  4937. PistolKit.BackgroundTransparency = 1
  4938. PistolKit.Position = UDim2.new(0.203791469, 0, 0.715517282, 0)
  4939. PistolKit.Size = UDim2.new(0, 168, 0, 50)
  4940. PistolKit.Font = Enum.Font.SourceSans
  4941. PistolKit.Text = "Pistol Kit"
  4942. PistolKit.TextColor3 = Color3.new(1, 1, 1)
  4943. PistolKit.TextSize = 20
  4944. PistolKit.TextXAlignment = Enum.TextXAlignment.Left
  4945.  
  4946. AmmoKit.Name = "AmmoKit"
  4947. AmmoKit.Parent = UtilityFrame
  4948. AmmoKit.BackgroundColor3 = Color3.new(1, 1, 1)
  4949. AmmoKit.BackgroundTransparency = 1
  4950. AmmoKit.Position = UDim2.new(0.203791469, 0, 0.856321812, 0)
  4951. AmmoKit.Size = UDim2.new(0, 168, 0, 50)
  4952. AmmoKit.Font = Enum.Font.SourceSans
  4953. AmmoKit.Text = "Ammo Kit"
  4954. AmmoKit.TextColor3 = Color3.new(1, 1, 1)
  4955. AmmoKit.TextSize = 20
  4956. AmmoKit.TextXAlignment = Enum.TextXAlignment.Left
  4957.  
  4958. TextLabel_15.Parent = UtilityFrame
  4959. TextLabel_15.BackgroundColor3 = Color3.new(1, 1, 1)
  4960. TextLabel_15.BackgroundTransparency = 1
  4961. TextLabel_15.Position = UDim2.new(0, 0, 0.712643623, 0)
  4962. TextLabel_15.Size = UDim2.new(0, 43, 0, 50)
  4963. TextLabel_15.Font = Enum.Font.SourceSans
  4964. TextLabel_15.Text = ">"
  4965. TextLabel_15.TextColor3 = Color3.new(1, 1, 1)
  4966. TextLabel_15.TextSize = 25
  4967.  
  4968. TextLabel_16.Parent = UtilityFrame
  4969. TextLabel_16.BackgroundColor3 = Color3.new(1, 1, 1)
  4970. TextLabel_16.BackgroundTransparency = 1
  4971. TextLabel_16.Position = UDim2.new(0, 0, 0.571839094, 0)
  4972. TextLabel_16.Size = UDim2.new(0, 43, 0, 50)
  4973. TextLabel_16.Font = Enum.Font.SourceSans
  4974. TextLabel_16.Text = ">"
  4975. TextLabel_16.TextColor3 = Color3.new(1, 1, 1)
  4976. TextLabel_16.TextSize = 25
  4977.  
  4978. TextLabel_17.Parent = UtilityFrame
  4979. TextLabel_17.BackgroundColor3 = Color3.new(1, 1, 1)
  4980. TextLabel_17.BackgroundTransparency = 1
  4981. TextLabel_17.Position = UDim2.new(0, 0, 0.428160906, 0)
  4982. TextLabel_17.Size = UDim2.new(0, 43, 0, 50)
  4983. TextLabel_17.Font = Enum.Font.SourceSans
  4984. TextLabel_17.Text = ">"
  4985. TextLabel_17.TextColor3 = Color3.new(1, 1, 1)
  4986. TextLabel_17.TextSize = 25
  4987.  
  4988. TextLabel_18.Parent = UtilityFrame
  4989. TextLabel_18.BackgroundColor3 = Color3.new(1, 1, 1)
  4990. TextLabel_18.BackgroundTransparency = 1
  4991. TextLabel_18.Position = UDim2.new(0, 0, 0.284482747, 0)
  4992. TextLabel_18.Size = UDim2.new(0, 43, 0, 50)
  4993. TextLabel_18.Font = Enum.Font.SourceSans
  4994. TextLabel_18.Text = ">"
  4995. TextLabel_18.TextColor3 = Color3.new(1, 1, 1)
  4996. TextLabel_18.TextSize = 25
  4997.  
  4998. TextLabel_19.Parent = UtilityFrame
  4999. TextLabel_19.BackgroundColor3 = Color3.new(1, 1, 1)
  5000. TextLabel_19.BackgroundTransparency = 1
  5001. TextLabel_19.Position = UDim2.new(0, 0, 0.143678144, 0)
  5002. TextLabel_19.Size = UDim2.new(0, 43, 0, 50)
  5003. TextLabel_19.Font = Enum.Font.SourceSans
  5004. TextLabel_19.Text = ">"
  5005. TextLabel_19.TextColor3 = Color3.new(1, 1, 1)
  5006. TextLabel_19.TextSize = 25
  5007.  
  5008. Title.Name = "Title"
  5009. Title.Parent = Main
  5010. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  5011. Title.BackgroundTransparency = 1
  5012. Title.Position = UDim2.new(-6.50124979, 0, -4.82610941, 0)
  5013. Title.Size = UDim2.new(0, 246, 0, 93)
  5014. Title.Font = Enum.Font.SourceSans
  5015. Title.Text = "Prison Royale Haxx"
  5016. Title.TextColor3 = Color3.new(0.333333, 1, 0)
  5017. Title.TextSize = 40
  5018.  
  5019. Version.Name = "Version"
  5020. Version.Parent = Main
  5021. Version.BackgroundColor3 = Color3.new(1, 1, 1)
  5022. Version.BackgroundTransparency = 1
  5023. Version.Position = UDim2.new(-3.9837501, 0, -4.43377733, 0)
  5024. Version.Size = UDim2.new(0, 36, 0, 26)
  5025. Version.Font = Enum.Font.SourceSans
  5026. Version.Text = "v1"
  5027. Version.TextColor3 = Color3.new(0.666667, 1, 0)
  5028. Version.TextSize = 20
  5029.  
  5030. Toggle.Name = "Toggle"
  5031. Toggle.Parent = PrisonMemes
  5032. Toggle.BackgroundColor3 = Color3.new(0, 0, 0)
  5033. Toggle.BackgroundTransparency = 0.69999998807907
  5034. Toggle.Position = UDim2.new(0.0181249995, 0, 0.930602968, 0)
  5035. Toggle.Size = UDim2.new(0, 144, 0, 24)
  5036. Toggle.Font = Enum.Font.SourceSans
  5037. Toggle.Text = "Toggle"
  5038. Toggle.TextColor3 = Color3.new(1, 0.666667, 0)
  5039. Toggle.TextSize = 20
  5040.  
  5041. RenderFrame.Active = true
  5042. CharacterFrame.Active = true
  5043. SpawningFrame.Active = true
  5044. PlayersFrame.Active = true
  5045. MapDestructionFrame.Active = true
  5046. SettingsFrame.Active = true
  5047. UtilityFrame.Active = true
  5048.  
  5049. RenderFrame.Draggable = true
  5050. CharacterFrame.Draggable = true
  5051. SpawningFrame.Draggable = true
  5052. PlayersFrame.Draggable = true
  5053. MapDestructionFrame.Draggable = true
  5054. SettingsFrame.Draggable = true
  5055. UtilityFrame.Draggable = true
  5056.  
  5057. Toggle.MouseButton1Click:connect(function()
  5058. if Main.Visible == true
  5059. then
  5060. Main.Visible = false
  5061. blur.Enabled = false
  5062. elseif
  5063. Main.Visible == false
  5064. then
  5065. Main.Visible = true
  5066. blur.Enabled = true
  5067. end
  5068. end)
  5069. ------------------TOGGLES------------------
  5070. --Rendering
  5071. EspToggle.MouseButton1Click:connect(function()
  5072. ESP = true
  5073. EspToggle.Text = "Esp: ON"
  5074. EspToggle.TextColor3 = Color3.new(0,185,0)
  5075. CreateEsp()
  5076. end)
  5077.  
  5078. --Character
  5079. SpeedXX.MouseButton1Click:connect(function()
  5080. SpeedHax = true
  5081. SpeedXX.TextColor3 = Color3.new(0,185,0)
  5082. CreateSpeed()
  5083. end)
  5084.  
  5085. GravityXX.MouseButton1Click:connect(function()
  5086. GravityHax = true
  5087. GravityXX.TextColor3 = Color3.new(0,185,0)
  5088. CreateGravity()
  5089. end)
  5090.  
  5091. JumpXX.MouseButton1Click:connect(function()
  5092. JumpHax = true
  5093. JumpXX.TextColor3 = Color3.new(0,185,0)
  5094. CreateJump()
  5095. end)
  5096.  
  5097. --Spawning
  5098. SpawnVehicles.MouseButton1Click:connect(function()
  5099. VehicleSpawn()
  5100. VehicleDataBase = true
  5101. SpawnVehicles.Text = "SuccessFully Spawned"
  5102. SpawnVehicles.TextColor3 = Color3.new(0,185,0)
  5103. wait(2.0)
  5104. VehicleDataBase = false
  5105. SpawnVehicles.Text = "Spawn All Vehicles"
  5106. SpawnVehicles.TextColor3 = Color3.new(255,255,255)
  5107. end)
  5108.  
  5109. SpawnLoot.MouseButton1Click:connect(function()
  5110. LootSpawn()
  5111. LootDataBase = true
  5112. SpawnLoot.Text = "SuccessFully Spawned"
  5113. SpawnLoot.TextColor3 = Color3.new(0,185,0)
  5114. wait(2.0)
  5115. LootDataBase = false
  5116. SpawnLoot.Text = "Spawn All Loot"
  5117. SpawnLoot.TextColor3 = Color3.new(255,255,255)
  5118. end)
  5119.  
  5120. --Players
  5121. Teleport.MouseButton1Click:connect(function()
  5122. CreateTeleport()
  5123. TeleportTo = true
  5124. Teleport.Text = "SuccessFully Teleported"
  5125. Teleport.TextColor3 = Color3.new(0,185,0)
  5126. wait(1.5)
  5127. TeleportTo = false
  5128. Teleport.Text = "Teleport To"
  5129. Teleport.TextColor3 = Color3.new(255, 255, 255)
  5130. end)
  5131.  
  5132. --MapDestruction
  5133. DelTrees.MouseButton1Click:connect(function()
  5134. KillTrees()
  5135. DeleteTrees = true
  5136. DelTrees.Text = "SuccessFully Deleted"
  5137. DelTrees.TextColor3 = Color3.new(0,185,0)
  5138. end)
  5139.  
  5140. DelRoads.MouseButton1Click:connect(function()
  5141. KillRoads()
  5142. DeleteRoads = true
  5143. DelRoads.Text = "SuccessFully Deleted"
  5144. DelRoads.TextColor3 = Color3.new(0,185,0)
  5145. end)
  5146.  
  5147. DelBuildings.MouseButton1Click:connect(function()
  5148. KillBuildings()
  5149. DeleteBuildings = true
  5150. DelBuildings.Text = "SuccessFully Deleted"
  5151. DelBuildings.TextColor3 = Color3.new(0,185,0)
  5152. end)
  5153.  
  5154. --Settings
  5155. RainbowUI.MouseButton1Click:connect(function()--This Actuallyed probably Doesn't work XD
  5156. CreateRainbowUI()
  5157. RainbowUII = true
  5158. RainbowUI.Text = "Rainbowed"
  5159. DelBuildings.TextColor3 = Color3.new(0,185,0)
  5160. end)
  5161.  
  5162. WarnPlayers.MouseButton1Click:connect(function()
  5163. PlayerPrint()
  5164. PrintPlayers = true
  5165. WarnPlayers.Text = "SuccessFully Printed Players"
  5166. WarnPlayers.TextColor3 = Color3.new(0,185,0)
  5167. wait(2.0)
  5168. PrintPlayers = false
  5169. WarnPlayers.Text = "Print Players(F9)"
  5170. WarnPlayers.TextColor3 = Color3.new(255,255,255)
  5171. end)
  5172.  
  5173. --Utility
  5174. AmmoKit.MouseButton1Click:connect(function()
  5175. SpawnAmmo()
  5176. AmmoPackage = true
  5177. AmmoKit.Text = "SuccessFully Spawned"
  5178. AmmoKit.TextColor3 = Color3.new(0,185,0)
  5179. wait(2.0)
  5180. AmmoPackage = false
  5181. AmmoKit.Text = "Ammo Kit"
  5182. AmmoKit.TextColor3 = Color3.new(255,255,255)
  5183. end)
  5184.  
  5185. ScarKit.MouseButton1Click:connect(function()
  5186. SpawnScarH()
  5187. ScarAmmo()
  5188. ScarPackage = true
  5189. ScarKit.Text = "SuccessFully Spawned"
  5190. ScarKit.TextColor3 = Color3.new(0,185,0)
  5191. wait(2.0)
  5192. ScarPackage = false
  5193. ScarKit.Text = "Scar Kit"
  5194. ScarKit.TextColor3 = Color3.new(255,255,255)
  5195. end)
  5196.  
  5197. ArmorKit.MouseButton1Click:connect(function()
  5198. SpawnArmor()
  5199. SpawnBackpack()
  5200. ArmorPackage = true
  5201. ArmorKit.Text = "SuccessFully Spawned"
  5202. ArmorKit.TextColor3 = Color3.new(0,185,0)
  5203. wait(2.0)
  5204. ArmorPackage = false
  5205. ArmorKit.Text = "Armor Kit"
  5206. ArmorKit.TextColor3 = Color3.new(255,255,255)
  5207. end)
  5208.  
  5209. PistolKit.MouseButton1Click:connect(function()
  5210. SpawnPistols()
  5211. SpawnPistolAmmo()
  5212. PistolPackage = true
  5213. PistolKit.Text = "SuccessFully Spawned"
  5214. PistolKit.TextColor3 = Color3.new(0,185,0)
  5215. wait(2.0)
  5216. PistolPackage = false
  5217. PistolKit.Text = "Pistol Kit"
  5218. PistolKit.TextColor3 = Color3.new(255,255,255)
  5219. end)
  5220.  
  5221. SniperKit.MouseButton1Click:connect(function()
  5222. SpawnSniper()
  5223. SpawnSniperAmmo()
  5224. SniperPackage = true
  5225. SniperKit.Text = "SuccessFully Spawned"
  5226. SniperKit.TextColor3 = Color3.new(0,185,0)
  5227. wait(2.0)
  5228. SniperPackage = false
  5229. SniperKit.Text = "Sniper Kit"
  5230. SniperKit.TextColor3 = Color3.new(255,255,255)
  5231. end)
  5232.  
  5233. ShotgunKit.MouseButton1Click:connect(function()
  5234. SpawnShotGun()
  5235. ShotGunAmmo()
  5236. ShotgunPackage = true
  5237. ShotgunKit.Text = "SuccessFully Spawned"
  5238. ShotgunKit.TextColor3 = Color3.new(0,185,0)
  5239. wait(2.0)
  5240. ShotgunPackage = false
  5241. ShotgunKit.Text = "ShotGun Kit"
  5242. ShotgunKit.TextColor3 = Color3.new(255,255,255)
  5243. end)
  5244. --End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement