Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 71.00 KB | None | 0 0
  1. local Tripp = Instance.new("ScreenGui")
  2. local mainframe = Instance.new("Frame")
  3. local openclose = Instance.new("TextButton")
  4. local dragbarBACKGROUND = Instance.new("TextLabel")
  5. local dragbarRED = Instance.new("TextLabel")
  6. local dragbarWHITE = Instance.new("TextLabel")
  7. local btnserver = Instance.new("TextButton")
  8. local btnvehicles = Instance.new("TextButton")
  9. local btnplayers = Instance.new("TextButton")
  10. local btnspawning = Instance.new("TextButton")
  11. local btnmods = Instance.new("TextButton")
  12. local modframe = Instance.new("Frame")
  13. local spawningframe = Instance.new("Frame")
  14. local playersframe = Instance.new("Frame")
  15. local vehiclesframe = Instance.new("Frame")
  16. local serverframe = Instance.new("Frame")
  17. local introframe = Instance.new("Frame")
  18. local txtcreatorRED = Instance.new("TextLabel")
  19. local txtcreatorWHITE = Instance.new("TextLabel")
  20. local txtcreator = Instance.new("TextLabel")
  21. local modAimbot = Instance.new("TextButton")
  22. local modC4 = Instance.new("TextButton")
  23. local modCorpse = Instance.new("TextButton")
  24. local modESP = Instance.new("TextButton")
  25. local modESP2 = Instance.new("TextButton")
  26. local modFog = Instance.new("TextButton")
  27. local modGod = Instance.new("TextButton")
  28. local modHunger = Instance.new("TextButton")
  29. local modRecoil = Instance.new("TextButton")
  30. local modStamina = Instance.new("TextButton")
  31. local modTeleport = Instance.new("TextButton")
  32. local modNoclip = Instance.new("TextButton")
  33. local scrollingItems = Instance.new("ScrollingFrame")
  34. local btnSpawn = Instance.new("TextButton")
  35. local spawnFalKit = Instance.new("TextButton")
  36. local spawnNavigation = Instance.new("TextButton")
  37. local txtboxSearch = Instance.new("TextBox")
  38. local scrollingPlayers = Instance.new("ScrollingFrame")
  39. local playerKill = Instance.new("TextButton")
  40. local playerKillAll = Instance.new("TextButton")
  41. local playerSpectate = Instance.new("TextButton")
  42. local playerStealAllG = Instance.new("TextButton")
  43. local playerStealAllI = Instance.new("TextButton")
  44. local playerStealGuns = Instance.new("TextButton")
  45. local playerStealItems = Instance.new("TextButton")
  46. local playerTeleport = Instance.new("TextButton")
  47. local labelSelectedPlayers = Instance.new("TextLabel")
  48. local scrollingVehicles = Instance.new("ScrollingFrame")
  49. local txtboxSpeed = Instance.new("TextBox")
  50. local vehicleDestroy = Instance.new("TextButton")
  51. local vehicleDestroyAll = Instance.new("TextButton")
  52. local vehicleESP = Instance.new("TextButton")
  53. local vehicleSetSpeed = Instance.new("TextButton")
  54. local vehicleTeleport = Instance.new("TextButton")
  55. local labelSelectedVehicle = Instance.new("TextLabel")
  56. local Blue = Instance.new("TextButton")
  57. local Green = Instance.new("TextButton")
  58. local Red = Instance.new("TextButton")
  59. local White = Instance.new("TextButton")
  60. local Yellow = Instance.new("TextButton")
  61. local messageSpam = Instance.new("TextButton")
  62. local messageText = Instance.new("TextBox")
  63. local L_2_ = game.Players.LocalPlayer;
  64.  
  65. -- Properties
  66.  
  67. Tripp.Name = "Tripp"
  68. Tripp.Parent = game.CoreGui
  69.  
  70. mainframe.Name = "mainframe"
  71. mainframe.Parent = Tripp
  72. mainframe.BackgroundColor3 = Color3.new(0, 0, 0)
  73. mainframe.BorderColor3 = Color3.new(0.839216, 0, 0)
  74. mainframe.Position = UDim2.new(0.5, -229, 0.5, 650)
  75. mainframe.Size = UDim2.new(0, 457, 0, 292)
  76.  
  77. openclose.Name = "openclose"
  78. openclose.Parent = mainframe
  79. openclose.BackgroundColor3 = Color3.new(1, 1, 1)
  80. openclose.BackgroundTransparency = 1
  81. openclose.Position = UDim2.new(0, 414, 0, 0)
  82. openclose.Size = UDim2.new(0, 43, 0, 20)
  83. openclose.AutoButtonColor = false
  84. openclose.Font = Enum.Font.SourceSans
  85. openclose.FontSize = Enum.FontSize.Size96
  86. openclose.Text = "-"
  87. openclose.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  88. openclose.TextSize = 75
  89.  
  90. modframe.Name = "modframe"
  91. modframe.Parent = mainframe
  92. modframe.BackgroundColor3 = Color3.new(0, 0, 0)
  93. modframe.BackgroundTransparency = 1
  94. modframe.BorderColor3 = Color3.new(0, 0, 0)
  95. modframe.Position = UDim2.new(0.5, -229, 0.5, -107)
  96. modframe.Size = UDim2.new(0, 457, 0, 253)
  97.  
  98. spawningframe.Name = "spawningframe"
  99. spawningframe.Parent = mainframe
  100. spawningframe.BackgroundColor3 = Color3.new(0, 0, 0)
  101. spawningframe.BackgroundTransparency = 1
  102. spawningframe.BorderColor3 = Color3.new(0, 0, 0)
  103. spawningframe.Position = UDim2.new(0.5, -229, 0.5, -107)
  104. spawningframe.Size = UDim2.new(0, 457, 0, 253)
  105. spawningframe.Visible = false
  106.  
  107. playersframe.Name = "playersframe"
  108. playersframe.Parent = mainframe
  109. playersframe.BackgroundColor3 = Color3.new(0, 0, 0)
  110. playersframe.BackgroundTransparency = 1
  111. playersframe.BorderColor3 = Color3.new(0, 0, 0)
  112. playersframe.Position = UDim2.new(0.5, -229, 0.5, -107)
  113. playersframe.Size = UDim2.new(0, 457, 0, 253)
  114. playersframe.Visible = false
  115.  
  116. vehiclesframe.Name = "vehiclesframe"
  117. vehiclesframe.Parent = mainframe
  118. vehiclesframe.BackgroundColor3 = Color3.new(0, 0, 0)
  119. vehiclesframe.BackgroundTransparency = 1
  120. vehiclesframe.BorderColor3 = Color3.new(0, 0, 0)
  121. vehiclesframe.Position = UDim2.new(0.5, -229, 0.5, -107)
  122. vehiclesframe.Size = UDim2.new(0, 457, 0, 253)
  123. vehiclesframe.Visible = false
  124.  
  125. serverframe.Name = "serverframe"
  126. serverframe.Parent = mainframe
  127. serverframe.BackgroundColor3 = Color3.new(0, 0, 0)
  128. serverframe.BackgroundTransparency = 1
  129. serverframe.BorderColor3 = Color3.new(0, 0, 0)
  130. serverframe.Position = UDim2.new(0.5, -229, 0.5, -107)
  131. serverframe.Size = UDim2.new(0, 457, 0, 253)
  132. serverframe.Visible = false
  133.  
  134. btnmods.Name = "btnmods"
  135. btnmods.Parent = mainframe
  136. btnmods.BackgroundColor3 = Color3.new(1, 1, 1)
  137. btnmods.Position = UDim2.new(0, -122, 0, 620)
  138. btnmods.Size = UDim2.new(0, 119, 0, 41)
  139. btnmods.Style = Enum.ButtonStyle.RobloxButton
  140. btnmods.Font = Enum.Font.SourceSans
  141. btnmods.FontSize = Enum.FontSize.Size14
  142. btnmods.Text = "Mods"
  143. btnmods.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  144. btnmods.TextSize = 14
  145.  
  146. dragbarBACKGROUND.Name = "dragbarBACKGROUND"
  147. dragbarBACKGROUND.Parent = mainframe
  148. dragbarBACKGROUND.BackgroundColor3 = Color3.new(0, 0, 0)
  149. dragbarBACKGROUND.BackgroundTransparency = 0.64999997615814
  150. dragbarBACKGROUND.BorderColor3 = Color3.new(0.92549, 0, 0.0117647)
  151. dragbarBACKGROUND.Size = UDim2.new(0, 457, 0, 34)
  152. dragbarBACKGROUND.Font = Enum.Font.SourceSans
  153. dragbarBACKGROUND.FontSize = Enum.FontSize.Size14
  154. dragbarBACKGROUND.Text = ""
  155. dragbarBACKGROUND.TextSize = 14
  156.  
  157. dragbarRED.Name = "dragbarRED"
  158. dragbarRED.Parent = mainframe
  159. dragbarRED.BackgroundColor3 = Color3.new(1, 1, 1)
  160. dragbarRED.BackgroundTransparency = 1
  161. dragbarRED.Size = UDim2.new(0, 457, 0, 19)
  162. dragbarRED.Font = Enum.Font.Antique
  163. dragbarRED.FontSize = Enum.FontSize.Size36
  164. dragbarRED.Text = "Tripp"
  165. dragbarRED.TextColor3 = Color3.new(0.92549, 0, 0.0117647)
  166. dragbarRED.TextSize = 33
  167.  
  168. dragbarWHITE.Name = "dragbarWHITE"
  169. dragbarWHITE.Parent = mainframe
  170. dragbarWHITE.BackgroundColor3 = Color3.new(1, 1, 1)
  171. dragbarWHITE.BackgroundTransparency = 1
  172. dragbarWHITE.Position = UDim2.new(0, 0, 0, 2)
  173. dragbarWHITE.Size = UDim2.new(0, 457, 0, 19)
  174. dragbarWHITE.Font = Enum.Font.Antique
  175. dragbarWHITE.FontSize = Enum.FontSize.Size32
  176. dragbarWHITE.Text = "Tripp"
  177. dragbarWHITE.TextColor3 = Color3.new(0.92549, 0.92549, 0.92549)
  178. dragbarWHITE.TextSize = 31
  179.  
  180. btnspawning.Name = "btnspawning"
  181. btnspawning.Parent = mainframe
  182. btnspawning.BackgroundColor3 = Color3.new(1, 1, 1)
  183. btnspawning.Position = UDim2.new(0, -122, 0, 670)
  184. btnspawning.Size = UDim2.new(0, 119, 0, 41)
  185. btnspawning.Style = Enum.ButtonStyle.RobloxButton
  186. btnspawning.Font = Enum.Font.SourceSans
  187. btnspawning.FontSize = Enum.FontSize.Size14
  188. btnspawning.Text = "Spawning"
  189. btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
  190. btnspawning.TextSize = 14
  191.  
  192. btnplayers.Name = "btnplayers"
  193. btnplayers.Parent = mainframe
  194. btnplayers.BackgroundColor3 = Color3.new(1, 1, 1)
  195. btnplayers.Position = UDim2.new(0, -122, 0, 720)
  196. btnplayers.Size = UDim2.new(0, 119, 0, 41)
  197. btnplayers.Style = Enum.ButtonStyle.RobloxButton
  198. btnplayers.Font = Enum.Font.SourceSans
  199. btnplayers.FontSize = Enum.FontSize.Size14
  200. btnplayers.Text = "Players"
  201. btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
  202. btnplayers.TextSize = 14
  203.  
  204. btnvehicles.Name = "btnvehicles"
  205. btnvehicles.Parent = mainframe
  206. btnvehicles.BackgroundColor3 = Color3.new(1, 1, 1)
  207. btnvehicles.Position = UDim2.new(0, -122, 0, 770)
  208. btnvehicles.Size = UDim2.new(0, 119, 0, 41)
  209. btnvehicles.Style = Enum.ButtonStyle.RobloxButton
  210. btnvehicles.Font = Enum.Font.SourceSans
  211. btnvehicles.FontSize = Enum.FontSize.Size14
  212. btnvehicles.Text = "Vehicles"
  213. btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
  214. btnvehicles.TextSize = 14
  215.  
  216. btnserver.Name = "btnserver"
  217. btnserver.Parent = mainframe
  218. btnserver.BackgroundColor3 = Color3.new(1, 1, 1)
  219. btnserver.Position = UDim2.new(0, -122, 0, 820)
  220. btnserver.Size = UDim2.new(0, 119, 0, 41)
  221. btnserver.Style = Enum.ButtonStyle.RobloxButton
  222. btnserver.Font = Enum.Font.SourceSans
  223. btnserver.FontSize = Enum.FontSize.Size14
  224. btnserver.Text = "Server"
  225. btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
  226. btnserver.TextSize = 14
  227.  
  228. introframe.Name = "introframe"
  229. introframe.Parent = Tripp
  230. introframe.BackgroundColor3 = Color3.new(0, 0, 0)
  231. introframe.BorderColor3 = Color3.new(0.839216, 0, 0)
  232. introframe.Position = UDim2.new(0, 347, 0, 221)
  233. introframe.Size = UDim2.new(0, 0, 0, 0)
  234.  
  235. txtcreatorRED.Name = "txtcreatorRED"
  236. txtcreatorRED.Parent = introframe
  237. txtcreatorRED.BackgroundColor3 = Color3.new(1, 1, 1)
  238. txtcreatorRED.BackgroundTransparency = 1
  239. txtcreatorRED.BorderColor3 = Color3.new(1, 1, 1)
  240. txtcreatorRED.Position = UDim2.new(0, 0, 0, 39)
  241. txtcreatorRED.Size = UDim2.new(0, 189, 0, 50)
  242. txtcreatorRED.Font = Enum.Font.Antique
  243. txtcreatorRED.FontSize = Enum.FontSize.Size96
  244. txtcreatorRED.Text = "Tripp"
  245. txtcreatorRED.TextColor3 = Color3.new(0.92549, 0, 0.0117647)
  246. txtcreatorRED.TextTransparency = 1
  247. txtcreatorRED.TextSize = 100
  248. txtcreatorRED.TextWrapped = true
  249.  
  250. txtcreatorWHITE.Name = "txtcreatorWHITE"
  251. txtcreatorWHITE.Parent = introframe
  252. txtcreatorWHITE.BackgroundColor3 = Color3.new(1, 1, 1)
  253. txtcreatorWHITE.BackgroundTransparency = 1
  254. txtcreatorWHITE.BorderColor3 = Color3.new(1, 1, 1)
  255. txtcreatorWHITE.Position = UDim2.new(0, 0, 0, 39)
  256. txtcreatorWHITE.Size = UDim2.new(0, 189, 0, 50)
  257. txtcreatorWHITE.Font = Enum.Font.Antique
  258. txtcreatorWHITE.FontSize = Enum.FontSize.Size96
  259. txtcreatorWHITE.Text = "Tripp"
  260. txtcreatorWHITE.TextColor3 = Color3.new(0.92549, 0.92549, 0.92549)
  261. txtcreatorWHITE.TextTransparency = 1
  262. txtcreatorWHITE.TextSize = 87
  263. txtcreatorWHITE.TextWrapped = true
  264.  
  265. txtcreator.Name = "txtcreator"
  266. txtcreator.Parent = introframe
  267. txtcreator.BackgroundColor3 = Color3.new(1, 1, 1)
  268. txtcreator.BackgroundTransparency = 1
  269. txtcreator.BorderColor3 = Color3.new(1, 1, 1)
  270. txtcreator.Position = UDim2.new(0, 0, 0, 138)
  271. txtcreator.Size = UDim2.new(0, 189, 0, 22)
  272. txtcreator.Font = Enum.Font.SourceSansItalic
  273. txtcreator.FontSize = Enum.FontSize.Size18
  274. txtcreator.Text = "GUI Made by DeepTrip"
  275. txtcreator.TextColor3 = Color3.new(0.839216, 0, 0)
  276. txtcreator.TextTransparency = 1
  277. txtcreator.TextSize = 17
  278. txtcreator.TextWrapped = true
  279.  
  280. modAimbot.Name = "modAimbot"
  281. modAimbot.Parent = modframe
  282. modAimbot.BackgroundColor3 = Color3.new(1, 1, 1)
  283. modAimbot.BorderColor3 = Color3.new(1, 1, 1)
  284. modAimbot.Position = UDim2.new(0, 178, 0, 68)
  285. modAimbot.Size = UDim2.new(0, 101, 0, 33)
  286. modAimbot.Style = Enum.ButtonStyle.RobloxRoundButton
  287. modAimbot.Font = Enum.Font.SciFi
  288. modAimbot.FontSize = Enum.FontSize.Size14
  289. modAimbot.Text = "Aimbot"
  290. modAimbot.TextColor3 = Color3.new(1, 1, 1)
  291. modAimbot.TextSize = 14
  292.  
  293. modC4.Name = "modC4"
  294. modC4.Parent = modframe
  295. modC4.BackgroundColor3 = Color3.new(1, 1, 1)
  296. modC4.BorderColor3 = Color3.new(1, 1, 1)
  297. modC4.Position = UDim2.new(0, 304, 0, 210)
  298. modC4.Size = UDim2.new(0, 101, 0, 33)
  299. modC4.Style = Enum.ButtonStyle.RobloxRoundButton
  300. modC4.Font = Enum.Font.SciFi
  301. modC4.FontSize = Enum.FontSize.Size14
  302. modC4.Text = "C4 Walk: OFF"
  303. modC4.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  304. modC4.TextSize = 14
  305.  
  306. modCorpse.Name = "modCorpse"
  307. modCorpse.Parent = modframe
  308. modCorpse.BackgroundColor3 = Color3.new(1, 1, 1)
  309. modCorpse.BorderColor3 = Color3.new(1, 1, 1)
  310. modCorpse.Position = UDim2.new(0, 178, 0, 126)
  311. modCorpse.Size = UDim2.new(0, 101, 0, 33)
  312. modCorpse.Style = Enum.ButtonStyle.RobloxRoundButton
  313. modCorpse.Font = Enum.Font.SciFi
  314. modCorpse.FontSize = Enum.FontSize.Size14
  315. modCorpse.Text = "TP Corpse"
  316. modCorpse.TextColor3 = Color3.new(1, 1, 1)
  317. modCorpse.TextSize = 14
  318.  
  319. modESP.Name = "modESP"
  320. modESP.Parent = modframe
  321. modESP.BackgroundColor3 = Color3.new(1, 1, 1)
  322. modESP.BorderColor3 = Color3.new(1, 1, 1)
  323. modESP.Position = UDim2.new(0, 304, 0, 16)
  324. modESP.Size = UDim2.new(0, 101, 0, 33)
  325. modESP.Style = Enum.ButtonStyle.RobloxRoundButton
  326. modESP.Font = Enum.Font.SciFi
  327. modESP.FontSize = Enum.FontSize.Size14
  328. modESP.Text = "ESP"
  329. modESP.TextColor3 = Color3.new(1, 1, 1)
  330. modESP.TextSize = 14
  331.  
  332. modESP2.Name = "modESP2"
  333. modESP2.Parent = modframe
  334. modESP2.BackgroundColor3 = Color3.new(1, 1, 1)
  335. modESP2.BorderColor3 = Color3.new(1, 1, 1)
  336. modESP2.Position = UDim2.new(0, 178, 0, 210)
  337. modESP2.Size = UDim2.new(0, 101, 0, 33)
  338. modESP2.Style = Enum.ButtonStyle.RobloxRoundButton
  339. modESP2.Font = Enum.Font.SciFi
  340. modESP2.FontSize = Enum.FontSize.Size14
  341. modESP2.Text = "Name ESP: OFF"
  342. modESP2.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  343. modESP2.TextSize = 14
  344.  
  345. modFog.Name = "modFog"
  346. modFog.Parent = modframe
  347. modFog.BackgroundColor3 = Color3.new(1, 1, 1)
  348. modFog.BorderColor3 = Color3.new(1, 1, 1)
  349. modFog.Position = UDim2.new(0, 178, 0, 16)
  350. modFog.Size = UDim2.new(0, 101, 0, 33)
  351. modFog.Style = Enum.ButtonStyle.RobloxRoundButton
  352. modFog.Font = Enum.Font.SciFi
  353. modFog.FontSize = Enum.FontSize.Size14
  354. modFog.Text = "Remove Fog"
  355. modFog.TextColor3 = Color3.new(1, 1, 1)
  356. modFog.TextSize = 14
  357.  
  358. modGod.Name = "modGod"
  359. modGod.Parent = modframe
  360. modGod.BackgroundColor3 = Color3.new(1, 1, 1)
  361. modGod.BorderColor3 = Color3.new(1, 1, 1)
  362. modGod.Position = UDim2.new(0, 52, 0, 210)
  363. modGod.Size = UDim2.new(0, 101, 0, 33)
  364. modGod.Style = Enum.ButtonStyle.RobloxRoundButton
  365. modGod.Font = Enum.Font.SciFi
  366. modGod.FontSize = Enum.FontSize.Size14
  367. modGod.Text = "Godmode"
  368. modGod.TextColor3 = Color3.new(0.454902, 0, 0.356863)
  369. modGod.TextSize = 14
  370.  
  371. modHunger.Name = "modHunger"
  372. modHunger.Parent = modframe
  373. modHunger.BackgroundColor3 = Color3.new(1, 1, 1)
  374. modHunger.BorderColor3 = Color3.new(1, 1, 1)
  375. modHunger.Position = UDim2.new(0, 304, 0, 68)
  376. modHunger.Size = UDim2.new(0, 101, 0, 33)
  377. modHunger.Style = Enum.ButtonStyle.RobloxRoundButton
  378. modHunger.Font = Enum.Font.SciFi
  379. modHunger.FontSize = Enum.FontSize.Size14
  380. modHunger.Text = "Hunger/Thirst"
  381. modHunger.TextColor3 = Color3.new(1, 1, 1)
  382. modHunger.TextSize = 14
  383.  
  384. modRecoil.Name = "modRecoil"
  385. modRecoil.Parent = modframe
  386. modRecoil.BackgroundColor3 = Color3.new(1, 1, 1)
  387. modRecoil.BorderColor3 = Color3.new(1, 1, 1)
  388. modRecoil.Position = UDim2.new(0, 52, 0, 68)
  389. modRecoil.Size = UDim2.new(0, 101, 0, 33)
  390. modRecoil.Style = Enum.ButtonStyle.RobloxRoundButton
  391. modRecoil.Font = Enum.Font.SciFi
  392. modRecoil.FontSize = Enum.FontSize.Size14
  393. modRecoil.Text = "No Recoil"
  394. modRecoil.TextColor3 = Color3.new(1, 1, 1)
  395. modRecoil.TextSize = 14
  396.  
  397. modStamina.Name = "modStamina"
  398. modStamina.Parent = modframe
  399. modStamina.BackgroundColor3 = Color3.new(1, 1, 1)
  400. modStamina.BorderColor3 = Color3.new(1, 1, 1)
  401. modStamina.Position = UDim2.new(0, 52, 0, 126)
  402. modStamina.Size = UDim2.new(0, 101, 0, 33)
  403. modStamina.Style = Enum.ButtonStyle.RobloxRoundButton
  404. modStamina.Font = Enum.Font.SciFi
  405. modStamina.FontSize = Enum.FontSize.Size14
  406. modStamina.Text = "Unlim. Stamina"
  407. modStamina.TextColor3 = Color3.new(1, 1, 1)
  408. modStamina.TextSize = 14
  409.  
  410. modTeleport.Name = "modTeleport"
  411. modTeleport.Parent = modframe
  412. modTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  413. modTeleport.BorderColor3 = Color3.new(1, 1, 1)
  414. modTeleport.Position = UDim2.new(0, 53, 0, 16)
  415. modTeleport.Size = UDim2.new(0, 101, 0, 33)
  416. modTeleport.Style = Enum.ButtonStyle.RobloxRoundButton
  417. modTeleport.Font = Enum.Font.SciFi
  418. modTeleport.FontSize = Enum.FontSize.Size14
  419. modTeleport.Text = "'E' Teleport"
  420. modTeleport.TextColor3 = Color3.new(1, 1, 1)
  421. modTeleport.TextSize = 14
  422.  
  423. modNoclip.Name = "modNoclip"
  424. modNoclip.Parent = modframe
  425. modNoclip.BackgroundColor3 = Color3.new(1, 1, 1)
  426. modNoclip.BorderColor3 = Color3.new(1, 1, 1)
  427. modNoclip.Position = UDim2.new(0, 304, 0, 126)
  428. modNoclip.Size = UDim2.new(0, 101, 0, 33)
  429. modNoclip.Style = Enum.ButtonStyle.RobloxRoundButton
  430. modNoclip.Font = Enum.Font.SciFi
  431. modNoclip.FontSize = Enum.FontSize.Size14
  432. modNoclip.Text = "Noclip"
  433. modNoclip.TextColor3 = Color3.new(1, 1, 1)
  434. modNoclip.TextSize = 14
  435.  
  436. scrollingItems.Name = "scrollingItems"
  437. scrollingItems.Parent = spawningframe
  438. scrollingItems.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  439. scrollingItems.BackgroundTransparency = 0.44999998807907
  440. scrollingItems.BorderColor3 = Color3.new(1, 1, 1)
  441. scrollingItems.Position = UDim2.new(0, 23, 0, 55)
  442. scrollingItems.Size = UDim2.new(0, 174, 0, 143)
  443. scrollingItems.Visible = false
  444.  
  445. btnSpawn.Name = "btnSpawn"
  446. btnSpawn.Parent = spawningframe
  447. btnSpawn.BackgroundColor3 = Color3.new(0, 0.486275, 0.054902)
  448. btnSpawn.BackgroundTransparency = 0.44999998807907
  449. btnSpawn.BorderColor3 = Color3.new(1, 1, 1)
  450. btnSpawn.Position = UDim2.new(0, 23, 0, 210)
  451. btnSpawn.Size = UDim2.new(0, 174, 0, 33)
  452. btnSpawn.Font = Enum.Font.SciFi
  453. btnSpawn.FontSize = Enum.FontSize.Size18
  454. btnSpawn.Text = "Spawn"
  455. btnSpawn.TextColor3 = Color3.new(1, 1, 1)
  456. btnSpawn.TextSize = 16
  457.  
  458. spawnFalKit.Name = "spawnFalKit"
  459. spawnFalKit.Parent = spawningframe
  460. spawnFalKit.BackgroundColor3 = Color3.new(1, 1, 1)
  461. spawnFalKit.BorderColor3 = Color3.new(1, 1, 1)
  462. spawnFalKit.Position = UDim2.new(0, 282, 0, 71)
  463. spawnFalKit.Size = UDim2.new(0, 118, 0, 33)
  464. spawnFalKit.Style = Enum.ButtonStyle.RobloxRoundButton
  465. spawnFalKit.Font = Enum.Font.SciFi
  466. spawnFalKit.FontSize = Enum.FontSize.Size14
  467. spawnFalKit.Text = "FAL Kit"
  468. spawnFalKit.TextColor3 = Color3.new(1, 1, 1)
  469. spawnFalKit.TextSize = 14
  470.  
  471. spawnNavigation.Name = "spawnNavigation"
  472. spawnNavigation.Parent = spawningframe
  473. spawnNavigation.BackgroundColor3 = Color3.new(1, 1, 1)
  474. spawnNavigation.BorderColor3 = Color3.new(1, 1, 1)
  475. spawnNavigation.Position = UDim2.new(0, 282, 0, 126)
  476. spawnNavigation.Size = UDim2.new(0, 118, 0, 33)
  477. spawnNavigation.Style = Enum.ButtonStyle.RobloxRoundButton
  478. spawnNavigation.Font = Enum.Font.SciFi
  479. spawnNavigation.FontSize = Enum.FontSize.Size14
  480. spawnNavigation.Text = "Navigation"
  481. spawnNavigation.TextColor3 = Color3.new(1, 1, 1)
  482. spawnNavigation.TextSize = 14
  483.  
  484. txtboxSearch.Name = "txtboxSearch"
  485. txtboxSearch.Parent = spawningframe
  486. txtboxSearch.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.666667)
  487. txtboxSearch.BackgroundTransparency = 0.44999998807907
  488. txtboxSearch.BorderColor3 = Color3.new(1, 1, 1)
  489. txtboxSearch.Position = UDim2.new(0, 23, 0, 15)
  490. txtboxSearch.Size = UDim2.new(0, 174, 0, 26)
  491. txtboxSearch.Font = Enum.Font.SciFi
  492. txtboxSearch.FontSize = Enum.FontSize.Size14
  493. txtboxSearch.Text = "[SEARCH ITEM]"
  494. txtboxSearch.TextColor3 = Color3.new(1, 1, 1)
  495. txtboxSearch.TextSize = 14
  496.  
  497. scrollingPlayers.Name = "scrollingPlayers"
  498. scrollingPlayers.Parent = playersframe
  499. scrollingPlayers.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  500. scrollingPlayers.BackgroundTransparency = 0.44999998807907
  501. scrollingPlayers.BorderColor3 = Color3.new(1, 1, 1)
  502. scrollingPlayers.Position = UDim2.new(0, 93, 0, 123)
  503. scrollingPlayers.Size = UDim2.new(0, 272, 0, 93)
  504.  
  505. playerKill.Name = "playerKill"
  506. playerKill.Parent = playersframe
  507. playerKill.BackgroundColor3 = Color3.new(1, 1, 1)
  508. playerKill.BorderColor3 = Color3.new(1, 1, 1)
  509. playerKill.Position = UDim2.new(0, 38, 0, 67)
  510. playerKill.Size = UDim2.new(0, 80, 0, 24)
  511. playerKill.Style = Enum.ButtonStyle.RobloxRoundButton
  512. playerKill.Font = Enum.Font.SciFi
  513. playerKill.FontSize = Enum.FontSize.Size18
  514. playerKill.Text = "Kill"
  515. playerKill.TextColor3 = Color3.new(0.615686, 0, 0.584314)
  516. playerKill.TextSize = 15
  517.  
  518. playerKillAll.Name = "playerKillAll"
  519. playerKillAll.Parent = playersframe
  520. playerKillAll.BackgroundColor3 = Color3.new(1, 1, 1)
  521. playerKillAll.BorderColor3 = Color3.new(1, 1, 1)
  522. playerKillAll.Position = UDim2.new(0, 22, 0, 15)
  523. playerKillAll.Size = UDim2.new(0, 101, 0, 33)
  524. playerKillAll.Style = Enum.ButtonStyle.RobloxRoundButton
  525. playerKillAll.Font = Enum.Font.SciFi
  526. playerKillAll.FontSize = Enum.FontSize.Size14
  527. playerKillAll.Text = "Kill All"
  528. playerKillAll.TextColor3 = Color3.new(1, 1, 1)
  529. playerKillAll.TextSize = 14
  530.  
  531. playerSpectate.Name = "playerSpectate"
  532. playerSpectate.Parent = playersframe
  533. playerSpectate.BackgroundColor3 = Color3.new(1, 1, 1)
  534. playerSpectate.BorderColor3 = Color3.new(1, 1, 1)
  535. playerSpectate.Position = UDim2.new(0, 139, 0, 221)
  536. playerSpectate.Size = UDim2.new(0, 179, 0, 29)
  537. playerSpectate.Style = Enum.ButtonStyle.RobloxRoundButton
  538. playerSpectate.Font = Enum.Font.SciFi
  539. playerSpectate.FontSize = Enum.FontSize.Size18
  540. playerSpectate.Text = "Spectate: OFF"
  541. playerSpectate.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  542. playerSpectate.TextSize = 15
  543.  
  544. playerStealAllG.Name = "playerStealAllG"
  545. playerStealAllG.Parent = playersframe
  546. playerStealAllG.BackgroundColor3 = Color3.new(1, 1, 1)
  547. playerStealAllG.BorderColor3 = Color3.new(1, 1, 1)
  548. playerStealAllG.Position = UDim2.new(0, 178, 0, 16)
  549. playerStealAllG.Size = UDim2.new(0, 101, 0, 33)
  550. playerStealAllG.Style = Enum.ButtonStyle.RobloxRoundButton
  551. playerStealAllG.Font = Enum.Font.SciFi
  552. playerStealAllG.FontSize = Enum.FontSize.Size14
  553. playerStealAllG.Text = "Steal All Guns"
  554. playerStealAllG.TextColor3 = Color3.new(1, 1, 1)
  555. playerStealAllG.TextSize = 14
  556.  
  557. playerStealAllI.Name = "playerStealAllI"
  558. playerStealAllI.Parent = playersframe
  559. playerStealAllI.BackgroundColor3 = Color3.new(1, 1, 1)
  560. playerStealAllI.BorderColor3 = Color3.new(1, 1, 1)
  561. playerStealAllI.Position = UDim2.new(0, 337, 0, 15)
  562. playerStealAllI.Size = UDim2.new(0, 101, 0, 33)
  563. playerStealAllI.Style = Enum.ButtonStyle.RobloxRoundButton
  564. playerStealAllI.Font = Enum.Font.SciFi
  565. playerStealAllI.FontSize = Enum.FontSize.Size14
  566. playerStealAllI.Text = "Steal All Items"
  567. playerStealAllI.TextColor3 = Color3.new(1, 1, 1)
  568. playerStealAllI.TextSize = 14
  569.  
  570. playerStealGuns.Name = "playerStealGuns"
  571. playerStealGuns.Parent = playersframe
  572. playerStealGuns.BackgroundColor3 = Color3.new(1, 1, 1)
  573. playerStealGuns.BorderColor3 = Color3.new(1, 1, 1)
  574. playerStealGuns.Position = UDim2.new(0, 132, 0, 67)
  575. playerStealGuns.Size = UDim2.new(0, 80, 0, 24)
  576. playerStealGuns.Style = Enum.ButtonStyle.RobloxRoundButton
  577. playerStealGuns.Font = Enum.Font.SciFi
  578. playerStealGuns.FontSize = Enum.FontSize.Size18
  579. playerStealGuns.Text = "Steal Guns"
  580. playerStealGuns.TextColor3 = Color3.new(0.615686, 0, 0.584314)
  581. playerStealGuns.TextSize = 15
  582.  
  583. playerStealItems.Name = "playerStealItems"
  584. playerStealItems.Parent = playersframe
  585. playerStealItems.BackgroundColor3 = Color3.new(1, 1, 1)
  586. playerStealItems.BorderColor3 = Color3.new(1, 1, 1)
  587. playerStealItems.Position = UDim2.new(0, 229, 0, 67)
  588. playerStealItems.Size = UDim2.new(0, 80, 0, 24)
  589. playerStealItems.Style = Enum.ButtonStyle.RobloxRoundButton
  590. playerStealItems.Font = Enum.Font.SciFi
  591. playerStealItems.FontSize = Enum.FontSize.Size18
  592. playerStealItems.Text = "Steal Items"
  593. playerStealItems.TextColor3 = Color3.new(0.615686, 0, 0.584314)
  594. playerStealItems.TextSize = 15
  595.  
  596. playerTeleport.Name = "playerTeleport"
  597. playerTeleport.Parent = playersframe
  598. playerTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  599. playerTeleport.BorderColor3 = Color3.new(1, 1, 1)
  600. playerTeleport.Position = UDim2.new(0, 321, 0, 68)
  601. playerTeleport.Size = UDim2.new(0, 80, 0, 24)
  602. playerTeleport.Style = Enum.ButtonStyle.RobloxRoundButton
  603. playerTeleport.Font = Enum.Font.SciFi
  604. playerTeleport.FontSize = Enum.FontSize.Size18
  605. playerTeleport.Text = "Goto"
  606. playerTeleport.TextColor3 = Color3.new(0.615686, 0, 0.584314)
  607. playerTeleport.TextSize = 15
  608.  
  609. labelSelectedPlayers.Name = "labelSelectedPlayers"
  610. labelSelectedPlayers.Parent = playersframe
  611. labelSelectedPlayers.BackgroundColor3 = Color3.new(1, 1, 1)
  612. labelSelectedPlayers.BackgroundTransparency = 1
  613. labelSelectedPlayers.Position = UDim2.new(0, 93, 0, 100)
  614. labelSelectedPlayers.Size = UDim2.new(0, 270, 0, 22)
  615. labelSelectedPlayers.Font = Enum.Font.SciFi
  616. labelSelectedPlayers.FontSize = Enum.FontSize.Size18
  617. labelSelectedPlayers.Text = "Selected:"
  618. labelSelectedPlayers.TextColor3 = Color3.new(1, 1, 1)
  619. labelSelectedPlayers.TextSize = 15
  620. labelSelectedPlayers.TextStrokeColor3 = Color3.new(1, 1, 1)
  621.  
  622. scrollingVehicles.Name = "scrollingVehicles"
  623. scrollingVehicles.Parent = vehiclesframe
  624. scrollingVehicles.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  625. scrollingVehicles.BackgroundTransparency = 0.44999998807907
  626. scrollingVehicles.BorderColor3 = Color3.new(1, 1, 1)
  627. scrollingVehicles.Position = UDim2.new(0, 119, 0, 126)
  628. scrollingVehicles.Size = UDim2.new(0, 220, 0, 111)
  629.  
  630. txtboxSpeed.Name = "txtboxSpeed"
  631. txtboxSpeed.Parent = vehiclesframe
  632. txtboxSpeed.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.666667)
  633. txtboxSpeed.BackgroundTransparency = 0.44999998807907
  634. txtboxSpeed.BorderColor3 = Color3.new(1, 1, 1)
  635. txtboxSpeed.Position = UDim2.new(0, 354, 0, 126)
  636. txtboxSpeed.Size = UDim2.new(0, 90, 0, 26)
  637. txtboxSpeed.Font = Enum.Font.SciFi
  638. txtboxSpeed.FontSize = Enum.FontSize.Size12
  639. txtboxSpeed.Text = "[SPEED]"
  640. txtboxSpeed.TextColor3 = Color3.new(1, 1, 1)
  641. txtboxSpeed.TextSize = 12
  642.  
  643. vehicleDestroy.Name = "vehicleDestroy"
  644. vehicleDestroy.Parent = vehiclesframe
  645. vehicleDestroy.BackgroundColor3 = Color3.new(1, 1, 1)
  646. vehicleDestroy.BorderColor3 = Color3.new(1, 1, 1)
  647. vehicleDestroy.Position = UDim2.new(0, 117, 0, 75)
  648. vehicleDestroy.Size = UDim2.new(0, 80, 0, 24)
  649. vehicleDestroy.Style = Enum.ButtonStyle.RobloxRoundButton
  650. vehicleDestroy.Font = Enum.Font.SciFi
  651. vehicleDestroy.FontSize = Enum.FontSize.Size18
  652. vehicleDestroy.Text = "Destroy"
  653. vehicleDestroy.TextColor3 = Color3.new(0.615686, 0, 0.584314)
  654. vehicleDestroy.TextSize = 15
  655.  
  656. vehicleDestroyAll.Name = "vehicleDestroyAll"
  657. vehicleDestroyAll.Parent = vehiclesframe
  658. vehicleDestroyAll.BackgroundColor3 = Color3.new(1, 1, 1)
  659. vehicleDestroyAll.BorderColor3 = Color3.new(1, 1, 1)
  660. vehicleDestroyAll.Position = UDim2.new(0, 128, 0, 19)
  661. vehicleDestroyAll.Size = UDim2.new(0, 101, 0, 33)
  662. vehicleDestroyAll.Style = Enum.ButtonStyle.RobloxRoundButton
  663. vehicleDestroyAll.Font = Enum.Font.SciFi
  664. vehicleDestroyAll.FontSize = Enum.FontSize.Size14
  665. vehicleDestroyAll.Text = "Destroy All"
  666. vehicleDestroyAll.TextColor3 = Color3.new(1, 1, 1)
  667. vehicleDestroyAll.TextSize = 14
  668.  
  669. vehicleESP.Name = "vehicleESP"
  670. vehicleESP.Parent = vehiclesframe
  671. vehicleESP.BackgroundColor3 = Color3.new(1, 1, 1)
  672. vehicleESP.BorderColor3 = Color3.new(1, 1, 1)
  673. vehicleESP.Position = UDim2.new(0, 229, 0, 19)
  674. vehicleESP.Size = UDim2.new(0, 101, 0, 33)
  675. vehicleESP.Style = Enum.ButtonStyle.RobloxRoundButton
  676. vehicleESP.Font = Enum.Font.SciFi
  677. vehicleESP.FontSize = Enum.FontSize.Size14
  678. vehicleESP.Text = "Car ESP: OFF"
  679. vehicleESP.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  680. vehicleESP.TextSize = 14
  681.  
  682. vehicleSetSpeed.Name = "vehicleSetSpeed"
  683. vehicleSetSpeed.Parent = vehiclesframe
  684. vehicleSetSpeed.BackgroundColor3 = Color3.new(1, 1, 1)
  685. vehicleSetSpeed.BorderColor3 = Color3.new(1, 1, 1)
  686. vehicleSetSpeed.Position = UDim2.new(0, 349, 0, 165)
  687. vehicleSetSpeed.Size = UDim2.new(0, 100, 0, 29)
  688. vehicleSetSpeed.Style = Enum.ButtonStyle.RobloxRoundButton
  689. vehicleSetSpeed.Font = Enum.Font.SciFi
  690. vehicleSetSpeed.FontSize = Enum.FontSize.Size18
  691. vehicleSetSpeed.Text = "SET"
  692. vehicleSetSpeed.TextColor3 = Color3.new(1, 1, 1)
  693. vehicleSetSpeed.TextSize = 15
  694.  
  695. vehicleTeleport.Name = "vehicleTeleport"
  696. vehicleTeleport.Parent = vehiclesframe
  697. vehicleTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  698. vehicleTeleport.BorderColor3 = Color3.new(1, 1, 1)
  699. vehicleTeleport.Position = UDim2.new(0, 262, 0, 72)
  700. vehicleTeleport.Size = UDim2.new(0, 80, 0, 24)
  701. vehicleTeleport.Style = Enum.ButtonStyle.RobloxRoundButton
  702. vehicleTeleport.Font = Enum.Font.SciFi
  703. vehicleTeleport.FontSize = Enum.FontSize.Size18
  704. vehicleTeleport.Text = "Goto"
  705. vehicleTeleport.TextColor3 = Color3.new(0.615686, 0, 0.584314)
  706. vehicleTeleport.TextSize = 15
  707.  
  708. labelSelectedVehicle.Name = "labelSelectedVehicle"
  709. labelSelectedVehicle.Parent = vehiclesframe
  710. labelSelectedVehicle.BackgroundColor3 = Color3.new(1, 1, 1)
  711. labelSelectedVehicle.BackgroundTransparency = 1
  712. labelSelectedVehicle.Position = UDim2.new(0, 120, 0, 106)
  713. labelSelectedVehicle.Size = UDim2.new(0, 217, 0, 19)
  714. labelSelectedVehicle.Font = Enum.Font.SciFi
  715. labelSelectedVehicle.FontSize = Enum.FontSize.Size18
  716. labelSelectedVehicle.Text = "Selected:"
  717. labelSelectedVehicle.TextColor3 = Color3.new(1, 1, 1)
  718. labelSelectedVehicle.TextSize = 15
  719. labelSelectedVehicle.TextStrokeColor3 = Color3.new(1, 1, 1)
  720.  
  721. Blue.Name = "Blue"
  722. Blue.Parent = serverframe
  723. Blue.BackgroundColor3 = Color3.new(0.101961, 0, 0.623529)
  724. Blue.Position = UDim2.new(0, 267, 0, 80)
  725. Blue.Size = UDim2.new(0, 45, 0, 26)
  726. Blue.Font = Enum.Font.SourceSans
  727. Blue.FontSize = Enum.FontSize.Size14
  728. Blue.Text = ""
  729. Blue.TextSize = 14
  730.  
  731. Green.Name = "Green"
  732. Green.Parent = serverframe
  733. Green.BackgroundColor3 = Color3.new(0, 0.623529, 0.176471)
  734. Green.Position = UDim2.new(0, 206, 0, 80)
  735. Green.Size = UDim2.new(0, 45, 0, 26)
  736. Green.Font = Enum.Font.SourceSans
  737. Green.FontSize = Enum.FontSize.Size14
  738. Green.Text = ""
  739. Green.TextSize = 14
  740.  
  741. Red.Name = "Red"
  742. Red.Parent = serverframe
  743. Red.BackgroundColor3 = Color3.new(0.623529, 0, 0.00784314)
  744. Red.Position = UDim2.new(0, 92, 0, 80)
  745. Red.Size = UDim2.new(0, 45, 0, 26)
  746. Red.Font = Enum.Font.SourceSans
  747. Red.FontSize = Enum.FontSize.Size14
  748. Red.Text = ""
  749. Red.TextSize = 14
  750.  
  751. White.Name = "White"
  752. White.Parent = serverframe
  753. White.BackgroundColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  754. White.Position = UDim2.new(0, 325, 0, 80)
  755. White.Size = UDim2.new(0, 45, 0, 26)
  756. White.Font = Enum.Font.SourceSans
  757. White.FontSize = Enum.FontSize.Size14
  758. White.Text = ""
  759. White.TextSize = 14
  760.  
  761. Yellow.Name = "Yellow"
  762. Yellow.Parent = serverframe
  763. Yellow.BackgroundColor3 = Color3.new(0.839216, 0.882353, 0)
  764. Yellow.Position = UDim2.new(0, 149, 0, 80)
  765. Yellow.Size = UDim2.new(0, 45, 0, 26)
  766. Yellow.Font = Enum.Font.SourceSans
  767. Yellow.FontSize = Enum.FontSize.Size14
  768. Yellow.Text = ""
  769. Yellow.TextSize = 14
  770.  
  771. messageSpam.Name = "messageSpam"
  772. messageSpam.Parent = serverframe
  773. messageSpam.BackgroundColor3 = Color3.new(1, 1, 1)
  774. messageSpam.BorderColor3 = Color3.new(1, 1, 1)
  775. messageSpam.Position = UDim2.new(0, 107, 0, 160)
  776. messageSpam.Size = UDim2.new(0, 242, 0, 54)
  777. messageSpam.Style = Enum.ButtonStyle.RobloxRoundButton
  778. messageSpam.Font = Enum.Font.SciFi
  779. messageSpam.FontSize = Enum.FontSize.Size24
  780. messageSpam.Text = "Chat Spam: OFF"
  781. messageSpam.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  782. messageSpam.TextSize = 19
  783.  
  784. messageText.Name = "messageText"
  785. messageText.Parent = serverframe
  786. messageText.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
  787. messageText.BackgroundTransparency = 0.30000001192093
  788. messageText.BorderColor3 = Color3.new(1, 1, 1)
  789. messageText.Position = UDim2.new(0, 103, 0, 32)
  790. messageText.Size = UDim2.new(0, 252, 0, 34)
  791. messageText.Font = Enum.Font.SciFi
  792. messageText.FontSize = Enum.FontSize.Size24
  793. messageText.Text = "{Tripp v1}"
  794. messageText.TextColor3 = Color3.new(0.854902, 0.854902, 0.854902)
  795. messageText.TextSize = 20
  796.  
  797. local opening = false
  798. local closing = false
  799. local openmem = 1
  800.  
  801. wait(0.1)
  802. introframe:TweenSize(UDim2.new(0, 190, 0, 160), 'Out', 'Bounce', 1, false)
  803. wait(0.8)
  804. for i = 1,0,-.1 do
  805. wait()
  806. txtcreator.TextTransparency = i
  807. txtcreatorRED.TextTransparency = i
  808. txtcreatorWHITE.TextTransparency = i
  809. end
  810. wait(1.8)
  811. for i = 0,1,.1 do
  812. wait()
  813. txtcreator.TextTransparency = i
  814. txtcreatorRED.TextTransparency = i
  815. txtcreatorWHITE.TextTransparency = i
  816. end
  817. introframe:TweenSize(UDim2.new(0,0,0,0), 'Out', 'Quad', 0.5, false)
  818. introframe.Active = false
  819. wait(.5)
  820. introframe.BackgroundTransparency = 1
  821. wait(.2)
  822. introframe:Destroy()
  823. opening = true
  824. mainframe:TweenPosition(UDim2.new(0.5, -229, 0.5, -146), 'Out', 'Elastic', 1, false)
  825.  
  826. wait(.4)
  827. btnmods:TweenPosition(UDim2.new(0, -122, 0, 40), 'Out', 'Elastic', 1, false)
  828. wait()
  829. btnspawning:TweenPosition(UDim2.new(0, -122, 0, 90), 'Out', 'Elastic', 1, false)
  830. wait()
  831. btnplayers:TweenPosition(UDim2.new(0, -122, 0, 140), 'Out', 'Elastic', 1, false)
  832. wait()
  833. btnvehicles:TweenPosition(UDim2.new(0, -122, 0, 190), 'Out', 'Elastic', 1, false)
  834. wait()
  835. btnserver:TweenPosition(UDim2.new(0, -122, 0, 240), 'Out', 'Elastic', 1, false)
  836. opening = false
  837.  
  838. wait(2)
  839. mainframe.Active = true
  840. mainframe.Draggable = true
  841.  
  842. function open()
  843.     btnmods.Visible = true
  844.     btnspawning.Visible = true
  845.     btnplayers.Visible = true
  846.     btnvehicles.Visible = true
  847.     btnserver.Visible = true
  848.  
  849.     opening = true
  850.     openclose.TextSize = 75
  851.     openclose.Text = "-"
  852.     mainframe:TweenSize(UDim2.new(0, 457, 0, 292), 'Out', 'Quad', 0.5, false)
  853.     dragbarBACKGROUND:TweenSize(UDim2.new(0, 457, 0, 34), 'Out', 'Quad', 0.5, false)
  854.     dragbarRED:TweenSize(UDim2.new(0, 457, 0, 19), 'Out', 'Quad', 0.5, false)
  855.     dragbarWHITE:TweenSize(UDim2.new(0, 457, 0, 19), 'Out', 'Quad', 0.5, false)
  856.     openclose:TweenPosition(UDim2.new(0, 414, 0, 0), 'Out', 'Quad', 0.5, false)
  857.    
  858.     btnmods:TweenPosition(UDim2.new(0, -122, 0, 40), 'Out', 'Quad', 0.8, false)
  859.     wait()
  860.     btnspawning:TweenPosition(UDim2.new(0, -122, 0, 90), 'Out', 'Quad', 0.8, false)
  861.     wait()
  862.     btnplayers:TweenPosition(UDim2.new(0, -122, 0, 140), 'Out', 'Quad', 0.8, false)
  863.     wait()
  864.     btnvehicles:TweenPosition(UDim2.new(0, -122, 0, 190), 'Out', 'Quad', 0.8, false)
  865.     wait()
  866.     btnserver:TweenPosition(UDim2.new(0, -122, 0, 240), 'Out', 'Quad', 0.8, false)
  867.     wait()
  868.  
  869.     if openmem == 1 then
  870.         modframe.Visible = true
  871.     elseif openmem == 2 then
  872.         spawningframe.Visible = true
  873.     elseif openmem == 3 then
  874.         playersframe.Visible = true
  875.     elseif openmem == 4 then
  876.         vehiclesframe.Visible = true
  877.     elseif openmem == 5 then
  878.         serverframe.Visible = true
  879.     end
  880.     opening = false
  881. end
  882.  
  883. function close()
  884.     openclose.TextSize = 55
  885.     openclose.Text = "+"
  886.     mainframe:TweenSize(UDim2.new(0, 139, 0, 33), 'Out', 'Quad', 0.5, false)
  887.     dragbarBACKGROUND:TweenSize(UDim2.new(0, 139, 0, 34), 'Out', 'Quad', 0.5, false)
  888.     dragbarRED:TweenSize(UDim2.new(0, 139, 0, 19), 'Out', 'Quad', 0.5, false)
  889.     dragbarWHITE:TweenSize(UDim2.new(0, 139, 0, 19), 'Out', 'Quad', 0.5, false)
  890.     openclose:TweenPosition(UDim2.new(0, 96, 0, 3), 'Out', 'Quad', 0.5, false)
  891.    
  892.     modframe.Visible = false
  893.     spawningframe.Visible = false
  894.     playersframe.Visible = false
  895.     vehiclesframe.Visible = false
  896.     serverframe.Visible = false
  897.    
  898.     btnmods:TweenPosition(UDim2.new(0, -2000, 0, 40), 'Out', 'Quad', 0.8, false)
  899.     wait()
  900.     btnspawning:TweenPosition(UDim2.new(0, -2000, 0, 90), 'Out', 'Quad', 0.8, false)
  901.     wait()
  902.     btnplayers:TweenPosition(UDim2.new(0, -2000, 0, 140), 'Out', 'Quad', 0.8, false)
  903.     wait()
  904.     btnvehicles:TweenPosition(UDim2.new(0, -2000, 0, 190), 'Out', 'Quad', 0.8, false)
  905.     wait()
  906.     btnserver:TweenPosition(UDim2.new(0, -2000, 0, 240), 'Out', 'Quad', 0.8, false)
  907.     wait(1)
  908.     btnmods.Visible = false
  909.     btnspawning.Visible = false
  910.     btnplayers.Visible = false
  911.     btnvehicles.Visible = false
  912.     btnserver.Visible = false
  913.     closing = false
  914. end
  915.  
  916. openclose.MouseButton1Click:connect(function()
  917.     if openclose.Text == "-" and opening ~= true then
  918.         closing = true
  919.         close()
  920.     elseif openclose.Text == "+" and closing ~= true then
  921.         opening = true
  922.         open()
  923.     end
  924. end)
  925.  
  926. btnmods.MouseButton1Click:connect(function()
  927.     openmem = 1
  928.     btnmods.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  929.     btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
  930.     btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
  931.     btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
  932.     btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
  933.     modframe.Visible = true
  934.     spawningframe.Visible = false
  935.     playersframe.Visible = false
  936.     vehiclesframe.Visible = false
  937.     serverframe.Visible = false
  938. end)
  939.  
  940. btnspawning.MouseButton1Click:connect(function()
  941.     openmem = 2
  942.     btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
  943.     btnspawning.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  944.     btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
  945.     btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
  946.     btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
  947.     modframe.Visible = false
  948.     spawningframe.Visible = true
  949.     playersframe.Visible = false
  950.     vehiclesframe.Visible = false
  951.     serverframe.Visible = false
  952. end)
  953.  
  954. btnplayers.MouseButton1Click:connect(function()
  955.     openmem = 3
  956.     btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
  957.     btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
  958.     btnplayers.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  959.     btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
  960.     btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
  961.     modframe.Visible = false
  962.     spawningframe.Visible = false
  963.     playersframe.Visible = true
  964.     vehiclesframe.Visible = false
  965.     serverframe.Visible = false
  966. end)
  967.  
  968. btnvehicles.MouseButton1Click:connect(function()
  969.     openmem = 4
  970.     btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
  971.     btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
  972.     btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
  973.     btnvehicles.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  974.     btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
  975.     modframe.Visible = false
  976.     spawningframe.Visible = false
  977.     playersframe.Visible = false
  978.     vehiclesframe.Visible = true
  979.     serverframe.Visible = false
  980. end)
  981.  
  982. btnserver.MouseButton1Click:connect(function()
  983.     openmem = 5
  984.     btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
  985.     btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
  986.     btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
  987.     btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
  988.     btnserver.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
  989.     modframe.Visible = false
  990.     spawningframe.Visible = false
  991.     playersframe.Visible = false
  992.     vehiclesframe.Visible = false
  993.     serverframe.Visible = true
  994. end)
  995.  
  996. --Maddness Begins
  997. function getNextOpenSlot()
  998.     for L_96_forvar1 = 1, 20 do
  999.         if not L_2_.playerstats.slots["slot"..L_96_forvar1]:FindFirstChild("ObjectID") then
  1000.             return L_96_forvar1
  1001.         end
  1002.     end
  1003. end;
  1004.  
  1005. function getItemID(L_97_arg1)
  1006.     if game.Lighting:FindFirstChild(L_97_arg1) then
  1007.         local L_98_ = game.Lighting:FindFirstChild(L_97_arg1).ObjectID.Value;
  1008.         return L_98_
  1009.     else
  1010.         return nil
  1011.     end
  1012. end;
  1013.  
  1014. function findItemFromPlayer(L_99_arg1)
  1015.     if getItemID(L_99_arg1) then
  1016.         for L_100_forvar1, L_101_forvar2 in pairs(game.Players:GetPlayers()) do
  1017.             for L_102_forvar1 = 1, 20 do
  1018.                 local L_103_ = L_101_forvar2.playerstats.slots["slot"..L_102_forvar1]
  1019.                 if L_103_:FindFirstChild("ObjectID") then
  1020.                     if L_103_.ObjectID.Value == getItemID(L_99_arg1) then
  1021.                         return L_103_
  1022.                     end
  1023.                 end;
  1024.                 local L_104_ = L_2_.playerstats.slots.slotprimary;
  1025.                 local L_105_ = L_2_.playerstats.slots.slotsecondary;
  1026.                 if L_104_:FindFirstChild("ObjectID") and L_104_.ObjectID == getItemID(L_99_arg1) then
  1027.                     return L_104_
  1028.                 elseif L_105_:FindFirstChild("ObjectID") and L_105_.ObjectID == getItemID(L_99_arg1) then
  1029.                     return L_105_
  1030.                 else
  1031.                     return nil
  1032.                 end
  1033.             end
  1034.         end
  1035.     end
  1036. end;
  1037.  
  1038. --Mods
  1039.  
  1040. ItemCodes = {
  1041. ["AK-104"] = 1037, ["WindscreenGlass"] = 184, ["WaterBottle"] = 209, ["Watch"] = 3001, ["VehicleJack"] = 3016,
  1042. ["Vegetables"] = 214, ["VS50"] = 256, ["Uzi"] = 2015, ["Ushanka"] = 7014, ["USP45Ammo"] = 26, ["USP45"] = 2007,
  1043. ["Twinkies"] = 212, ["Tuna"] = 4, ["TrinityBeret"] = 7015, ["TomatoSoup"] = 215, ["TM46"] = 257,
  1044. ["TEC9Ammo32"] = 57, ["TEC9Ammo20"] = 56, ["TEC9Ammo"] = 20, ["TEC-9"] = 2005, ["SurvivalPackTan"] = 4009,
  1045. ["SurvivalPackGrey"] = 4010, ["SurvivalPackGreen"] = 4011, ["SurvivalPackBrown"] = 4012, ["Suppressor9"] = 9007,
  1046. ["Suppressor762"] = 9010, ["Suppressor556"] = 9009, ["Suppressor545"] = 9011, ["Suppressor45"] = 9008,
  1047. ["Spam"] = 6, ["SodaSprite"] = 205, ["SodaRoot"] = 207, ["SodaPepsi"] = 7, ["SodaPepper"] = 9,
  1048. ["SodaMoxie"] = 208, ["SodaDew"] = 202, ["SodaCrush"] = 201, ["SodaCoke"] = 8, ["ShotgunAmmo"] = 18,
  1049. ["Shotgun"] = 1002, ["ShadesGrey"] = 8005, ["ShadesBlack"] = 8001, ["ScrapMetal"] = 183, ["Sabre"] = 3014,
  1050. ["SUSAT"] = 9014, ["STANAGAmmo50"] = 52, ["STANAGAmmo30"] = 51, ["STANAGAmmo100"] = 53, ["SKSAmmo"] = 45,
  1051. ["SKS"] = 1018, ["SCAR-L"] = 1022, ["RoadFlare"] = 251, ["RevolverAmmo"] = 25, ["Revolver"] = 2006,
  1052. ["ReinforcedWheel"] = 189, ["Reflex"] = 9003, ["RedChemlight"] = 3020, ["RedBeret"] = 7013, ["RawMeat"] = 220,
  1053. ["Ranger"] = 7003, ["RamboClothingTop"] = 5003, ["RamboClothingBottom"] = 6003, ["Radio"] = 3018,
  1054. ["RPK"] = 1034, ["Pringles"] = 204, ["PilotGreen"] = 7010, ["PilotBlack"] = 7009, ["Pasta"] = 5,
  1055. ["Painkillers"] = 12, ["PaddedClothingTop"] = 5002, ["PaddedClothingBottom"] = 6002, ["PPSHAmmo"] = 46,
  1056. ["PPSH"] = 1019, ["PP19Ammo64"] = 58, ["SmallCrate"] = 38, ["OmniLight"] = 3015, ["OTs-14"] = 1036,
  1057. ["NagantAmmo"] = 17, ["Mosin-Nagant"] = 1001, ["Model459Ammo14"] = 59, ["Model 459"] = 2013, ["Mk48Ammo"] = 23,
  1058. ["Mk 48"] = 1005, ["Mk 23"] = 2018, ["Mk 17"] = 1031, ["MilitaryPackGrime"] = 4013, ["MilitaryPackGrey"] = 4015,
  1059. ["MilitaryPackGreen"] = 4014, ["MilitaryPackBlack"] = 4016, ["MaverickAmmo"] = 27, ["Maverick"] = 1010,
  1060. ["Material6"] = 36, ["Material5"] = 35, ["Material4"] = 34, ["Material3"] = 33, ["Material2"] = 32,
  1061. ["Material1"] = 31, ["Matches"] = 3005, ["MaskSpecOps"] = 8009, ["MaskPhantom"] = 8013, ["MaskMime"] = 8008,
  1062. ["MaskMercenary"] = 8007, ["MaskHockey"] = 8012, ["Map"] = 3003, ["MakarovAmmo"] = 16, ["Makarov"] = 2003,
  1063. ["MRE"] = 10, ["MP5Ammo"] = 29, ["MP5"] = 1012, ["M9Ammo32"] = 55, ["M9Ammo17"] = 54, ["M9Ammo"] = 19,
  1064. ["M93R"] = 2016, ["M9"] = 2004, ["M870Ammo"] = 28, ["M870"] = 1011, ["M4A1"] = 1004, -- ["M4A1Ammo"] = 22,
  1065. ["M3Ammo30"] = 60, ["M3"] = 1028, ["M249Ammo100"] = 61, ["M249"] = 1024, ["M1911Ammo"] = 15, ["M1911"] = 2002,
  1066. ["M14"] = 1016, ["M1014"] = 1027, ["M14Ammo50"] = 64, ["M14Ammo30"] = 63, ["M14Ammo20"] = 62,
  1067. ["M1 Garand"] = 1006, ["Lemonade"] = 206, ["Laser"] = 9006, ["Kobra"] = 9004, ["Knife"] = 3013,
  1068. ["KethArmorTop"] = 5011, ["KethArmorBottom"] = 6011, ["JerryCanEmpty"] = 186, ["JerryCan"] = 185,
  1069. ["HornRimmed"] = 8006, ["Holo"] = 9002, ["HikingPackWhite"] = 4006, ["HikingPackOrange"] = 4005,
  1070. ["HikingPackBrown"] = 4008, ["HikingPackBlue"] = 4007, ["Hatchet"] = 3011, ["HK417"] = 1033, ["HK21"] = 1032,
  1071. ["GusArmorTop"] = 5010, ["GusArmorBottom"] = 6010, ["Grip"] = 9005, ["GreenChemlight"] = 3021,
  1072. ["GarandAmmo"] = 24, ["GPS"] = 3006, ["G37"] = 2017, ["G36K"] = 1023, ["G3"] = 1030, -- ["G18Ammo"] = 41,
  1073. ["G18"] = 2011, ["FuelTank"] = 182, ["Floodlight"] = 37, ["FlashlightSurvival"] = 3009,
  1074. ["FlashlightOld"] = 3008, ["FlashlightMilitary"] = 3010, ["FlashlightAttachment"] = 9012, ["Firewood"] = 250,
  1075. ["Firefighter"] = 8004, ["FedorovAmmo"] = 44, ["Fedorov"] = 1017, ["Fedora"] = 7004, ["FannyPackWhite"] = 4002,
  1076. ["FannyPackTan"] = 4001, ["FannyPackPurple"] = 4004, ["FannyPackBlue"] = 4003, ["FAL"] = 1029,
  1077. ["Eyepatch"] = 8003, ["Entrencher"] = 3004, ["EngineParts"] = 181, ["EnfieldAmmo"] = 42, ["Enfield"] = 1015,
  1078. ["Detonator"] = 3017, ["Crowbar"] = 3012, ["CowlGreen"] = 7002, ["CowlBlack"] = 7001, ["Cowboy"] = 7012,
  1079. ["CookedMeat"] = 221, ["Compass"] = 3002, ["ClothingTopFalse"] = 5000, ["ClothingBottomFalse"] = 6000,
  1080. ["CivilianClothingTop"] = 5001, ["CivilianClothingBottom"] = 6001, ["ChocolateBar"] = 211, ["ChipsAhoy"] = 213,
  1081. ["ChickenSoup"] = 216, ["CheezIts"] = 203, ["CarWheel"] = 180, ["CamoWoodlandsTop"] = 5007,
  1082. ["CamoWoodlandsBottom"] = 6007, ["CamoUrbanTop"] = 5005, ["CamoUrbanBottom"] = 6005, ["CamoSpecialTop"] = 5009,
  1083. ["CamoSpecialBottom"] = 6009, ["CamoSnowTop"] = 5008, ["CamoSnowBottom"] = 6008, ["CamoJungleTop"] = 5006,
  1084. ["CamoJungleBottom"] = 6006, ["CamoDesertTop"] = 5004, ["CamoDesertBottom"] = 6004, ["CZ75Ammo"] = 40,
  1085. ["CZ75"] = 2010, ["CCO"] = 9001, ["CBJ-MS"] = 2014, ["C4"] = 255, ["BrimmedBrown"] = 7007,
  1086. ["BrimmedBlack"] = 7008, ["Bowler"] = 7005, ["BlueChemlight"] = 3022, ["BloodBag"] = 11, ["Binoculars"] = 3007,
  1087. ["Biker"] = 7006, ["BeefStew"] = 217, ["BeefJerky"] = 210, ["Beans"] = 3, ["Beanie"] = 7011,
  1088. ["BandanaSkull"] = 8014, ["BandanaRenegade"] = 8011, ["BandanaRed"] = 8010, ["BandanaBlack"] = 8002,
  1089. ["BallisticUrban"] = 7018, ["BallisticSpecOps"] = 7019, ["BallisticJungle"] = 7017, ["BallisticGlass"] = 187,
  1090. ["BallisticDesert"] = 7016, ["Auto-5"] = 1025, ["ArmorPlates"] = 188, ["AN-94"] = 1040, ["AKS-74U"] = 1041,
  1091. ["AKM"] = 1038, ["AKAmmo75"] = 67, ["AKAmmo45"] = 66, ["AKAmmo30"] = 65, ["AK47Ammo75"] = 50,
  1092. ["AK47Ammo40"] = 49, ["AK47Ammo30"] = 48, ["AK-74"] = 1039, ["AK-47"] = 1003, ["AK-12"] = 1035,
  1093. ["ACOG"] = 9013, ["LargeCrate"] = 39, ["PP-19"] = 1026
  1094. }
  1095.  
  1096. function table_invert(t)
  1097.   local s={}
  1098.   for k,v in pairs(t) do
  1099.     s[v]=k
  1100.   end
  1101.   return s
  1102. end
  1103.  
  1104. local lol = table_invert(ItemCodes)
  1105.  
  1106. ZeroNums = {"a", "B", "i", "P", "Y", "S"}
  1107. ActualNums = {"A", "C", "d", "g", "L", "p", "s", "T", "Z"}
  1108. function FindMultipiler(Letter)
  1109. for z = 1, #ActualNums do
  1110. if ActualNums[z] == Letter then
  1111. return z
  1112. end
  1113. end
  1114. return "0"
  1115. end
  1116.  
  1117. function Deobfuscate(String)
  1118. local newval = ""
  1119. for d = 1, 10 do
  1120. local mult = FindMultipiler(string.sub(String, d, d))
  1121. newval = newval .. mult
  1122. end
  1123. newval = tonumber(newval)
  1124. return newval
  1125. end
  1126.  
  1127. modTeleport.MouseButton1Click:connect(function()
  1128.     local plr = game.Players.LocalPlayer
  1129.     hum = plr.Character.HumanoidRootPart
  1130.     mouse = plr:GetMouse()
  1131.     mouse.KeyDown:connect(function(key)
  1132.     if key == "e" then
  1133.     if mouse.Target then
  1134.     hum.CFrame = mouse.Hit+Vector3.new(0,5,0)
  1135.     end
  1136.     end
  1137.     end)
  1138. end)
  1139.  
  1140. modFog.MouseButton1Click:connect(function()
  1141.     game.Lighting.FogEnd = 100000
  1142.     game.Lighting.FogStart = 100000
  1143. end)
  1144.  
  1145. local L_54_ = Instance.new("BoolValue", Tripp)
  1146. L_54_.Name = "ESPOn"
  1147. L_54_.Value = false
  1148.  
  1149. modESP.MouseButton1Click:connect(function()
  1150. for i,v in pairs(game.Players:GetChildren()) do
  1151.     if v.Name ~= game.Players.LocalPlayer.Name then
  1152.         if v ~= game.Players.LocalPlayer.Character.Torso then    
  1153.  
  1154.     local base = Instance.new('BillboardGui', workspace.Camera)
  1155.     local esP = Instance.new('Frame', base)
  1156.     base.AlwaysOnTop = true
  1157.     base.Enabled = true
  1158.     base.Size = UDim2.new(4.5,0,6,0)
  1159.     base.Name = 'ESP'
  1160.     base.Adornee = v.Character.Torso
  1161.     base.StudsOffset = Vector3.new(0, -0.6, 0)
  1162.     esP.BackgroundColor3 = Color3.new(75, 0, 0)
  1163.     esP.BackgroundTransparency = 0.8
  1164.     esP.BorderColor3 = Color3.new(0,0,0)
  1165.     esP.BorderSizePixel = 1
  1166.     esP.Size = UDim2.new(1,0,1,0)
  1167.     local name = Instance.new('TextLabel',base)
  1168.     name.Size = UDim2.new(1,0,1,0)
  1169.     name.BackgroundTransparency = 1
  1170.     name.Position = UDim2.new(0,0,0,0)
  1171.     name.Text = v.Name
  1172.     name.TextScaled = true
  1173.         name.TextColor3 = Color3.new(255,255,255)
  1174.     name.TextXAlignment = 'Center'
  1175.     name.TextYAlignment = 'Top'
  1176.         name.Font = 'Highway'
  1177.         name.Position = UDim2.new(0,0,0,-100)
  1178. end        
  1179.     end
  1180. end
  1181. end)
  1182.  
  1183. modCorpse.MouseButton1Click:connect(function()
  1184.     for _, corpse in pairs(workspace:GetChildren()) do
  1185.         if corpse.Name == "Corpse" then
  1186.         corpse:MoveTo(workspace[game.Players.LocalPlayer.Name].Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  1187.         end
  1188.     end
  1189. end)
  1190.  
  1191. modRecoil.MouseButton1Click:connect(function()
  1192.     local prim = game.Players.LocalPlayer.playerstats.slots.slotprimary.ObjectID.Value
  1193.     local primid = Deobfuscate(prim)
  1194.     local itemname = lol[primid]
  1195.     game.Players.LocalPlayer.Backpack[itemname].Stats.Recoil.Value = "aaaaaaaaaA"
  1196. end)
  1197.  
  1198. modAimbot.MouseButton1Click:connect(function()
  1199.     ENABLED = false
  1200. PLAYER  = game.Players.LocalPlayer
  1201. MOUSE   = PLAYER:GetMouse()
  1202. CC      = game.Workspace.CurrentCamera
  1203. _G.FREE_FOR_ALL = true
  1204. _G.BIND = 50
  1205. _G.AIM_AT = 'Head'
  1206. local player = game.Players.LocalPlayer
  1207. local track = false
  1208.        
  1209. function GetNearestPlayerToMouse()
  1210. local PLAYERS      = {}
  1211. local PLAYER_HOLD  = {}
  1212. local DISTANCES    = {}
  1213. for i, v in pairs(game.Players:GetPlayers()) do
  1214. if v ~= PLAYER then
  1215. table.insert(PLAYERS, v)
  1216. end
  1217. end
  1218. for i, v in pairs(PLAYERS) do
  1219. if _G.FREE_FOR_ALL == false then
  1220. if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
  1221. local AIM = v.Character:FindFirstChild(_G.AIM_AT)
  1222. if AIM ~= nil then
  1223. local DISTANCE                 = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  1224. local RAY                      = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  1225. local HIT,POS                  = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  1226. local DIFF                     = math.floor((POS - AIM.Position).magnitude)
  1227. PLAYER_HOLD[v.Name .. i]       = {}
  1228. PLAYER_HOLD[v.Name .. i].dist  = DISTANCE
  1229. PLAYER_HOLD[v.Name .. i].plr   = v
  1230. PLAYER_HOLD[v.Name .. i].diff  = DIFF
  1231. table.insert(DISTANCES, DIFF)
  1232. end
  1233. end
  1234. elseif _G.FREE_FOR_ALL == true then
  1235. local AIM = v.Character:FindFirstChild(_G.AIM_AT)
  1236. if AIM ~= nil then
  1237. local DISTANCE                 = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  1238. local RAY                      = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  1239. local HIT,POS                  = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  1240. local DIFF                     = math.floor((POS - AIM.Position).magnitude)
  1241. PLAYER_HOLD[v.Name .. i]       = {}
  1242. PLAYER_HOLD[v.Name .. i].dist  = DISTANCE
  1243. PLAYER_HOLD[v.Name .. i].plr   = v
  1244. PLAYER_HOLD[v.Name .. i].diff  = DIFF
  1245. table.insert(DISTANCES, DIFF)
  1246. end
  1247. end
  1248. end
  1249.    
  1250. if unpack(DISTANCES) == nil then
  1251. return false
  1252. end
  1253.    
  1254. local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
  1255. if L_DISTANCE > 20 then
  1256. return false
  1257. end
  1258.    
  1259. for i, v in pairs(PLAYER_HOLD) do
  1260. if v.diff == L_DISTANCE then
  1261. return v.plr
  1262. end
  1263.     end
  1264.     return false
  1265.     end
  1266.    
  1267.     local TRACK = false
  1268.    
  1269.    
  1270. MOUSE.KeyDown:connect(function(KEY)
  1271. KEY = KEY:lower():byte()
  1272. if KEY == _G.BIND then
  1273. ENABLED = true
  1274. end
  1275. end)
  1276. MOUSE.KeyUp:connect(function(KEY)
  1277. KEY = KEY:lower():byte()
  1278. if KEY == _G.BIND then
  1279. ENABLED = false
  1280. end
  1281. end)
  1282.    
  1283. game:GetService('RunService').RenderStepped:connect(function()
  1284. if ENABLED then
  1285. local TARGET = GetNearestPlayerToMouse()
  1286. if TARGET.Name == "rsxk20" then
  1287. else
  1288.  
  1289. if (TARGET ~= false) then
  1290. local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
  1291. if AIM then
  1292. CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
  1293. end
  1294. end
  1295. end
  1296. end
  1297. end)
  1298. end)
  1299.  
  1300. local C4On = false
  1301. local Plr = game.Players.LocalPlayer
  1302. local material = game.Lighting.Materials.C4Placed
  1303. modC4.MouseButton1Click:connect(function()
  1304.     local pos = Plr.Character.Torso.Position
  1305. if C4On == false then
  1306. C4On = true
  1307. modC4.Text = "C4 Walk: ON"
  1308. modC4.TextColor3 = Color3.new(0, 0.486275, 0.054902)
  1309. repeat
  1310. game.Workspace.Remote.PlaceC4:FireServer(material, pos, true)
  1311. wait()
  1312. until C4On == false
  1313. elseif C4On == true then
  1314. C4On = false
  1315. modC4.Text = "C4 Walk: OFF"
  1316. modC4.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  1317. end
  1318. end)
  1319.  
  1320. local Stamina = true
  1321. modStamina.MouseButton1Click:connect(function()
  1322.     Stamina = true
  1323.     while wait() do
  1324.         if Stamina == true then
  1325.             game.Players.LocalPlayer.Backpack.GlobalFunctions.Stamina.Value = 100
  1326.         end
  1327.     end
  1328. end)
  1329.  
  1330. modHunger.MouseButton1Click:connect(function()
  1331. plr = game.Players.LocalPlayer.playerstats
  1332. game.Players.LocalPlayer.playerstats.Thirst.Value = math.huge
  1333. game.Players.LocalPlayer.playerstats.Hunger.Value = math.huge
  1334. end)
  1335.  
  1336. modGod.MouseButton1Click:connect(function()
  1337. game.Workspace.Remote.AddDamageSelf:FireServer(game.Players.LocalPlayer.Character.Humanoid, math.huge)
  1338. end)
  1339.  
  1340. local PlayerSelect = Instance.new("TextBox")
  1341.  
  1342. local esp = false
  1343. local player = game.Players.LocalPlayer
  1344. modESP2.MouseButton1Click:connect(function()
  1345.     if esp == false then -- forgot esp lol
  1346. esp = true
  1347. modESP2.Text = "Name ESP: ON"
  1348. modESP2.TextColor3 = Color3.new(0, 0.486275, 0.054902)
  1349. for get,nplayer in ipairs(game.Players:GetPlayers()) do
  1350. if nplayer.Name == player.Name then
  1351. else
  1352. local BGUI = Instance.new('BillboardGui', workspace.CurrentCamera)
  1353. BGUI.Name = 'BGui'
  1354. local BGUIFrame = Instance.new('Frame', BGUI)
  1355. BGUIFrame.Name = 'BGUIFrame'
  1356. local BGUIName = Instance.new('TextLabel', BGUIFrame)
  1357. BGUIName.Name = 'BGUIName'
  1358. BGUI.AlwaysOnTop = true
  1359. BGUI.Enabled = true
  1360. BGUI.Size = UDim2.new(0,60,0,15)
  1361. BGUI.Adornee = nplayer.Character.Head
  1362. BGUIFrame.BackgroundTransparency = 1
  1363. BGUIFrame.Size = UDim2.new(1,0,1,0)
  1364. BGUIName.Size = UDim2.new(1,0,1,0)
  1365. BGUIName.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  1366. BGUIName.Text = nplayer.Name
  1367. BGUIName.TextColor3 = Color3.new(255, 255,255)
  1368. BGUIName.TextStrokeColor3 = Color3.new(0, 0, 0)
  1369. BGUIName.TextStrokeTransparency = 0
  1370. BGUIName.Font = "Cartoon"
  1371. BGUIName.TextScaled = true
  1372. BGUIName.TextWrapped = true
  1373. BGUIName.MouseEnter:connect(function()
  1374. PlayerSelect.Text = game.Players.LocalPlayer.Name
  1375. BGUIName.MouseLeave:connect(function()
  1376. PlayerSelect.Text = ""
  1377. end)
  1378. end)
  1379. end
  1380. local nvGUI = Instance.new('ScreenGui', player.PlayerGui)
  1381. nvGUI.Name = "NVG"
  1382. local nvMAIN = Instance.new('TextLabel', nvGUI)
  1383. nvMAIN.Name = "Main"
  1384. nvMAIN.BackgroundTransparency = 1
  1385. for i,v in pairs(game.Players:GetChildren()) do
  1386. if v and v.Character and not (v.Name == '' .. player.Name) then
  1387. for i,v in pairs(v.Character:GetChildren()) do
  1388. if v:IsA('BasePart') then
  1389. local nvBox = Instance.new('SelectionBox', nvMAIN)
  1390. nvBox.Adornee = v
  1391. nvBox.Color = BrickColor.new('Blue')
  1392. end
  1393. end
  1394. end
  1395. end
  1396. end
  1397. elseif esp == true then
  1398. esp = false
  1399. modESP2.Text = "Name ESP: OFF"
  1400. modESP2.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  1401. for i,v in ipairs(game.Workspace.CurrentCamera:GetChildren()) do
  1402. if v.Name == 'BGui' then
  1403. v:Destroy()
  1404. end
  1405. end
  1406. for i,v in pairs(player.PlayerGui:GetChildren()) do
  1407. if v.Name == "NVG" and v:IsA('ScreenGui') then
  1408. v:Destroy()
  1409. end
  1410. end
  1411. end
  1412. end)
  1413.  
  1414. modNoclip.MouseButton1Click:connect(function()
  1415. noclip = false
  1416. game:GetService('RunService').Stepped:connect(function()
  1417. if noclip then
  1418. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1419. end
  1420. end)
  1421. plr = game.Players.LocalPlayer
  1422. mouse = plr:GetMouse()
  1423. mouse.KeyDown:connect(function(key)
  1424.  
  1425. if key == "j" then
  1426. noclip = not noclip
  1427. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1428. end
  1429. end)
  1430. end)
  1431.  
  1432. local vehiclepos = L_2_.Character.HumanoidRootPart.Position
  1433. vehicleTeleport.MouseButton1Click:connect(function()
  1434. game.Workspace.Remote.AddDamageSelf:FireServer(game.Players.LocalPlayer.Character.Humanoid, math.huge)
  1435. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(vehiclepos+Vector3.new(0,15,0))
  1436. end)
  1437.  
  1438. --Spawning
  1439. function spawnItem(L_106_, amount)
  1440.     for xvar1 = 1, amount do
  1441.         local L_108_ = game.Lighting.LootDrops:FindFirstChild(L_106_)
  1442.         local L_109_ = L_108_:Clone()
  1443.         L_109_.Parent = workspace;
  1444.         L_109_:SetPrimaryPartCFrame(CFrame.new(L_2_.Character.Head.Position + Vector3.new(math.random(-5, 5), 0, math.random(-5, 5))))
  1445.     end
  1446. end
  1447.  
  1448. spawnFalKit.MouseButton1Click:connect(function()
  1449.     spawnItem("FAL", 1)
  1450.     spawnItem("M14Ammo50", 5)
  1451.     spawnItem("ACOG", 1)
  1452.     spawnItem("Suppressor762", 1)
  1453.     spawnItem("Grip", 1)
  1454.     spawnItem("MilitaryPackBlack", 1)
  1455. end)
  1456.  
  1457. spawnNavigation.MouseButton1Click:connect(function()
  1458.     spawnItem("Map", 1)
  1459.     spawnItem("GPS", 1)
  1460.     spawnItem("Compass", 1)
  1461. end)
  1462.  
  1463. btnSpawn.MouseButton1Click:connect(function()
  1464.     local L_106_ = txtboxSearch.Text;
  1465.     if workspace.SpawnLoot:FindFirstChild(L_106_) then
  1466.         workspace.Remote.GrabItem:FireServer(L_2_.playerstats.slots["slot"..getNextOpenSlot()], workspace.SpawnLoot:FindFirstChild(L_106_), workspace.SpawnLoot:FindFirstChild(L_106_).ObjectID)
  1467.     elseif workspace.DropLoot:FindFirstChild(L_106_) then
  1468.         workspace.Remote.GrabItem:FireServer(L_2_.playerstats.slots["slot"..getNextOpenSlot()], workspace.DropLoot:FindFirstChild(L_106_), workspace.DropLoot:FindFirstChild(L_106_).ObjectID)
  1469.     elseif findItemFromPlayer(L_106_) then
  1470.         local L_107_ = findItemFromPlayer(L_106_)
  1471.         workspace.Remote.DropItem(L_107_, L_107_.ObjectID.Value)
  1472.     else
  1473.         local L_108_ = game.Lighting.LootDrops:FindFirstChild(L_106_)
  1474.         if not L_108_ then
  1475.             btnSpawn.Text = "Error"
  1476.             wait(2)
  1477.             btnSpawn.Text = "Spawn"
  1478.             return
  1479.         end;
  1480.         local L_109_ = L_108_:Clone()
  1481.         L_109_.Parent = workspace;
  1482.         L_109_:SetPrimaryPartCFrame(CFrame.new(L_2_.Character.Head.Position + Vector3.new(math.random(-5, 5), 0, math.random(-5, 5))))
  1483.     end
  1484. end)
  1485.  
  1486. function alphabetize(L_110_arg1, L_111_arg2)
  1487.     local L_112_ = L_110_arg1.Name:lower()
  1488.     local L_113_ = L_112_:sub(1, 1):byte()
  1489.     local L_114_ = L_111_arg2.Name:lower()
  1490.     local L_115_ = L_114_:sub(1, 1):byte()
  1491.     if L_113_ < L_115_ then
  1492.         return true
  1493.     else
  1494.         return false
  1495.     end
  1496. end;
  1497.  
  1498. local L_56_ = game.Lighting.LootDrops:GetChildren()
  1499. local L_57_ = {}
  1500. for L_84_forvar1 = 1, #L_56_ do
  1501.     if L_56_[L_84_forvar1]:IsA("Model") then
  1502.         table.insert(L_57_, L_56_[L_84_forvar1].Name)
  1503.     end
  1504. end;
  1505.  
  1506. function getMatches(L_85_arg1)
  1507.     local L_86_ = {}
  1508.     for L_87_forvar1 = 1, #L_56_ do
  1509.         local L_88_ = L_56_[L_87_forvar1].Name:lower()
  1510.         if L_88_:find(L_85_arg1:lower()) then
  1511.             table.insert(L_86_, L_56_[L_87_forvar1])
  1512.         end
  1513.     end;
  1514.     table.sort(L_86_, alphabetize)
  1515.     return L_86_
  1516. end;
  1517.  
  1518. txtboxSearch.Changed:connect(function()
  1519.     for L_91_forvar1, L_92_forvar2 in ipairs(scrollingItems:GetChildren()) do
  1520.         L_92_forvar2:Destroy()
  1521.     end;
  1522.     local L_89_ = txtboxSearch.Text;
  1523.     local L_90_ = getMatches(L_89_)
  1524.     if L_90_ then
  1525.         scrollingItems.Visible = true
  1526.         scrollingItems.CanvasSize = UDim2.new(0, 225, 0, (#L_90_ * 25) - 25)
  1527.         for L_93_forvar1 = 1, #L_90_ do
  1528.             local L_94_ = L_90_[L_93_forvar1].Name;
  1529.             local L_95_ = Instance.new("TextButton", scrollingItems)
  1530.             L_95_.Font = Enum.Font.ArialBold;
  1531.             L_95_.FontSize = Enum.FontSize.Size14;
  1532.             L_95_.Style = Enum.ButtonStyle.RobloxRoundButton;
  1533.             L_95_.Text = L_94_;
  1534.             L_95_.TextColor3 = Color3.new(255, 255, 255)
  1535.             L_95_.TextXAlignment = Enum.TextXAlignment.Left;
  1536.             L_95_.Name = L_94_;
  1537.             L_95_.Position = UDim2.new(0, 0, 0, (L_93_forvar1 * 25) - 25)
  1538.             L_95_.Size = UDim2.new(0, 210, 0, 25)
  1539.             L_95_.MouseButton1Click:connect(function()
  1540.                 txtboxSearch.Text = L_95_.Text
  1541.             end)
  1542.         end
  1543.     end;
  1544.     if not L_90_ then
  1545.         scrollingItems.Visible = false
  1546.     end
  1547. end)
  1548.  
  1549. wait(1)
  1550. txtboxSearch.Text = "{SEARCH ITEM}"
  1551.  
  1552. --Players
  1553. local globalplr = "nil"
  1554. local spec = false
  1555.  
  1556. local L_58_ = Instance.new("ObjectValue", frmPlayers)
  1557. L_58_.Name = "SelectedPlayer"
  1558. local L_59_ = game.Players:GetPlayers()
  1559. table.sort(L_59_, alphabetize)
  1560. for L_116_forvar1 = 1, #L_59_ do
  1561.     local L_117_ = L_59_[L_116_forvar1]
  1562.     local L_118_ = Instance.new("TextButton", scrollingPlayers)
  1563.     L_118_.Name = L_117_.Name;
  1564.     L_118_.Text = L_117_.Name;
  1565.     L_118_.Size = UDim2.new(0, 285, 0, 25)
  1566.     L_118_.Font = Enum.Font.ArialBold;
  1567.     L_118_.FontSize = Enum.FontSize.Size14;
  1568.     L_118_.TextColor3 = Color3.new(255, 255, 255)
  1569.     L_118_.Style = Enum.ButtonStyle.RobloxRoundButton;
  1570.     L_118_.Position = UDim2.new(0, 0, 0, (L_116_forvar1 * 25) - 25)
  1571.     scrollingPlayers.CanvasSize = UDim2.new(0, 0, 0, (#L_59_ * 25) - 25)
  1572.     L_118_.MouseButton1Click:connect(function()
  1573.         L_58_.Value = L_117_;
  1574.         labelSelectedPlayers.Text = "Selected: "..L_117_.Name
  1575.         globalplr = L_117_.Name
  1576.     if spec == true then
  1577.         print(globalplr)
  1578.         game.Workspace.CurrentCamera.CameraSubject = game.Players[globalplr].Character.Humanoid
  1579.     else
  1580.        
  1581.     end
  1582.     end)
  1583. end;
  1584.  
  1585. function update()
  1586.     for L_120_forvar1, L_121_forvar2 in ipairs(scrollingPlayers:GetChildren()) do
  1587.         if L_121_forvar2:IsA("TextButton") then
  1588.             L_121_forvar2:Destroy()
  1589.         end
  1590.     end;
  1591.     local L_119_ = game.Players:GetPlayers()
  1592.     table.sort(L_119_, alphabetize)
  1593.     for L_122_forvar1 = 1, #L_119_ do
  1594.         local L_123_ = L_119_[L_122_forvar1]
  1595.         local L_124_ = Instance.new("TextButton", scrollingPlayers)
  1596.         L_124_.Text = L_123_.Name;
  1597.         L_124_.Size = UDim2.new(0, 285, 0, 25)
  1598.         L_124_.Font = Enum.Font.ArialBold;
  1599.         L_124_.FontSize = Enum.FontSize.Size14;
  1600.         L_124_.TextColor3 = Color3.new(255, 255, 255)
  1601.         L_124_.Style = Enum.ButtonStyle.RobloxRoundButton;
  1602.         L_124_.Position = UDim2.new(0, 0, 0, (L_122_forvar1 * 25) - 25)
  1603.         scrollingPlayers.CanvasSize = UDim2.new(0, 0, 0, (#L_119_ * 25) - 25)
  1604.         L_124_.MouseButton1Click:connect(function()
  1605.             L_58_.Value = L_123_;
  1606.             labelSelectedPlayers.Text = "Selected: "..L_123_.Name
  1607.             globalplr = L_123_.Name
  1608.     if spec == true then
  1609.         print(globalplr)
  1610.         game.Workspace.CurrentCamera.CameraSubject = game.Players[globalplr].Character.Humanoid
  1611.     else
  1612.        
  1613.     end
  1614.         end)
  1615.     end
  1616. end;
  1617.  
  1618. function getGun()
  1619.     local L_66_ = L_2_.Backpack:GetChildren()
  1620.     for L_67_forvar1 = 1, #L_66_ do
  1621.         if L_66_[L_67_forvar1]:IsA("Model") and L_66_[L_67_forvar1]:FindFirstChild("Shooter") then
  1622.             return L_66_[L_67_forvar1]
  1623.         end
  1624.     end;
  1625.     return nil
  1626. end;
  1627.  
  1628. playerKillAll.MouseButton1Click:connect(function()
  1629.     local L_68_ = getGun()
  1630.     if not L_68_ then
  1631.         playerKillAll.Text = "Error"
  1632.         wait()
  1633.         playerKillAll.Text = "Kill All"
  1634.         return
  1635.     end;
  1636.     for L_69_forvar1, L_70_forvar2 in ipairs(game.Players:GetPlayers()) do
  1637.         if L_68_ and L_70_forvar2.Character and L_70_forvar2 ~= L_2_ then
  1638.             for L_71_forvar1 = 1, 6 do
  1639.                 workspace.Remote.DoHitLogic:FireServer(L_68_, L_70_forvar2.Character.Head)
  1640.             end
  1641.         end
  1642.     end
  1643. end)
  1644.  
  1645. playerStealAllG.MouseButton1Click:connect(function()
  1646.     local L_77_ = game.Players:GetPlayers()
  1647.     for L_78_forvar1 = 1, #L_77_ do
  1648.         local L_79_ = L_77_[L_78_forvar1]
  1649.         if L_79_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
  1650.             workspace.Remote.DropItem:FireServer(L_79_.playerstats.slots.slotprimary, L_79_.playerstats.slots.slotprimary.ObjectID)
  1651.         end;
  1652.         if L_79_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
  1653.             workspace.Remote.DropItem:FireServer(L_79_.playerstats.slots.slotsecondary, L_79_.playerstats.slots.slotsecondary.ObjectID)
  1654.         end
  1655.     end
  1656. end)
  1657.  
  1658. playerStealAllI.MouseButton1Click:connect(function()
  1659.     local L_72_ = game.Players:GetPlayers()
  1660.     for L_73_forvar1 = 1, #L_72_ do
  1661.         local L_74_ = L_72_[L_73_forvar1]
  1662.         if L_74_ ~= L_2_ then
  1663.             for L_75_forvar1 = 1, 20 do
  1664.                 if L_74_.playerstats.slots:FindFirstChild("slot"..L_75_forvar1):FindFirstChild("ObjectID") then
  1665.                     workspace.Remote.DropItem:FireServer(L_74_.playerstats.slots:FindFirstChild("slot"..L_75_forvar1), L_74_.playerstats.slots:FindFirstChild("slot"..L_75_forvar1).ObjectID)
  1666.                 end
  1667.             end;
  1668.             if L_74_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
  1669.                 workspace.Remote.DropItem:FireServer(L_74_.playerstats.slots.slotprimary, L_74_.playerstats.slots.slotprimary.ObjectID)
  1670.             end;
  1671.             if L_74_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
  1672.                 workspace.Remote.DropItem:FireServer(L_74_.playerstats.slots.slotsecondary, L_74_.playerstats.slots.slotsecondary.ObjectID)
  1673.             end;
  1674.             for L_76_forvar1 = 1, 7 do
  1675.                 if L_74_.playerstats.utilityslots["slot"..L_76_forvar1]:FindFirstChild("ObjectID") then
  1676.                     workspace.Remote.DropItem:FireServer(L_74_.playerstats.utilityslots["slot"..L_76_forvar1], L_74_.playerstats.utilityslots["slot"..L_76_forvar1].ObjectID)
  1677.                 end
  1678.             end
  1679.         end
  1680.     end
  1681. end)
  1682.  
  1683. game.Players.PlayerAdded:connect(update)
  1684. game.Players.PlayerRemoving:connect(update)
  1685.  
  1686. playerKill.MouseButton1Click:connect(function()
  1687.     local L_125_ = getGun()
  1688.     if not L_125_ or not L_58_.Value then
  1689.         playerKill.Text = "Error"
  1690.         wait(2)
  1691.         playerKill.Text = "Kill"
  1692.         return
  1693.     end;
  1694.     for L_126_forvar1 = 1, 10 do
  1695.         workspace.Remote.DoHitLogic:FireServer(L_125_, L_58_.Value.Character.Head)
  1696.     end
  1697. end)
  1698.  
  1699. playerStealGuns.MouseButton1Click:connect(function()
  1700.     local L_130_ = L_58_.Value;
  1701.     if not L_58_.Value then
  1702.         playerStealGuns.Text = "Error"
  1703.         wait(2)
  1704.         playerStealGuns.Text = "Steal Guns"
  1705.         return
  1706.     end;
  1707.     if L_130_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
  1708.         workspace.Remote.DropItem:FireServer(L_130_.playerstats.slots.slotprimary, L_130_.playerstats.slots.slotprimary.ObjectID)
  1709.     end;
  1710.     if L_130_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
  1711.         workspace.Remote.DropItem:FireServer(L_130_.playerstats.slots.slotsecondary, L_130_.playerstats.slots.slotsecondary.ObjectID)
  1712.     end
  1713. end)
  1714.  
  1715. playerStealItems.MouseButton1Click:connect(function()
  1716.     local L_127_ = L_58_.Value;
  1717.     if not L_58_.Value then
  1718.         playerStealItems.Text = "Error"
  1719.         wait(2)
  1720.         playerStealItems.Text = "Steal Items"
  1721.         return
  1722.     end;
  1723.     for L_128_forvar1 = 1, 20 do
  1724.         if L_127_.playerstats.slots:FindFirstChild("slot"..L_128_forvar1):FindFirstChild("ObjectID") then
  1725.             workspace.Remote.DropItem:FireServer(L_127_.playerstats.slots:FindFirstChild("slot"..L_128_forvar1), L_127_.playerstats.slots:FindFirstChild("slot"..L_128_forvar1).ObjectID)
  1726.         end;
  1727.         if L_127_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
  1728.             workspace.Remote.DropItem:FireServer(L_127_.playerstats.slots.slotprimary, L_127_.playerstats.slots.slotprimary.ObjectID)
  1729.         end;
  1730.         if L_127_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
  1731.             workspace.Remote.DropItem:FireServer(L_127_.playerstats.slots.slotsecondary, L_127_.playerstats.slots.slotsecondary.ObjectID)
  1732.         end
  1733.     end;
  1734.     for L_129_forvar1 = 1, 7 do
  1735.         if L_127_.playerstats.utilityslots["slot"..L_129_forvar1]:FindFirstChild("ObjectID") then
  1736.             workspace.Remote.DropItem:FireServer(L_127_.playerstats.utilityslots["slot"..L_129_forvar1], L_127_.playerstats.utilityslots["slot"..L_129_forvar1].ObjectID)
  1737.         end
  1738.     end
  1739. end)
  1740.  
  1741. playerSpectate.MouseButton1Click:connect(function()
  1742. if spec == false then
  1743.     spec = true
  1744.     playerSpectate.Text = "Spectate: ON"
  1745.     playerSpectate.TextColor3 = Color3.new(0, 0.486275, 0.054902)
  1746. elseif globalplr == "nil" then
  1747. else
  1748.     spec = false
  1749.     playerSpectate.Text = "Spectate: OFF"
  1750.     playerSpectate.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  1751.     game.Workspace.CurrentCamera.CameraSubject = L_2_.Character.Humanoid
  1752. end
  1753. end)
  1754.  
  1755. playerTeleport.MouseButton1Click:connect(function()
  1756. if spec == true then
  1757.     spec = false
  1758.     playerSpectate.Text = "Spectate: OFF"
  1759.     playerSpectate.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  1760.     game.Workspace.CurrentCamera.CameraSubject = L_2_.Character.Humanoid
  1761. end
  1762.  
  1763. o = globalplr
  1764. game.Workspace.Remote.AddDamageSelf:FireServer(game.Players.LocalPlayer.Character.Humanoid, math.huge)
  1765. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players[o].Character.HumanoidRootPart.Position)
  1766. end)
  1767.  
  1768. --Vehicles
  1769.  
  1770. local L_60_ = Instance.new("ObjectValue", Tripp)
  1771. L_60_.Name = "SelectedVehicle"
  1772. function getVehicles()
  1773.     local L_163_ = game.Workspace.Vehicles:GetChildren()
  1774.     local L_164_ = {}
  1775.     for L_165_forvar1 = 1, #L_163_ do
  1776.         if L_163_[L_165_forvar1].Name ~= "Holder" and L_163_[L_165_forvar1].Name ~= "VehicleWreck" then
  1777.             table.insert(L_164_, L_163_[L_165_forvar1])
  1778.         end
  1779.     end;
  1780.     table.sort(L_164_, alphabetize)
  1781.     return L_164_
  1782. end;
  1783.  
  1784. local L_61_ = getVehicles()
  1785. for L_166_forvar1 = 1, #L_61_ do
  1786.     local L_167_ = L_61_[L_166_forvar1]
  1787.     local L_168_ = Instance.new("TextButton", scrollingVehicles)
  1788.     L_168_.Name = L_167_.Name;
  1789.     L_168_.Text = L_167_.Name;
  1790.     L_168_.Size = UDim2.new(0, 210, 0, 25)
  1791.     L_168_.Font = Enum.Font.ArialBold;
  1792.     L_168_.FontSize = Enum.FontSize.Size14;
  1793.     L_168_.TextColor3 = Color3.new(255, 255, 255)
  1794.     L_168_.Style = Enum.ButtonStyle.RobloxRoundButton;
  1795.     L_168_.Position = UDim2.new(0, 0, 0, (L_166_forvar1 * 25) - 25)
  1796.     scrollingVehicles.CanvasSize = UDim2.new(0, 0, 0, (#L_61_ * 25))
  1797.     L_168_.MouseButton1Click:connect(function()
  1798.         L_60_.Value = L_167_;
  1799.         labelSelectedVehicle.Text = "Selected: "..L_167_.Name
  1800.         vehiclepos = L_167_.PrimaryPart.Position
  1801.     end)
  1802. end;
  1803. function updateV()
  1804.     for L_170_forvar1, L_171_forvar2 in pairs(scrollingVehicles:GetChildren()) do
  1805.         L_171_forvar2:Destroy()
  1806.     end;
  1807.     local L_169_ = getVehicles()
  1808.     for L_172_forvar1 = 1, #L_169_ do
  1809.         local L_173_ = L_169_[L_172_forvar1]
  1810.         local L_174_ = Instance.new("TextButton", scrollingVehicles)
  1811.         L_174_.Name = L_173_.Name;
  1812.         L_174_.Text = L_173_.Name;
  1813.         L_174_.Size = UDim2.new(0, 210, 0, 25)
  1814.         L_174_.Font = Enum.Font.ArialBold;
  1815.         L_174_.FontSize = Enum.FontSize.Size14;
  1816.         L_174_.TextColor3 = Color3.new(255, 255, 255)
  1817.         L_174_.Style = Enum.ButtonStyle.RobloxRoundButton;
  1818.         L_174_.Position = UDim2.new(0, 0, 0, (L_172_forvar1 * 25) - 25)
  1819.         scrollingVehicles.CanvasSize = UDim2.new(0, 0, 0, (#L_169_ * 25))
  1820.         L_174_.MouseButton1Click:connect(function()
  1821.             L_60_.Value = L_173_;
  1822.             labelSelectedVehicle.Text = "Selected: "..L_173_.Name
  1823.             vehiclepos = L_173_.PrimaryPart.Position
  1824.         end)
  1825.     end
  1826. end;
  1827.  
  1828. vehicleDestroyAll.MouseButton1Click:connect(function()
  1829.     local L_176_ = getVehicles()
  1830.     for L_177_forvar1 = 1, #L_176_ do
  1831.         local L_178_ = L_60_.Value;
  1832.         if L_178_ and L_178_:FindFirstChild("Stats") and L_178_.Name ~= "Bicycle" then
  1833.             L_178_.Stats.Engine.Value = 0
  1834.         end
  1835.     end
  1836. end)
  1837.  
  1838. vehicleDestroy.MouseButton1Click:connect(function()
  1839.     local L_175_ = L_60_.Value;
  1840.     if L_175_ and L_175_:FindFirstChild("Stats") and L_175_.Name ~= "Bicycle" then
  1841.         L_175_.Stats.Engine.Value = 0
  1842.     else
  1843.         vehicleDestroy.Text = "Error"
  1844.         wait(2)
  1845.         vehicleDestroy.Text = "Destroy"
  1846.     end
  1847. end)
  1848.  
  1849. vehicleSetSpeed.MouseButton1Click:connect(function()
  1850.     local L_179_ = L_60_.Value;
  1851.     if L_179_ and L_179_:FindFirstChild("Stats") and tonumber(txtboxSpeed.Text) then
  1852.         L_179_.Stats.MaxSpeed.Value = txtboxSpeed.Text;
  1853.         L_179_.Stats.MaxSpeed.Offroad.Value = txtboxSpeed.Text
  1854.     else
  1855.         vehicleSetSpeed.Text = "Error"
  1856.         wait(2)
  1857.         vehicleSetSpeed.Text = "SetSpeed"
  1858.     end
  1859. end)
  1860.  
  1861. vehicleESP.MouseButton1Click:connect(function()
  1862.         if not L_54_.Value then
  1863.         L_54_.Value = true
  1864.         vehicleESP.Text = "Car ESP: ON"
  1865.         vehicleESP.TextColor3 = Color3.new(0, 0.486275, 0.054902)
  1866.         local function L_141_func(L_146_arg1)
  1867.             local L_147_ = Instance.new("BillboardGui", L_2_.PlayerGui)
  1868.             L_147_.Adornee = L_146_arg1.PrimaryPart;
  1869.             L_147_.AlwaysOnTop = true
  1870.             L_147_.Enabled = true
  1871.             L_147_.Active = false
  1872.             L_147_.Size = UDim2.new(0, 25, 0, 12.5)
  1873.             local L_148_ = Instance.new("TextLabel", L_147_)
  1874.             L_148_.Size = UDim2.new(0, 25, 0, 12.5)
  1875.             L_148_.BackgroundColor3 = Color3.new(0, 255, 0)
  1876.             L_148_.BackgroundTransparency = 0.7
  1877.             L_148_.TextScaled = true
  1878.             spawn(function()
  1879.                 while true do
  1880.                     for L_149_forvar1 = 1, 30 do
  1881.                         wait(0.1)
  1882.                         L_148_.Text = math.floor((L_2_.Character.Head.Position - L_146_arg1.PrimaryPart.Position).magnitude).." m"
  1883.                     end;
  1884.                     L_148_.Text = L_146_arg1.Name;
  1885.                     wait(3)
  1886.                     if not L_54_.Value then
  1887.                         break
  1888.                     end
  1889.                 end
  1890.             end)
  1891.         end;
  1892.         for L_152_forvar1, L_153_forvar2 in pairs(getVehicles()) do
  1893.             if L_153_forvar2 then
  1894.                 L_141_func(L_153_forvar2)
  1895.             end
  1896.         end;
  1897.     else
  1898.         for L_155_forvar1, L_156_forvar2 in ipairs(L_2_.PlayerGui:GetChildren()) do
  1899.             if L_156_forvar2:IsA("BillboardGui") then
  1900.                 L_156_forvar2:Destroy()
  1901.             end
  1902.         end;
  1903.         L_54_.Value = false
  1904.         vehicleESP.Text = "Car ESP: OFF"
  1905.         vehicleESP.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  1906.     end
  1907. end)
  1908.  
  1909. --Server
  1910. tspamBool = false
  1911. messageSpam.MouseButton1Click:connect(function()
  1912.     if tspamBool == false then
  1913.         tspamBool = true
  1914.         messageSpam.Text = "Chat Spam: ON"
  1915.         messageSpam.TextColor3 = Color3.new(0, 0.486275, 0.054902)
  1916.     words = {tostring(messageText.Text), messageText.Text..'.'}
  1917. while tspamBool do
  1918. wait()
  1919. game.workspace.Remote.Chat:FireServer("Global", words[math.random(#words)])
  1920. end
  1921.     else
  1922.         tspamBool = false
  1923.         messageSpam.Text = "Chat Spam: OFF"
  1924.         messageSpam.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
  1925.     end
  1926.        
  1927. end)
  1928.  
  1929. Red.MouseButton1Down:connect(function()
  1930. for i,v in pairs(game.Players:GetChildren())do
  1931. workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Red', messageText.Text)
  1932. end
  1933. end)
  1934.  
  1935. Yellow.MouseButton1Down:connect(function()
  1936. for i,v in pairs(game.Players:GetChildren())do
  1937. workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Yellow', messageText.Text)
  1938. end
  1939. end)
  1940.  
  1941. Green.MouseButton1Down:connect(function()
  1942. for i,v in pairs(game.Players:GetChildren())do
  1943. workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Green', messageText.Text)
  1944. end
  1945. end)
  1946.  
  1947. Blue.MouseButton1Down:connect(function()
  1948. for i,v in pairs(game.Players:GetChildren())do
  1949. workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Blue', messageText.Text)
  1950. end
  1951. end)
  1952.  
  1953. White.MouseButton1Down:connect(function()
  1954. for i,v in pairs(game.Players:GetChildren())do
  1955. workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'White', messageText.Text)
  1956. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement