Amaamc

Ye(e)t another gui

Jun 28th, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 133.26 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local btools = Instance.new("TextButton")
  7. local _150ws = Instance.new("TextButton")
  8. local _1000ws = Instance.new("TextButton")
  9. local normalws = Instance.new("TextButton")
  10. local sugar = Instance.new("TextButton")
  11. local arsenal = Instance.new("TextButton")
  12. local treasure = Instance.new("TextButton")
  13. local parkour = Instance.new("TextButton")
  14. local arsenalgui = Instance.new("TextButton")
  15. local pewpew = Instance.new("TextButton")
  16. local streets = Instance.new("TextButton")
  17. local Info = Instance.new("TextLabel")
  18. local close = Instance.new("TextButton")
  19. local open = Instance.new("TextButton")
  20. --Properties:
  21. ScreenGui.Parent = game.CoreGui
  22. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  23.  
  24. main.Name = "main"
  25. main.Parent = ScreenGui
  26. main.Active = true
  27. main.BackgroundColor3 = Color3.new(0.109804, 1, 0.780392)
  28. main.BackgroundTransparency = 0.19999998807907
  29. main.BorderSizePixel = 0
  30. main.Position = UDim2.new(0.910656631, 0, 0.122775801, 0)
  31. main.Size = UDim2.new(0, 207, 0, 804)
  32. main.Visible = false
  33.  
  34. btools.Name = "btools"
  35. btools.Parent = main
  36. btools.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  37. btools.Position = UDim2.new(0.0869565606, 0, 0.0410447754, 0)
  38. btools.Size = UDim2.new(0, 170, 0, 50)
  39. btools.Font = Enum.Font.SciFi
  40. btools.Text = "BTools"
  41. btools.TextColor3 = Color3.new(0, 0, 0)
  42. btools.TextSize = 17
  43. btools.MouseButton1Down:connect(function()
  44. local player = game.Players.LocalPlayer
  45. local mouse = player:GetMouse()
  46.  
  47. -- Objects
  48.  
  49. local ScreenGui = Instance.new("ScreenGui")
  50. local TextButton = Instance.new("TextButton")
  51. local On = Instance.new("StringValue")
  52.  
  53. -- Properties
  54.  
  55. ScreenGui.Parent = player.PlayerGui
  56.  
  57. TextButton.Parent = ScreenGui
  58. TextButton.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  59. TextButton.BorderSizePixel = 0
  60. TextButton.Position = UDim2.new(0, 0, 0.455743879, 0)
  61. TextButton.Size = UDim2.new(0, 186, 0, 35)
  62. TextButton.Font = Enum.Font.SourceSans
  63. TextButton.Text = "Btools (Off)"
  64. TextButton.TextColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  65. TextButton.TextScaled = true
  66. TextButton.TextSize = 14
  67. TextButton.TextWrapped = true
  68.  
  69.  
  70. On.Parent = TextButton
  71. On.Value = "Off"
  72.  
  73. -- Scripts
  74.  
  75. TextButton.MouseButton1Up:Connect(function()
  76. if On.Value == "Off" then
  77. On.Value = "On"
  78. TextButton.Text = "Btools (On)"
  79. else
  80. On.Value = "Off"
  81. TextButton.Text = "Btools (Off)"
  82. end
  83. end)
  84.  
  85. mouse.Button1Up:Connect(function()
  86. if On.Value == "Off" then
  87. print('btools off')
  88. else
  89. if mouse.Target.Locked == true then
  90. mouse.Target:Destroy()
  91. else
  92. mouse.Target:Destroy()
  93. end
  94. end
  95. end)
  96. end)
  97.  
  98. _150ws.Name = "150ws"
  99. _150ws.Parent = main
  100. _150ws.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  101. _150ws.Position = UDim2.new(0.0869565606, 0, 0.121890545, 0)
  102. _150ws.Size = UDim2.new(0, 170, 0, 50)
  103. _150ws.Font = Enum.Font.SciFi
  104. _150ws.Text = "150 walkspeed"
  105. _150ws.TextColor3 = Color3.new(0, 0, 0)
  106. _150ws.TextSize = 17
  107. _150ws.MouseButton1Down:connect(function()
  108. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
  109. end)
  110.  
  111. _1000ws.Name = "1000ws"
  112. _1000ws.Parent = main
  113. _1000ws.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  114. _1000ws.Position = UDim2.new(0.0869565606, 0, 0.203980088, 0)
  115. _1000ws.Size = UDim2.new(0, 170, 0, 50)
  116. _1000ws.Font = Enum.Font.SciFi
  117. _1000ws.Text = "1000 walkspeed"
  118. _1000ws.TextColor3 = Color3.new(0, 0, 0)
  119. _1000ws.TextSize = 17
  120. _1000ws.MouseButton1Down:connect(function()
  121. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 1000
  122. end)
  123.  
  124. normalws.Name = "normal ws"
  125. normalws.Parent = main
  126. normalws.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  127. normalws.Position = UDim2.new(0.0869565606, 0, 0.288557202, 0)
  128. normalws.Size = UDim2.new(0, 170, 0, 50)
  129. normalws.Font = Enum.Font.SciFi
  130. normalws.Text = "normal walkspeed"
  131. normalws.TextColor3 = Color3.new(0, 0, 0)
  132. normalws.TextSize = 17
  133. normalws.MouseButton1Down:connect(function()
  134. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  135. end)
  136.  
  137. sugar.Name = "sugar"
  138. sugar.Parent = main
  139. sugar.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  140. sugar.Position = UDim2.new(0.0869565606, 0, 0.378109455, 0)
  141. sugar.Size = UDim2.new(0, 170, 0, 50)
  142. sugar.Font = Enum.Font.SciFi
  143. sugar.Text = "Sugar Simulator Gui"
  144. sugar.TextColor3 = Color3.new(0, 0, 0)
  145. sugar.TextSize = 17
  146. sugar.MouseButton1Down:connect(function()
  147. -- Created by Cow
  148. -- Created: 2/5/19
  149.  
  150. -- Game: https://www.roblox.com/games/2606447854
  151. local storage = game:GetService("ReplicatedStorage")
  152.  
  153. local player = game:GetService("Players").LocalPlayer
  154.  
  155. local character = player.Character
  156.  
  157. local playerGui = player:FindFirstChild("PlayerGui")
  158.  
  159. local mouse = player:GetMouse()
  160.  
  161. local realm = "Starter"
  162. local autoTp = false
  163. local autoClick = false
  164.  
  165. local teleportLocations = {}
  166. teleportLocations[1] = {"Shop1", 221, 30, -740}
  167. teleportLocations[2] = {"Sell", 515, 29, -134}
  168. teleportLocations[3] = {"Starter", 166, 30, -718}
  169. teleportLocations[4] = {"Candyland", 57, 30, 25}
  170. teleportLocations[5] = {"Beach", 775, 37, -742}
  171. teleportLocations[6] = {"Snowtime", -393, 30, -473}
  172. teleportLocations[7] = {"Forest", 527, 29, -151}
  173.  
  174. local realms = {}
  175. realms[1] = "Starter"
  176. realms[2] = "Candyland"
  177. realms[3] = "Beach"
  178. realms[4] = "Snowtime"
  179. realms[5] = "Forest"
  180.  
  181. local sells = {}
  182. sells["Starter"] = Vector3.new(180, 30, -757)
  183. sells["Candyland"] = Vector3.new(35, 30, 12)
  184. sells["Beach"] = Vector3.new(750, 37, -745)
  185. sells["Snowtime"] = Vector3.new(407, 30, -500)
  186. sells["Forest"] = Vector3.new(515, 29, -134)
  187.  
  188. for i, v in pairs(playerGui:GetChildren()) do
  189. if v.Name == "Cow's_Sugar_Simulator_Gui" then
  190. v:Destroy()
  191. end
  192. end
  193.  
  194. local screenGui = Instance.new("ScreenGui", playerGui)
  195. screenGui.Name = "Cow's_Sugar_Simulator_Gui"
  196.  
  197. function createGui()
  198. local frame = Instance.new("Frame", screenGui)
  199. frame.Size = UDim2.new(0, -150, 0, 0)
  200. frame.Position = UDim2.new(1, -5, 0.4, 0)
  201. frame.BackgroundTransparency = 1
  202.  
  203. local teleportButton = Instance.new("TextButton", frame)
  204. teleportButton.Size = UDim2.new(1, 0, 0, 36)
  205. teleportButton.Position = UDim2.new(0, 0, 0, 0)
  206. teleportButton.Text = "Teleports"
  207. teleportButton.Font = Enum.Font.SourceSansBold
  208. teleportButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  209. teleportButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  210. teleportButton.TextScaled = true
  211.  
  212. local realmButton = Instance.new("TextButton", frame)
  213. realmButton.Size = UDim2.new(1, 0, 0, 36)
  214. realmButton.Position = UDim2.new(0, 0, 0, 41)
  215. realmButton.Text = "Realms"
  216. realmButton.Font = Enum.Font.SourceSansBold
  217. realmButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  218. realmButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  219. realmButton.TextScaled = true
  220.  
  221. teleportButton.MouseButton1Click:Connect(function()
  222. if frame:FindFirstChild("realmGui") then
  223. realmButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  224. frame:FindFirstChild("realmGui"):Destroy()
  225. end
  226. if frame:FindFirstChild("teleportGui") then
  227. teleportButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  228. frame:FindFirstChild("teleportGui"):Destroy()
  229. else
  230. teleportButton.TextColor3 = Color3.fromRGB(125, 125, 125)
  231. createTeleportGui(frame)
  232. end
  233. end)
  234.  
  235. realmButton.MouseButton1Click:Connect(function()
  236. if frame:FindFirstChild("teleportGui") then
  237. teleportButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  238. frame:FindFirstChild("teleportGui"):Destroy()
  239. end
  240. if frame:FindFirstChild("realmGui") then
  241. realmButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  242. frame:FindFirstChild("realmGui"):Destroy()
  243. else
  244. realmButton.TextColor3 = Color3.fromRGB(125, 125, 125)
  245. createRealmGui(frame)
  246. end
  247. end)
  248.  
  249. local text = Instance.new("TextLabel", frame)
  250. text.Size = UDim2.new(0.75, 0, 0, 36)
  251. text.Position = UDim2.new(0, 0, 0, 82)
  252. text.Text = "Auto TP"
  253. text.Font = Enum.Font.SourceSansBold
  254. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  255. text.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  256. text.TextScaled = true
  257.  
  258. local status = Instance.new("TextButton", frame)
  259. status.Size = UDim2.new(0.25, -5, 0, 36)
  260. status.Position = UDim2.new(0.75, 5, 0, 82)
  261. status.Text = "Off"
  262. status.Font = Enum.Font.SourceSansBold
  263. status.TextColor3 = Color3.fromRGB(255, 0, 0)
  264. status.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  265. status.TextScaled = true
  266.  
  267. status.MouseButton1Click:Connect(function()
  268. if autoTp then
  269. autoTp = false
  270. status.Text = "Off"
  271. status.TextColor3 = Color3.fromRGB(255, 0, 0)
  272. else
  273. autoTp = true
  274. status.Text = "On"
  275. status.TextColor3 = Color3.fromRGB(0, 255, 0)
  276. autoTeleportFunc()
  277. end
  278. end)
  279.  
  280. local text = Instance.new("TextLabel", frame)
  281. text.Size = UDim2.new(0.75, 0, 0, 36)
  282. text.Position = UDim2.new(0, 0, 0, 123)
  283. text.Text = "Auto Click"
  284. text.Font = Enum.Font.SourceSansBold
  285. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  286. text.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  287. text.TextScaled = true
  288.  
  289. local status = Instance.new("TextButton", frame)
  290. status.Size = UDim2.new(0.25, -5, 0, 36)
  291. status.Position = UDim2.new(0.75, 5, 0, 123)
  292. status.Text = "Off"
  293. status.Font = Enum.Font.SourceSansBold
  294. status.TextColor3 = Color3.fromRGB(255, 0, 0)
  295. status.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  296. status.TextScaled = true
  297.  
  298. status.MouseButton1Click:Connect(function()
  299. if autoClick then
  300. autoClick = false
  301. status.Text = "Off"
  302. status.TextColor3 = Color3.fromRGB(255, 0, 0)
  303. else
  304. autoClick = true
  305. status.Text = "On"
  306. status.TextColor3 = Color3.fromRGB(0, 255, 0)
  307. autoClickFunc()
  308. end
  309. end)
  310. end
  311. createGui()
  312.  
  313. function createTeleportGui(frame)
  314. local frame = Instance.new("Frame", frame)
  315. frame.Name = "teleportGui"
  316. frame.Size = frame.Parent.Size
  317. frame.Position = UDim2.new(0, -5, frame.Parent.Position.X.Scale, 0)
  318. frame.BackgroundTransparency = 1
  319.  
  320. for i, v in pairs(teleportLocations) do
  321. local text = Instance.new("TextButton", frame)
  322. text.Size = UDim2.new(1, 0, 0, 36)
  323. text.Position = UDim2.new(0, 0, 0, 41 * (i - 1))
  324. text.Text = teleportLocations[i][1]
  325. text.Font = Enum.Font.SourceSansBold
  326. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  327. text.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  328. text.TextScaled = true
  329.  
  330. text.MouseButton1Click:Connect(function()
  331. character:MoveTo(Vector3.new(teleportLocations[i][2], teleportLocations[i][3], teleportLocations[i][4]))
  332. end)
  333. end
  334. end
  335.  
  336. function createRealmGui(frame)
  337. local frame = Instance.new("Frame", frame)
  338. frame.Name = "realmGui"
  339. frame.Size = frame.Parent.Size
  340. frame.Position = UDim2.new(0, -5, frame.Parent.Position.X.Scale, 0)
  341. frame.BackgroundTransparency = 1
  342.  
  343. for i, v in pairs(realms) do
  344. local text = Instance.new("TextButton", frame)
  345. text.Size = UDim2.new(1, 0, 0, 36)
  346. text.Position = UDim2.new(0, 0, 0, 41 * (i - 1))
  347. text.Text = realms[i]
  348. text.Font = Enum.Font.SourceSansBold
  349. if realms[i] ~= realm then
  350. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  351. else
  352. text.TextColor3 = Color3.fromRGB(125, 125, 125)
  353. end
  354. text.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  355. text.TextScaled = true
  356.  
  357. text.MouseButton1Click:Connect(function()
  358. for i, v in pairs(text.Parent:GetChildren()) do
  359. v.TextColor3 = Color3.fromRGB(255, 255, 255)
  360. end
  361. text.TextColor3 = Color3.fromRGB(125, 125, 125)
  362. realm = realms[i]
  363. end)
  364. end
  365. end
  366.  
  367. local canClick = true
  368. function autoClickFunc()
  369. if autoClick and canClick then
  370. canClick = false
  371. game:GetService("ReplicatedStorage").Events.ScreenClick:FireServer()
  372. delay(1, function()
  373. canClick = true
  374. autoClickFunc()
  375. end)
  376. end
  377. end
  378.  
  379. local canTP = true
  380. function autoTeleportFunc()
  381. if autoTp and canTP then
  382. for i, v in pairs(workspace.Realms:FindFirstChild(realm).Candies:GetChildren()) do
  383. if not autoTp then
  384. return
  385. end
  386. canTP = false
  387. character:MoveTo(v.Position)
  388. wait(0.5)
  389. character:MoveTo(sells[realm])
  390. wait(1)
  391. canTP = true
  392. end
  393. if autoTp then
  394. autoTeleportFunc()
  395. end
  396. end
  397. end
  398.  
  399. --Showcased By Scelt#3641
  400. end)
  401.  
  402. arsenal.Name = "arsenal"
  403. arsenal.Parent = main
  404. arsenal.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  405. arsenal.Position = UDim2.new(0.0869565606, 0, 0.458955228, 0)
  406. arsenal.Size = UDim2.new(0, 170, 0, 50)
  407. arsenal.Font = Enum.Font.SciFi
  408. arsenal.Text = "Arsenal script"
  409. arsenal.TextColor3 = Color3.new(0, 0, 0)
  410. arsenal.TextSize = 17
  411. arsenal.MouseButton1Down:connect(function()
  412. local Vnew = Vector3.new
  413. local Cnew = CFrame.new
  414. local CAngles = CFrame.Angles
  415. local Inaccuracy = 0
  416. local mmin = math.min
  417. local mrandom = math.random
  418. local mmax = math.max
  419. local Bnew = BrickColor.new
  420. local tinsert = table.insert
  421. local mrandom = mrandom
  422. local mmax = mmax
  423. local mrad = math.rad
  424. local mfloor = math.floor
  425. local Bnew = Bnew
  426.  
  427. function randomspread(fadg)
  428. if mrandom(1, 2) == 1 then
  429. return mrandom(-fadg, -fadg / 3)
  430. else
  431. return mrandom(fadg / 3, fadg)
  432. end
  433. end
  434.  
  435. local function shoot()
  436. local Camera = game.Workspace.CurrentCamera
  437. local Char = game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name)
  438. if Char ~= nil then
  439. local Tool = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
  440. if Tool ~= nil then
  441. local ToolName = Tool.Name
  442. local gunenv = getsenv(game.Players.LocalPlayer.Character[ToolName].Gun)
  443. local gupvs = debug.getupvalues(gunenv.Fire)
  444. local Settings = gupvs.Settings
  445. local gupvsz = debug.getupvalues(gunenv.firethebox)
  446. gupvsz.Firing = true
  447. local MyPlayer = game.Players.LocalPlayer
  448. local endpos = Camera.CFrame.p + Camera.CFrame.lookVector * 999
  449. local startpos = game.Players.LocalPlayer.Character.Head.Position
  450. local Spread = CAngles(mrad(randomspread(0) / 20), mrad(randomspread(0) / 20), mrad(randomspread(0) / 20))
  451. local RayCasted = Ray.new(startpos, (Cnew(startpos, endpos) * Spread).lookVector.unit * Settings.Range)
  452. local Ray_Ignore = gupvsz.Ray_Ignore
  453. local Hit, Pos, normal = workspace:FindPartOnRayWithIgnoreList(RayCasted, Ray_Ignore, false, true)
  454. local flek = Camera.Arms.Flash.Position
  455. local FakeRayCasted = Ray.new(Camera.Arms.Flash.Position, (CFrame.new(Camera.Arms.Flash.Position, endpos) * Spread).lookVector.unit * 5)
  456. local Hit12, Pos12 = game.Workspace:FindPartOnRayWithIgnoreList(FakeRayCasted, Ray_Ignore, false, true)
  457. Tool.Gun.sv_gun.Fire:FireServer(normal, Hit, Pos, Spread, MyPlayer, startpos, endpos, 10000, 10000, 0.01, Settings.MSX, 10000, 10000, 10000, 0.01, 10000, 10000, false, Tool.Handle, ToolName, false, false, Pos12, flek)
  458. end
  459. end
  460. end
  461.  
  462. local eDown = false
  463. local input = game:GetService("UserInputService")
  464. local player = game.Players.LocalPlayer
  465.  
  466. input.InputBegan:connect(function(k)
  467. local key = k.KeyCode
  468. if key == Enum.KeyCode.E then
  469. eDown = true
  470. end
  471. end)
  472.  
  473. input.InputEnded:connect(function(k)
  474. local key = k.KeyCode
  475. if key == Enum.KeyCode.E then
  476. eDown = false
  477. end
  478. end)
  479. print("Loaded!")
  480. while wait() do
  481. if eDown then
  482. local shot, failed = pcall(shoot)
  483. if not shot then
  484. print("Error: "..failed)
  485. end
  486. end
  487. end
  488. end)
  489.  
  490. treasure.Name = "treasure"
  491. treasure.Parent = main
  492. treasure.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  493. treasure.Position = UDim2.new(0.0869565606, 0, 0.541044712, 0)
  494. treasure.Size = UDim2.new(0, 170, 0, 50)
  495. treasure.Font = Enum.Font.SciFi
  496. treasure.Text = "Treasure Hunting Alien"
  497. treasure.TextColor3 = Color3.new(0, 0, 0)
  498. treasure.TextSize = 17
  499. treasure.MouseButton1Down:connect(function()
  500. local plr = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  501. local path = game.Workspace['Alien']
  502. for i,v in pairs(path:GetChildren()) do
  503. if v.Name == 'UpperTorso' then
  504. plr.CFrame = v.CFrame
  505. end
  506. end
  507. end)
  508.  
  509. parkour.Name = "parkour"
  510. parkour.Parent = main
  511. parkour.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  512. parkour.Position = UDim2.new(0.0869565606, 0, 0.625621915, 0)
  513. parkour.Size = UDim2.new(0, 170, 0, 50)
  514. parkour.Font = Enum.Font.SciFi
  515. parkour.Text = "Sharbite Gui"
  516. parkour.TextColor3 = Color3.new(0, 0, 0)
  517. parkour.TextSize = 17
  518. parkour.MouseButton1Down:connect(function()
  519. local TPOP = Instance.new("ScreenGui")
  520. local main = Instance.new("Frame")
  521. local PT = Instance.new("TextLabel")
  522.  
  523. TPOP.Name = "TPOP"
  524. TPOP.Parent = game.CoreGui
  525. main.Name = "main"
  526. main.Parent = TPOP
  527. main.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  528. main.Position = UDim2.new(0.997280121, 0, 0.517114937, 0)
  529. main.Size = UDim2.new(0, 168, 0, 50)
  530.  
  531. PT.Name = "PT"
  532. PT.Parent = main
  533. PT.BackgroundColor3 = Color3.new(1, 1, 1)
  534. PT.BackgroundTransparency = 1
  535. PT.Position = UDim2.new(-0.00198434386, 0, 0.00943762809, 0)
  536. PT.Size = UDim2.new(0, 168, 0, 50)
  537. PT.Font = Enum.Font.SourceSansSemibold
  538. PT.Text = "Position Has Been Saved!"
  539. PT.TextColor3 = Color3.new(1, 0.666667, 0)
  540. PT.TextSize = 15
  541. PT.TextWrapped = true
  542.  
  543.  
  544. local SharkBitmeh = Instance.new("ScreenGui")
  545. local Weapons = Instance.new("Frame")
  546. local WT = Instance.new("TextLabel")
  547. local wdash = Instance.new("ImageButton")
  548. local ws = Instance.new("Frame")
  549. local ha = Instance.new("TextLabel")
  550. local has = Instance.new("TextButton")
  551. local Ro = Instance.new("TextLabel")
  552. local ros = Instance.new("TextButton")
  553. local co = Instance.new("TextLabel")
  554. local cos = Instance.new("TextButton")
  555. local ak = Instance.new("TextLabel")
  556. local aks = Instance.new("TextButton")
  557. local ray = Instance.new("TextLabel")
  558. local rays = Instance.new("TextButton")
  559. local Boats = Instance.new("Frame")
  560. local BT = Instance.new("TextLabel")
  561. local bs = Instance.new("Frame")
  562. local ya = Instance.new("TextLabel")
  563. local yas = Instance.new("TextButton")
  564. local de = Instance.new("TextLabel")
  565. local des = Instance.new("TextButton")
  566. local dy = Instance.new("TextLabel")
  567. local dys = Instance.new("TextButton")
  568. local sp = Instance.new("TextLabel")
  569. local sps = Instance.new("TextButton")
  570. local mil = Instance.new("TextLabel")
  571. local mils = Instance.new("TextButton")
  572. local bdash = Instance.new("ImageButton")
  573. local Sharks = Instance.new("Frame")
  574. local sdash = Instance.new("ImageButton")
  575. local ss = Instance.new("Frame")
  576. local sboost = Instance.new("TextLabel")
  577. local sbs = Instance.new("TextButton")
  578. local sw = Instance.new("TextLabel")
  579. local sws = Instance.new("TextButton")
  580. local sh = Instance.new("TextLabel")
  581. local shs = Instance.new("TextButton")
  582. local ksh = Instance.new("TextLabel")
  583. local kss = Instance.new("TextButton")
  584. local gsh = Instance.new("TextLabel")
  585. local gss = Instance.new("TextButton")
  586. local htsh = Instance.new("TextLabel")
  587. local htshb = Instance.new("TextButton")
  588. local st = Instance.new("TextLabel")
  589. local wmods = Instance.new("Frame")
  590. local wt = Instance.new("TextLabel")
  591. local mdash = Instance.new("ImageButton")
  592. local wmod = Instance.new("Frame")
  593. local mamm = Instance.new("TextLabel")
  594. local mas = Instance.new("TextButton")
  595. local mdam = Instance.new("TextLabel")
  596. local mds = Instance.new("TextButton")
  597. local mbdis = Instance.new("TextLabel")
  598. local bds = Instance.new("TextButton")
  599. local mbsp = Instance.new("TextLabel")
  600. local mbsel = Instance.new("TextButton")
  601.  
  602. -- Properties
  603.  
  604.  
  605.  
  606. SharkBitmeh.Name = "SharkBitmeh"
  607. SharkBitmeh.Parent = game.CoreGui
  608.  
  609. Weapons.Name = "Weapons"
  610. Weapons.Parent = SharkBitmeh
  611. Weapons.Active = true
  612. Weapons.BackgroundColor3 = Color3.new(1, 0.235294, 0.309804)
  613. Weapons.BorderSizePixel = 0
  614. Weapons.Position = UDim2.new(0.447815508, 0, -0.212713927, 0)
  615. Weapons.Size = UDim2.new(0, 197, 0, 25)
  616. Weapons.Draggable = true
  617.  
  618. WT.Name = "WT"
  619. WT.Parent = Weapons
  620. WT.BackgroundColor3 = Color3.new(1, 1, 1)
  621. WT.BackgroundTransparency = 1
  622. WT.BorderSizePixel = 2
  623. WT.Position = UDim2.new(0, 0, 0.0799999982, 0)
  624. WT.Size = UDim2.new(0, 197, 0, 22)
  625. WT.Font = Enum.Font.SourceSansLight
  626. WT.Text = "Weapons (Lobby)"
  627. WT.TextScaled = true
  628. WT.TextSize = 15
  629. WT.TextWrapped = true
  630.  
  631. wdash.Name = "wdash"
  632. wdash.Parent = Weapons
  633. wdash.BackgroundColor3 = Color3.new(1, 1, 1)
  634. wdash.BackgroundTransparency = 1
  635. wdash.Position = UDim2.new(0.876074076, 0, 0.159999996, 0)
  636. wdash.Size = UDim2.new(0, 24, 0, 18)
  637. wdash.Image = "rbxassetid://190839204"
  638.  
  639. ws.Name = "ws"
  640. ws.Parent = Weapons
  641. ws.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  642. ws.BackgroundTransparency = 0.30000001192093
  643. ws.BorderSizePixel = 0
  644. ws.Position = UDim2.new(0, 0, 1, 0)
  645. ws.Size = UDim2.new(0, 197, 0, 135)
  646.  
  647. ha.Name = "ha"
  648. ha.Parent = ws
  649. ha.BackgroundColor3 = Color3.new(1, 1, 1)
  650. ha.BackgroundTransparency = 1
  651. ha.Position = UDim2.new(0.127000004, 0, 0.0222222228, 0)
  652. ha.Size = UDim2.new(0, 172, 0, 18)
  653. ha.Font = Enum.Font.SciFi
  654. ha.Text = "Harpoon"
  655. ha.TextColor3 = Color3.new(1, 1, 1)
  656. ha.TextScaled = true
  657. ha.TextSize = 14
  658. ha.TextWrapped = true
  659. ha.TextXAlignment = Enum.TextXAlignment.Left
  660.  
  661. has.Name = "has"
  662. has.Parent = ha
  663. has.BackgroundColor3 = Color3.new(1, 1, 1)
  664. has.BackgroundTransparency = 1
  665. has.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  666. has.Size = UDim2.new(0, 25, 0, 19)
  667. has.Font = Enum.Font.SourceSans
  668. has.Text = ">"
  669. has.TextColor3 = Color3.new(1, 1, 1)
  670. has.TextSize = 27
  671. has.TextWrapped = true
  672.  
  673. Ro.Name = "Ro"
  674. Ro.Parent = ws
  675. Ro.BackgroundColor3 = Color3.new(1, 1, 1)
  676. Ro.BackgroundTransparency = 1
  677. Ro.Position = UDim2.new(0.127000004, 0, 0.155555561, 0)
  678. Ro.Size = UDim2.new(0, 172, 0, 18)
  679. Ro.Font = Enum.Font.SciFi
  680. Ro.Text = "Rocket Launcher"
  681. Ro.TextColor3 = Color3.new(1, 1, 1)
  682. Ro.TextScaled = true
  683. Ro.TextSize = 14
  684. Ro.TextWrapped = true
  685. Ro.TextXAlignment = Enum.TextXAlignment.Left
  686.  
  687. ros.Name = "ros"
  688. ros.Parent = Ro
  689. ros.BackgroundColor3 = Color3.new(1, 1, 1)
  690. ros.BackgroundTransparency = 1
  691. ros.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  692. ros.Size = UDim2.new(0, 25, 0, 19)
  693. ros.Font = Enum.Font.SourceSans
  694. ros.Text = ">"
  695. ros.TextColor3 = Color3.new(1, 1, 1)
  696. ros.TextSize = 27
  697. ros.TextWrapped = true
  698.  
  699. co.Name = "co"
  700. co.Parent = ws
  701. co.BackgroundColor3 = Color3.new(1, 1, 1)
  702. co.BackgroundTransparency = 1
  703. co.Position = UDim2.new(0.127370566, 0, 0.288888961, 0)
  704. co.Size = UDim2.new(0, 172, 0, 18)
  705. co.Font = Enum.Font.SciFi
  706. co.Text = "Commando"
  707. co.TextColor3 = Color3.new(1, 1, 1)
  708. co.TextScaled = true
  709. co.TextSize = 14
  710. co.TextWrapped = true
  711. co.TextXAlignment = Enum.TextXAlignment.Left
  712.  
  713. cos.Name = "cos"
  714. cos.Parent = co
  715. cos.BackgroundColor3 = Color3.new(1, 1, 1)
  716. cos.BackgroundTransparency = 1
  717. cos.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  718. cos.Size = UDim2.new(0, 25, 0, 19)
  719. cos.Font = Enum.Font.SourceSans
  720. cos.Text = ">"
  721. cos.TextColor3 = Color3.new(1, 1, 1)
  722. cos.TextSize = 27
  723. cos.TextWrapped = true
  724.  
  725. ak.Name = "ak"
  726. ak.Parent = ws
  727. ak.BackgroundColor3 = Color3.new(1, 1, 1)
  728. ak.BackgroundTransparency = 1
  729. ak.Position = UDim2.new(0.127370566, 0, 0.429629683, 0)
  730. ak.Size = UDim2.new(0, 172, 0, 18)
  731. ak.Font = Enum.Font.SciFi
  732. ak.Text = "AK-47"
  733. ak.TextColor3 = Color3.new(1, 1, 1)
  734. ak.TextScaled = true
  735. ak.TextSize = 14
  736. ak.TextWrapped = true
  737. ak.TextXAlignment = Enum.TextXAlignment.Left
  738.  
  739. aks.Name = "aks"
  740. aks.Parent = ak
  741. aks.BackgroundColor3 = Color3.new(1, 1, 1)
  742. aks.BackgroundTransparency = 1
  743. aks.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  744. aks.Size = UDim2.new(0, 25, 0, 19)
  745. aks.Font = Enum.Font.SourceSans
  746. aks.Text = ">"
  747. aks.TextColor3 = Color3.new(1, 1, 1)
  748. aks.TextSize = 27
  749. aks.TextWrapped = true
  750.  
  751. ray.Name = "ray"
  752. ray.Parent = ws
  753. ray.BackgroundColor3 = Color3.new(1, 1, 1)
  754. ray.BackgroundTransparency = 1
  755. ray.Position = UDim2.new(0.127370566, 0, 0.562963009, 0)
  756. ray.Size = UDim2.new(0, 172, 0, 18)
  757. ray.Font = Enum.Font.SciFi
  758. ray.Text = "Ray Gun"
  759. ray.TextColor3 = Color3.new(1, 1, 1)
  760. ray.TextScaled = true
  761. ray.TextSize = 14
  762. ray.TextWrapped = true
  763. ray.TextXAlignment = Enum.TextXAlignment.Left
  764.  
  765. rays.Name = "rays"
  766. rays.Parent = ray
  767. rays.BackgroundColor3 = Color3.new(1, 1, 1)
  768. rays.BackgroundTransparency = 1
  769. rays.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  770. rays.Size = UDim2.new(0, 25, 0, 19)
  771. rays.Font = Enum.Font.SourceSans
  772. rays.Text = ">"
  773. rays.TextColor3 = Color3.new(1, 1, 1)
  774. rays.TextSize = 27
  775. rays.TextWrapped = true
  776.  
  777. Boats.Name = "Boats"
  778. Boats.Parent = SharkBitmeh
  779. Boats.Active = true
  780. Boats.BackgroundColor3 = Color3.new(1, 0.235294, 0.309804)
  781. Boats.BorderSizePixel = 0
  782. Boats.Position = UDim2.new(0.447815508, 0, -0.212713927, 0)
  783. Boats.Size = UDim2.new(0, 197, 0, 25)
  784. Boats.Draggable = true
  785.  
  786. BT.Name = "BT"
  787. BT.Parent = Boats
  788. BT.BackgroundColor3 = Color3.new(1, 1, 1)
  789. BT.BackgroundTransparency = 1
  790. BT.BorderSizePixel = 2
  791. BT.Position = UDim2.new(0, 0, 0.0799999982, 0)
  792. BT.Size = UDim2.new(0, 173, 0, 22)
  793. BT.Font = Enum.Font.SourceSansLight
  794. BT.Text = "Boats (Boat Selection)"
  795. BT.TextScaled = true
  796. BT.TextSize = 15
  797. BT.TextWrapped = true
  798.  
  799. bs.Name = "bs"
  800. bs.Parent = Boats
  801. bs.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  802. bs.BackgroundTransparency = 0.30000001192093
  803. bs.BorderSizePixel = 0
  804. bs.Position = UDim2.new(-0.00253808498, 0, 0.959999919, 0)
  805. bs.Size = UDim2.new(0, 197, 0, 135)
  806.  
  807. ya.Name = "ya"
  808. ya.Parent = bs
  809. ya.BackgroundColor3 = Color3.new(1, 1, 1)
  810. ya.BackgroundTransparency = 1
  811. ya.Position = UDim2.new(0.126903549, 0, 0.0148148146, 0)
  812. ya.Size = UDim2.new(0, 172, 0, 18)
  813. ya.Font = Enum.Font.SciFi
  814. ya.Text = "Submarine"
  815. ya.TextColor3 = Color3.new(1, 1, 1)
  816. ya.TextScaled = true
  817. ya.TextSize = 14
  818. ya.TextWrapped = true
  819. ya.TextXAlignment = Enum.TextXAlignment.Left
  820.  
  821. yas.Name = "yas"
  822. yas.Parent = ya
  823. yas.BackgroundColor3 = Color3.new(1, 1, 1)
  824. yas.BackgroundTransparency = 1
  825. yas.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  826. yas.Size = UDim2.new(0, 25, 0, 19)
  827. yas.Font = Enum.Font.SourceSans
  828. yas.Text = ">"
  829. yas.TextColor3 = Color3.new(1, 1, 1)
  830. yas.TextSize = 27
  831. yas.TextWrapped = true
  832.  
  833. de.Name = "de"
  834. de.Parent = bs
  835. de.BackgroundColor3 = Color3.new(1, 1, 1)
  836. de.BackgroundTransparency = 1
  837. de.Position = UDim2.new(0.127000004, 0, 0.570777774, 0)
  838. de.Size = UDim2.new(0, 172, 0, 18)
  839. de.Font = Enum.Font.SciFi
  840. de.Text = "Destroyer"
  841. de.TextColor3 = Color3.new(1, 1, 1)
  842. de.TextScaled = true
  843. de.TextSize = 14
  844. de.TextWrapped = true
  845. de.TextXAlignment = Enum.TextXAlignment.Left
  846.  
  847. des.Name = "des"
  848. des.Parent = de
  849. des.BackgroundColor3 = Color3.new(1, 1, 1)
  850. des.BackgroundTransparency = 1
  851. des.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  852. des.Size = UDim2.new(0, 25, 0, 19)
  853. des.Font = Enum.Font.SourceSans
  854. des.Text = ">"
  855. des.TextColor3 = Color3.new(1, 1, 1)
  856. des.TextSize = 27
  857. des.TextWrapped = true
  858.  
  859. dy.Name = "dy"
  860. dy.Parent = bs
  861. dy.BackgroundColor3 = Color3.new(1, 1, 1)
  862. dy.BackgroundTransparency = 1
  863. dy.Position = UDim2.new(0.126903549, 0, 0.148148149, 0)
  864. dy.Size = UDim2.new(0, 172, 0, 18)
  865. dy.Font = Enum.Font.SciFi
  866. dy.Text = "Deluxe Yacht"
  867. dy.TextColor3 = Color3.new(1, 1, 1)
  868. dy.TextScaled = true
  869. dy.TextSize = 14
  870. dy.TextWrapped = true
  871. dy.TextXAlignment = Enum.TextXAlignment.Left
  872.  
  873. dys.Name = "dys"
  874. dys.Parent = dy
  875. dys.BackgroundColor3 = Color3.new(1, 1, 1)
  876. dys.BackgroundTransparency = 1
  877. dys.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  878. dys.Size = UDim2.new(0, 25, 0, 19)
  879. dys.Font = Enum.Font.SourceSans
  880. dys.Text = ">"
  881. dys.TextColor3 = Color3.new(1, 1, 1)
  882. dys.TextSize = 27
  883. dys.TextWrapped = true
  884.  
  885. sp.Name = "sp"
  886. sp.Parent = bs
  887. sp.BackgroundColor3 = Color3.new(1, 1, 1)
  888. sp.BackgroundTransparency = 1
  889. sp.Position = UDim2.new(0.127000004, 0, 0.289000005, 0)
  890. sp.Size = UDim2.new(0, 172, 0, 18)
  891. sp.Font = Enum.Font.SciFi
  892. sp.Text = "Spectre"
  893. sp.TextColor3 = Color3.new(1, 1, 1)
  894. sp.TextScaled = true
  895. sp.TextSize = 14
  896. sp.TextWrapped = true
  897. sp.TextXAlignment = Enum.TextXAlignment.Left
  898.  
  899. sps.Name = "sps"
  900. sps.Parent = sp
  901. sps.BackgroundColor3 = Color3.new(1, 1, 1)
  902. sps.BackgroundTransparency = 1
  903. sps.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  904. sps.Size = UDim2.new(0, 25, 0, 19)
  905. sps.Font = Enum.Font.SourceSans
  906. sps.Text = ">"
  907. sps.TextColor3 = Color3.new(1, 1, 1)
  908. sps.TextSize = 27
  909. sps.TextWrapped = true
  910.  
  911. mil.Name = "mil"
  912. mil.Parent = bs
  913. mil.BackgroundColor3 = Color3.new(1, 1, 1)
  914. mil.BackgroundTransparency = 1
  915. mil.Position = UDim2.new(0.127000004, 0, 0.437000036, 0)
  916. mil.Size = UDim2.new(0, 172, 0, 18)
  917. mil.Font = Enum.Font.SciFi
  918. mil.Text = "Military Boat"
  919. mil.TextColor3 = Color3.new(1, 1, 1)
  920. mil.TextScaled = true
  921. mil.TextSize = 14
  922. mil.TextWrapped = true
  923. mil.TextXAlignment = Enum.TextXAlignment.Left
  924.  
  925. mils.Name = "mils"
  926. mils.Parent = mil
  927. mils.BackgroundColor3 = Color3.new(1, 1, 1)
  928. mils.BackgroundTransparency = 1
  929. mils.Position = UDim2.new(-0.145348832, 0, -7.4505806e-09, 0)
  930. mils.Size = UDim2.new(0, 25, 0, 19)
  931. mils.Font = Enum.Font.SourceSans
  932. mils.Text = ">"
  933. mils.TextColor3 = Color3.new(1, 1, 1)
  934. mils.TextSize = 27
  935. mils.TextWrapped = true
  936.  
  937. bdash.Name = "bdash"
  938. bdash.Parent = Boats
  939. bdash.BackgroundColor3 = Color3.new(1, 1, 1)
  940. bdash.BackgroundTransparency = 1
  941. bdash.Position = UDim2.new(0.876074076, 0, 0.159999996, 0)
  942. bdash.Size = UDim2.new(0, 24, 0, 18)
  943. bdash.Image = "rbxassetid://190839204"
  944.  
  945. Sharks.Name = "Sharks"
  946. Sharks.Parent = SharkBitmeh
  947. Sharks.Active = true
  948. Sharks.BackgroundColor3 = Color3.new(1, 0.235294, 0.309804)
  949. Sharks.BorderSizePixel = 0
  950. Sharks.Position = UDim2.new(0.447815508, 0, -0.212713927, 0)
  951. Sharks.Size = UDim2.new(0, 197, 0, 25)
  952. Sharks.Draggable = true
  953.  
  954. sdash.Name = "sdash"
  955. sdash.Parent = Sharks
  956. sdash.BackgroundColor3 = Color3.new(1, 1, 1)
  957. sdash.BackgroundTransparency = 1
  958. sdash.Position = UDim2.new(0.876074076, 0, 0.159999996, 0)
  959. sdash.Size = UDim2.new(0, 24, 0, 18)
  960. sdash.Image = "rbxassetid://190839204"
  961.  
  962. ss.Name = "ss"
  963. ss.Parent = Sharks
  964. ss.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  965. ss.BackgroundTransparency = 0.30000001192093
  966. ss.BorderSizePixel = 0
  967. ss.Position = UDim2.new(0, 0, 0.959999919, 0)
  968. ss.Size = UDim2.new(0, 197, 0, 135)
  969.  
  970. sboost.Name = "sboost"
  971. sboost.Parent = ss
  972. sboost.BackgroundColor3 = Color3.new(1, 1, 1)
  973. sboost.BackgroundTransparency = 1
  974. sboost.Position = UDim2.new(0.127000004, 0, 0.0219999999, 0)
  975. sboost.Size = UDim2.new(0, 172, 0, 18)
  976. sboost.Font = Enum.Font.SciFi
  977. sboost.Text = "Supa Speed"
  978. sboost.TextColor3 = Color3.new(1, 1, 1)
  979. sboost.TextScaled = true
  980. sboost.TextSize = 14
  981. sboost.TextWrapped = true
  982. sboost.TextXAlignment = Enum.TextXAlignment.Left
  983.  
  984. sbs.Name = "sbs"
  985. sbs.Parent = sboost
  986. sbs.BackgroundColor3 = Color3.new(1, 1, 1)
  987. sbs.BackgroundTransparency = 1
  988. sbs.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  989. sbs.Size = UDim2.new(0, 25, 0, 19)
  990. sbs.Font = Enum.Font.SourceSans
  991. sbs.Text = ">"
  992. sbs.TextColor3 = Color3.new(1, 1, 1)
  993. sbs.TextSize = 27
  994. sbs.TextWrapped = true
  995.  
  996. sw.Name = "sw"
  997. sw.Parent = ss
  998. sw.BackgroundColor3 = Color3.new(1, 1, 1)
  999. sw.BackgroundTransparency = 1
  1000. sw.Position = UDim2.new(0.127000004, 0, 0.162740737, 0)
  1001. sw.Size = UDim2.new(0, 172, 0, 18)
  1002. sw.Font = Enum.Font.SciFi
  1003. sw.Text = "Hammer Head"
  1004. sw.TextColor3 = Color3.new(1, 1, 1)
  1005. sw.TextScaled = true
  1006. sw.TextSize = 14
  1007. sw.TextWrapped = true
  1008. sw.TextXAlignment = Enum.TextXAlignment.Left
  1009.  
  1010. sws.Name = "sws"
  1011. sws.Parent = sw
  1012. sws.BackgroundColor3 = Color3.new(1, 1, 1)
  1013. sws.BackgroundTransparency = 1
  1014. sws.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1015. sws.Size = UDim2.new(0, 25, 0, 19)
  1016. sws.Font = Enum.Font.SourceSans
  1017. sws.Text = ">"
  1018. sws.TextColor3 = Color3.new(1, 1, 1)
  1019. sws.TextSize = 27
  1020. sws.TextWrapped = true
  1021.  
  1022. sh.Name = "sh"
  1023. sh.Parent = ss
  1024. sh.BackgroundColor3 = Color3.new(1, 1, 1)
  1025. sh.BackgroundTransparency = 1
  1026. sh.Position = UDim2.new(0.127000004, 0, 0.296074092, 0)
  1027. sh.Size = UDim2.new(0, 172, 0, 18)
  1028. sh.Font = Enum.Font.SciFi
  1029. sh.Text = "Megaladon"
  1030. sh.TextColor3 = Color3.new(1, 1, 1)
  1031. sh.TextScaled = true
  1032. sh.TextSize = 14
  1033. sh.TextWrapped = true
  1034. sh.TextXAlignment = Enum.TextXAlignment.Left
  1035.  
  1036. shs.Name = "shs"
  1037. shs.Parent = sh
  1038. shs.BackgroundColor3 = Color3.new(1, 1, 1)
  1039. shs.BackgroundTransparency = 1
  1040. shs.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1041. shs.Size = UDim2.new(0, 25, 0, 19)
  1042. shs.Font = Enum.Font.SourceSans
  1043. shs.Text = ">"
  1044. shs.TextColor3 = Color3.new(1, 1, 1)
  1045. shs.TextSize = 27
  1046. shs.TextWrapped = true
  1047.  
  1048. ksh.Name = "ksh"
  1049. ksh.Parent = ss
  1050. ksh.BackgroundColor3 = Color3.new(1, 1, 1)
  1051. ksh.BackgroundTransparency = 1
  1052. ksh.Position = UDim2.new(0.127000004, 0, 0.436814845, 0)
  1053. ksh.Size = UDim2.new(0, 172, 0, 18)
  1054. ksh.Font = Enum.Font.SciFi
  1055. ksh.Text = "Kill the Shark"
  1056. ksh.TextColor3 = Color3.new(1, 1, 1)
  1057. ksh.TextScaled = true
  1058. ksh.TextSize = 14
  1059. ksh.TextWrapped = true
  1060. ksh.TextXAlignment = Enum.TextXAlignment.Left
  1061.  
  1062. kss.Name = "kss"
  1063. kss.Parent = ksh
  1064. kss.BackgroundColor3 = Color3.new(1, 1, 1)
  1065. kss.BackgroundTransparency = 1
  1066. kss.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1067. kss.Size = UDim2.new(0, 25, 0, 19)
  1068. kss.Font = Enum.Font.SourceSans
  1069. kss.Text = ">"
  1070. kss.TextColor3 = Color3.new(1, 1, 1)
  1071. kss.TextSize = 27
  1072. kss.TextWrapped = true
  1073.  
  1074. gsh.Name = "gsh"
  1075. gsh.Parent = ss
  1076. gsh.BackgroundColor3 = Color3.new(1, 1, 1)
  1077. gsh.BackgroundTransparency = 1
  1078. gsh.Position = UDim2.new(0.127000004, 0, 0.57014817, 0)
  1079. gsh.Size = UDim2.new(0, 172, 0, 18)
  1080. gsh.Font = Enum.Font.SciFi
  1081. gsh.Text = "God Shark"
  1082. gsh.TextColor3 = Color3.new(1, 1, 1)
  1083. gsh.TextScaled = true
  1084. gsh.TextSize = 14
  1085. gsh.TextWrapped = true
  1086. gsh.TextXAlignment = Enum.TextXAlignment.Left
  1087.  
  1088. gss.Name = "gss"
  1089. gss.Parent = gsh
  1090. gss.BackgroundColor3 = Color3.new(1, 1, 1)
  1091. gss.BackgroundTransparency = 1
  1092. gss.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1093. gss.Size = UDim2.new(0, 25, 0, 19)
  1094. gss.Font = Enum.Font.SourceSans
  1095. gss.Text = ">"
  1096. gss.TextColor3 = Color3.new(1, 1, 1)
  1097. gss.TextSize = 27
  1098. gss.TextWrapped = true
  1099.  
  1100. htsh.Name = "htsh"
  1101. htsh.Parent = ss
  1102. htsh.BackgroundColor3 = Color3.new(1, 1, 1)
  1103. htsh.BackgroundTransparency = 1
  1104. htsh.Position = UDim2.new(.127000004, 0, 0.703481495)
  1105. htsh.Size = UDim2.new(0, 172, 0, 18)
  1106. htsh.Font = Enum.Font.SciFi
  1107. htsh.Text = "Big Shark Hitbox"
  1108. htsh.TextColor3 = Color3.new(1, 1, 1)
  1109. htsh.TextScaled = true
  1110. htsh.TextSize = 14
  1111. htsh.TextWrapped = true
  1112. htsh.TextXAlignment = Enum.TextXAlignment.Left
  1113.  
  1114. htshb.Name = "htshb"
  1115. htshb.Parent = htsh
  1116. htshb.BackgroundColor3 = Color3.new(1, 1, 1)
  1117. htshb.BackgroundTransparency = 1
  1118. htshb.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1119. htshb.Size = UDim2.new(0, 25, 0, 19)
  1120. htshb.Font = Enum.Font.SourceSans
  1121. htshb.Text = ">"
  1122. htshb.TextColor3 = Color3.new(1, 1, 1)
  1123. htshb.TextSize = 27
  1124. htshb.TextWrapped = true
  1125.  
  1126. st.Name = "st"
  1127. st.Parent = Sharks
  1128. st.BackgroundColor3 = Color3.new(1, 1, 1)
  1129. st.BackgroundTransparency = 1
  1130. st.BorderSizePixel = 2
  1131. st.Position = UDim2.new(0, 0, 0.0799999982, 0)
  1132. st.Size = UDim2.new(0, 197, 0, 20)
  1133. st.Font = Enum.Font.SourceSansLight
  1134. st.Text = "Shark Settings"
  1135. st.TextScaled = true
  1136. st.TextSize = 15
  1137. st.TextWrapped = true
  1138.  
  1139. wmods.Name = "wmods"
  1140. wmods.Parent = SharkBitmeh
  1141. wmods.Active = true
  1142. wmods.BackgroundColor3 = Color3.new(1, 0.235294, 0.309804)
  1143. wmods.BorderSizePixel = 0
  1144. wmods.Position = UDim2.new(0.447815508, 0, -0.212713927, 0)
  1145. wmods.Size = UDim2.new(0, 197, 0, 25)
  1146. wmods.Draggable = true
  1147.  
  1148. wt.Name = "wt"
  1149. wt.Parent = wmods
  1150. wt.BackgroundColor3 = Color3.new(1, 1, 1)
  1151. wt.BackgroundTransparency = 1
  1152. wt.BorderSizePixel = 2
  1153. wt.Position = UDim2.new(0, 0, 0.0799999237, 0)
  1154. wt.Size = UDim2.new(0, 197, 0, 20)
  1155. wt.Font = Enum.Font.SourceSansLight
  1156. wt.Text = "Weapon Mods"
  1157. wt.TextScaled = true
  1158. wt.TextSize = 15
  1159. wt.TextWrapped = true
  1160.  
  1161. mdash.Name = "mdash"
  1162. mdash.Parent = wmods
  1163. mdash.BackgroundColor3 = Color3.new(1, 1, 1)
  1164. mdash.BackgroundTransparency = 1
  1165. mdash.Position = UDim2.new(0.876074076, 0, 0.159999996, 0)
  1166. mdash.Size = UDim2.new(0, 24, 0, 18)
  1167. mdash.Image = "rbxassetid://190839204"
  1168.  
  1169. wmod.Name = "wmod"
  1170. wmod.Parent = wmods
  1171. wmod.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  1172. wmod.BackgroundTransparency = 0.30000001192093
  1173. wmod.BorderSizePixel = 0
  1174. wmod.Position = UDim2.new(0, 0, 0.959999919, 0)
  1175. wmod.Size = UDim2.new(0, 197, 0, 135)
  1176.  
  1177. mamm.Name = "mamm"
  1178. mamm.Parent = wmod
  1179. mamm.BackgroundColor3 = Color3.new(1, 1, 1)
  1180. mamm.BackgroundTransparency = 1
  1181. mamm.Position = UDim2.new(0.127000004, 0, 0.0219999999, 0)
  1182. mamm.Size = UDim2.new(0, 172, 0, 18)
  1183. mamm.Font = Enum.Font.SciFi
  1184. mamm.Text = "Inf Ammo"
  1185. mamm.TextColor3 = Color3.new(1, 1, 1)
  1186. mamm.TextScaled = true
  1187. mamm.TextSize = 14
  1188. mamm.TextWrapped = true
  1189. mamm.TextXAlignment = Enum.TextXAlignment.Left
  1190.  
  1191. mas.Name = "mas"
  1192. mas.Parent = mamm
  1193. mas.BackgroundColor3 = Color3.new(1, 1, 1)
  1194. mas.BackgroundTransparency = 1
  1195. mas.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1196. mas.Size = UDim2.new(0, 25, 0, 19)
  1197. mas.Font = Enum.Font.SourceSans
  1198. mas.Text = ">"
  1199. mas.TextColor3 = Color3.new(1, 1, 1)
  1200. mas.TextSize = 27
  1201. mas.TextWrapped = true
  1202.  
  1203. mdam.Name = "mdam"
  1204. mdam.Parent = wmod
  1205. mdam.BackgroundColor3 = Color3.new(1, 1, 1)
  1206. mdam.BackgroundTransparency = 1
  1207. mdam.Position = UDim2.new(0.127000004, 0, 0.148000002, 0)
  1208. mdam.Size = UDim2.new(0, 172, 0, 18)
  1209. mdam.Font = Enum.Font.SciFi
  1210. mdam.Text = "Insta-Kill"
  1211. mdam.TextColor3 = Color3.new(1, 1, 1)
  1212. mdam.TextScaled = true
  1213. mdam.TextSize = 14
  1214. mdam.TextWrapped = true
  1215. mdam.TextXAlignment = Enum.TextXAlignment.Left
  1216.  
  1217. mds.Name = "mds"
  1218. mds.Parent = mdam
  1219. mds.BackgroundColor3 = Color3.new(1, 1, 1)
  1220. mds.BackgroundTransparency = 1
  1221. mds.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1222. mds.Size = UDim2.new(0, 25, 0, 19)
  1223. mds.Font = Enum.Font.SourceSans
  1224. mds.Text = ">"
  1225. mds.TextColor3 = Color3.new(1, 1, 1)
  1226. mds.TextSize = 27
  1227. mds.TextWrapped = true
  1228.  
  1229. mbdis.Name = "mbdis"
  1230. mbdis.Parent = wmod
  1231. mbdis.BackgroundColor3 = Color3.new(1, 1, 1)
  1232. mbdis.BackgroundTransparency = 1
  1233. mbdis.Position = UDim2.new(0.127000004, 0, 0.437000006, 0)
  1234. mbdis.Size = UDim2.new(0, 172, 0, 18)
  1235. mbdis.Font = Enum.Font.SciFi
  1236. mbdis.Text = "Max Bullet Range"
  1237. mbdis.TextColor3 = Color3.new(1, 1, 1)
  1238. mbdis.TextScaled = true
  1239. mbdis.TextSize = 14
  1240. mbdis.TextWrapped = true
  1241. mbdis.TextXAlignment = Enum.TextXAlignment.Left
  1242.  
  1243. bds.Name = "bds"
  1244. bds.Parent = mbdis
  1245. bds.BackgroundColor3 = Color3.new(1, 1, 1)
  1246. bds.BackgroundTransparency = 1
  1247. bds.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1248. bds.Size = UDim2.new(0, 25, 0, 19)
  1249. bds.Font = Enum.Font.SourceSans
  1250. bds.Text = ">"
  1251. bds.TextColor3 = Color3.new(1, 1, 1)
  1252. bds.TextSize = 27
  1253. bds.TextWrapped = true
  1254.  
  1255. mbsp.Name = "mbsp"
  1256. mbsp.Parent = wmod
  1257. mbsp.BackgroundColor3 = Color3.new(1, 1, 1)
  1258. mbsp.BackgroundTransparency = 1
  1259. mbsp.Position = UDim2.new(0.127000004, 0, 0.289000005, 0)
  1260. mbsp.Size = UDim2.new(0, 172, 0, 18)
  1261. mbsp.Font = Enum.Font.SciFi
  1262. mbsp.Text = "High Bullet Speed"
  1263. mbsp.TextColor3 = Color3.new(1, 1, 1)
  1264. mbsp.TextScaled = true
  1265. mbsp.TextSize = 14
  1266. mbsp.TextWrapped = true
  1267. mbsp.TextXAlignment = Enum.TextXAlignment.Left
  1268.  
  1269. mbsel.Name = "mbsel"
  1270. mbsel.Parent = mbsp
  1271. mbsel.BackgroundColor3 = Color3.new(1, 1, 1)
  1272. mbsel.BackgroundTransparency = 1
  1273. mbsel.Position = UDim2.new(-0.145348832, 0, -0.166666672, 0)
  1274. mbsel.Size = UDim2.new(0, 25, 0, 19)
  1275. mbsel.Font = Enum.Font.SourceSans
  1276. mbsel.Text = ">"
  1277. mbsel.TextColor3 = Color3.new(1, 1, 1)
  1278. mbsel.TextSize = 27
  1279. mbsel.TextWrapped = true
  1280.  
  1281. -- Scripts
  1282.  
  1283. GreatWhite = false
  1284. LocalPlayer = game.Players.LocalPlayer.Name
  1285.  
  1286.  
  1287. Weapons:TweenPosition(UDim2.new(0.362894863, 0, 0.13691932, 0), "In")
  1288. Boats:TweenPosition(UDim2.new(0.476935029, 0, 0.13691932, 0), "In")
  1289. Sharks:TweenPosition(UDim2.new(0.590979397, 0, 0.136308074, 0), "In")
  1290. wmods:TweenPosition(UDim2.new(0.705733478, 0, 0.136308074, 0), "In")
  1291.  
  1292. function onKeyPress(inputObject, gameProcessedEvent)
  1293. if inputObject.KeyCode == Enum.KeyCode.RightControl then
  1294. if SharkBitmeh.Enabled == true then
  1295. Boats:TweenPosition(UDim2.new(0.447815508, 0, -0.212713927, 0), "Out")
  1296. Sharks:TweenPosition(UDim2.new(0.447815508, 0, -0.212713927, 0), "Out")
  1297. Weapons:TweenPosition(UDim2.new(0.447815508, 0, -0.212713927, 0), "Out")
  1298. wmods:TweenPosition(UDim2.new(0.447815508, 0, -0.212713927, 0), "Out")
  1299. repeat
  1300. wait()
  1301. if Boats.Position == UDim2.new(0.447815508, 0, -0.212713927, 0) then
  1302. SharkBitmeh.Enabled = false
  1303. end
  1304. until Boats.Position == UDim2.new(0.447815508, 0, -0.212713927, 0)
  1305. else
  1306. SharkBitmeh.Enabled = true
  1307. Boats:TweenPosition(UDim2.new(0.476935029, 0, 0.13691932, 0), "In")
  1308. Sharks:TweenPosition(UDim2.new(0.590979397, 0, 0.136308074, 0), "In")
  1309. Weapons:TweenPosition(UDim2.new(0.362894863, 0, 0.13691932, 0), "In")
  1310. wmods:TweenPosition(UDim2.new(0.705733478, 0, 0.136308074, 0), "In")
  1311. end
  1312. end
  1313. end
  1314. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1315.  
  1316.  
  1317. function guns(gun)
  1318. local remote = Game["Workspace"]["Events"]["Shop"]["ChangeActiveGun"]
  1319. local args = {
  1320. [1] = gun
  1321. }
  1322. remote:FireServer(unpack(args))
  1323. end
  1324.  
  1325. function boats(boat)
  1326. local remote = Game["Workspace"]["Events"]["MatchMaking"]["PartyChange"]
  1327. local args = {
  1328. [1] = {
  1329. Guests = {},
  1330. Owner = LocalPlayer,
  1331. IsInOtherParty = "",
  1332. BoatId = boat
  1333. }
  1334. }
  1335. remote:FireServer(unpack(args))
  1336. end
  1337.  
  1338. function gmods(mod)
  1339. -- Synapse Only
  1340. -- Made by: Mod3rn#1999
  1341. -- Using Racist Dolphin#5199 Dev Console <3
  1342.  
  1343. local ps = game:GetService("Players")
  1344. local i = game:GetService("UserInputService")
  1345. local r = game:GetService("RunService")
  1346. local cg = game:GetService("CoreGui")
  1347. local p = ps.LocalPlayer
  1348. local c = p.Character
  1349. local b = p:FindFirstChild("Backpack") or p:WaitForChild("Backpack")
  1350. local mo = p:GetMouse()
  1351.  
  1352. p.CharacterAdded:connect(function(char)
  1353. c = char
  1354. end)
  1355.  
  1356. local m = getrawmetatable(game)
  1357. make_writeable(m)
  1358.  
  1359. local oldindex = m.__index
  1360. local oldnamecall = m.__namecall
  1361.  
  1362. m.__namecall = function(...)
  1363. local t = {...}
  1364. local method = t[#t]
  1365.  
  1366. if method == "Play" then
  1367. local env = getfenv(2)
  1368. if env.script then
  1369. if env.script.Parent ~= nil then
  1370.  
  1371. debug.setupvalue(2, mod, math.huge)
  1372. end
  1373. end
  1374. end
  1375.  
  1376. return oldnamecall(...)
  1377. end
  1378. end
  1379.  
  1380. function speedb(num)
  1381. local ps = game:GetService("Players")
  1382. local i = game:GetService("UserInputService")
  1383. local r = game:GetService("RunService")
  1384. local cg = game:GetService("CoreGui")
  1385. local p = ps.LocalPlayer
  1386. local c = p.Character
  1387. local b = p:FindFirstChild("Backpack") or p:WaitForChild("Backpack")
  1388. local mo = p:GetMouse()
  1389.  
  1390. p.CharacterAdded:connect(function(char)
  1391. c = char
  1392. end)
  1393.  
  1394. local m = getrawmetatable(game)
  1395. make_writeable(m)
  1396.  
  1397. local oldindex = m.__index
  1398. local oldnamecall = m.__namecall
  1399.  
  1400. m.__namecall = function(...)
  1401. local t = {...}
  1402. local method = t[#t]
  1403.  
  1404. if method == "FindFirstChild" then
  1405. if t[2] == "SharkBoost" then
  1406. local env = getfenv(2)
  1407. if env.script then
  1408. if env.script.Parent ~= nil then
  1409. debug.setupvalue(2, "speed", num)
  1410. end
  1411. end
  1412. end
  1413. end
  1414.  
  1415. return oldnamecall(...)
  1416. end
  1417. end
  1418.  
  1419. bdash.MouseButton1Down:connect(function()
  1420. if bs.Size == UDim2.new(0, 197, 0, 135) then
  1421. bdash.Rotation = 90
  1422. bs:TweenSize(UDim2.new(0, 197, 0, 0), "In")
  1423. repeat
  1424. wait()
  1425. if bs.Size == UDim2.new(0, 197, 0, 0) then
  1426. bs.Visible = false
  1427. end
  1428. until bs.Size == UDim2.new(0, 197, 0, 0)
  1429. else
  1430. bs.Visible = true
  1431. wait()
  1432. bs:TweenSize(UDim2.new(0, 197, 0, 135), "Out")
  1433. bdash.Rotation = 0
  1434. end
  1435. end)
  1436.  
  1437. sdash.MouseButton1Down:connect(function()
  1438. if ss.Size == UDim2.new(0, 197, 0, 135) then
  1439. sdash.Rotation = 90
  1440. ss:TweenSize(UDim2.new(0, 197, 0, 0), "In")
  1441. repeat
  1442. wait()
  1443. if ss.Size == UDim2.new(0, 197, 0, 0) then
  1444. ss.Visible = false
  1445. end
  1446. until ss.Size == UDim2.new(0, 197, 0, 0)
  1447. else
  1448. ss.Visible = true
  1449. wait()
  1450. ss:TweenSize(UDim2.new(0, 197, 0, 135), "Out")
  1451. sdash.Rotation = 0
  1452. end
  1453. end)
  1454.  
  1455. wdash.MouseButton1Down:connect(function()
  1456. if ws.Size == UDim2.new(0, 197, 0, 135) then
  1457. wdash.Rotation = 90
  1458. ws:TweenSize(UDim2.new(0, 197, 0, 0), "In")
  1459. repeat
  1460. wait()
  1461. if ws.Size == UDim2.new(0, 197, 0, 0) then
  1462. ws.Visible = false
  1463. end
  1464. until ws.Size == UDim2.new(0, 197, 0, 0)
  1465. else
  1466. ws.Visible = true
  1467. wait()
  1468. ws:TweenSize(UDim2.new(0, 197, 0, 135), "Out")
  1469. wdash.Rotation = 0
  1470. end
  1471. end)
  1472.  
  1473. mdash.MouseButton1Down:connect(function()
  1474. if wmod.Size == UDim2.new(0, 197, 0, 135) then
  1475. mdash.Rotation = 90
  1476. wmod:TweenSize(UDim2.new(0, 197, 0, 0), "In")
  1477. repeat
  1478. wait()
  1479. if wmod.Size == UDim2.new(0, 197, 0, 0) then
  1480. wmod.Visible = false
  1481. end
  1482. until wmod.Size == UDim2.new(0, 197, 0, 0)
  1483. else
  1484. wmod.Visible = true
  1485. wait()
  1486. wmod:TweenSize(UDim2.new(0, 197, 0, 135), "Out")
  1487. mdash.Rotation = 0
  1488. end
  1489. end)
  1490.  
  1491. aks.MouseButton1Click:connect(function()
  1492. guns("AK-47")
  1493. end)
  1494.  
  1495. cos.MouseButton1Click:connect(function()
  1496. guns("Commando")
  1497. end)
  1498.  
  1499. ros.MouseButton1Click:connect(function()
  1500. guns("Rocket")
  1501. end)
  1502.  
  1503. has.MouseButton1Click:connect(function()
  1504. guns("Harpoon")
  1505. end)
  1506.  
  1507. rays.MouseButton1Click:connect(function()
  1508. guns("Ray Gun")
  1509. end)
  1510.  
  1511. des.MouseButton1Click:connect(function()
  1512. boats(19)
  1513. end)
  1514.  
  1515. dys.MouseButton1Click:connect(function()
  1516. boats(8)
  1517. end)
  1518.  
  1519. mils.MouseButton1Click:connect(function()
  1520. boats(12)
  1521. end)
  1522.  
  1523. sps.MouseButton1Click:connect(function()
  1524. boats(9)
  1525. end)
  1526.  
  1527. yas.MouseButton1Click:connect(function()
  1528. boats(25)
  1529. end)
  1530.  
  1531. mas.MouseButton1Click:connect(function()
  1532. gmods("maxAmmo")
  1533. end)
  1534.  
  1535. bds.MouseButton1Click:connect(function()
  1536. gmods("distance")
  1537. end)
  1538.  
  1539. mbsel.MouseButton1Click:connect(function()
  1540. gmods("speed")
  1541. end)
  1542.  
  1543. mds.MouseButton1Click:connect(function()
  1544. gmods("damage")
  1545. end)
  1546.  
  1547. sbs.MouseButton1Click:connect(function()
  1548. ---------------------- Shark Boost
  1549. speedb(999)
  1550. sbs.TextColor3 = Color3.new(1, 0.2, 0.345098)
  1551. end)
  1552.  
  1553. sws.MouseButton1Click:connect(function()
  1554. local remote = Game["Workspace"]["Events"]["Shop"]["ChangeActiveShark"]
  1555. local args = {
  1556. [1] = "HammerHead"
  1557. }
  1558. remote:FireServer(unpack(args))
  1559. sws.TextColor3 = Color3.new(1, 0.2, 0.345098)
  1560. shs.TextColor3 = Color3.new(255, 255, 255)
  1561. end)
  1562.  
  1563. shs.MouseButton1Click:connect(function()
  1564. local remote = Game["Workspace"]["Events"]["Shop"]["ChangeActiveShark"]
  1565. local args = {
  1566. [1] = "Megaladon"
  1567. }
  1568. remote:FireServer(unpack(args))
  1569. shs.TextColor3 = Color3.new(1, 0.2, 0.345098)
  1570. sws.TextColor3 = Color3.new(255, 255, 255)
  1571. end)
  1572.  
  1573. print("No matter how much I try to give credit to myself, people still don't know who created this script, Mod3rnWeird diddddddd")
  1574.  
  1575. kss.MouseButton1Click:connect(function()
  1576. -- Creds to RelentlessRaptor#5709
  1577. for _, v in pairs(game.Players:GetChildren()) do
  1578. if v.TeamColor == game.Teams.Shark.TeamColor then
  1579. for i = 1, 10000 do
  1580. game.Workspace.Events.Projectiles.HealthChange:FireServer(v.Name, 20000, i)
  1581. end
  1582. end
  1583. end
  1584. kss.TextColor3 = Color3.new(1, 0.2, 0.345098)
  1585. wait(2)
  1586. kss.TextColor3 = Color3.new(255, 255, 255)
  1587. end)
  1588.  
  1589.  
  1590.  
  1591.  
  1592. gss.MouseButton1Click:connect(function()
  1593. -- Creds to RelentlessRaptor#5709
  1594. for i, v in pairs(game.Players:GetChildren()) do
  1595. if v.TeamColor == game.Teams.Shark.TeamColor then
  1596. for i = 1, 10000 do
  1597. game.Workspace.Events.Projectiles.HealthChange:FireServer(game.Players.LocalPlayer.Name, -200000, i)
  1598. end
  1599. end
  1600. end
  1601. gss.TextColor3 = Color3.new(1, 0.2, 0.345098)
  1602. repeat
  1603. wait()
  1604. if game.Players.LocalPlayer.Team ~= game.Teams.Shark then
  1605. gss.TextColor3 = Color3.new(255, 255, 255)
  1606. end
  1607. until game.Players.LocalPlayer.Team ~= game.Teams.Shark
  1608. end)
  1609. function getShark()
  1610. for i, v in pairs(game.Players:GetChildren()) do
  1611. if v.Team.Name == "Shark" then
  1612. Sharkee = v.Name
  1613. end
  1614. end
  1615.  
  1616. SharkDud = "Shark"..Sharkee
  1617. SharkPath = game.Workspace.Sharks[SharkDud]
  1618. end
  1619.  
  1620.  
  1621. htshb.MouseButton1Click:connect(function()
  1622. --creds to my amazing self;)
  1623.  
  1624. getShark()
  1625. SharkPath.Kill.Size = Vector3.new(999, 999, 999)
  1626. end)
  1627.  
  1628.  
  1629.  
  1630.  
  1631. PT.Text = "Updated! ~ also made by Mod3rnWeird"
  1632.  
  1633. wait(2)
  1634.  
  1635. main:TweenPosition(UDim2.new(0.911181152, 0, 0.517114937, 0), "Out")
  1636.  
  1637. wait(5)
  1638.  
  1639. main:TweenPosition(UDim2.new(0.99728012, 0, 0.517114937, 0), "In")
  1640.  
  1641. wait(2)
  1642.  
  1643. PT.Text = "Added Submarine, Megaladon, Shark Hitbox, ohhhh and Rainbow"
  1644.  
  1645. wait(2)
  1646.  
  1647. main:TweenPosition(UDim2.new(0.911181152, 0, 0.517114937, 0), "Out")
  1648.  
  1649. wait(5)
  1650.  
  1651. main:TweenPosition(UDim2.new(0.99728012, 0, 0.517114937, 0), "In")
  1652.  
  1653. wait (2)
  1654.  
  1655. PT.Text = "Vouch on V3rm @Mod3rnWeird"
  1656.  
  1657. wait(2)
  1658.  
  1659. main:TweenPosition(UDim2.new(0.911181152, 0, 0.517114937, 0), "Out")
  1660.  
  1661. wait(5)
  1662.  
  1663. main:TweenPosition(UDim2.new(0.99728012, 0, 0.517114937, 0), "In")
  1664.  
  1665. wait(2)
  1666.  
  1667. TPOP:Destroy()
  1668.  
  1669. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  1670.  
  1671. counter = 0
  1672.  
  1673. loopfunc = true
  1674. looped = true
  1675.  
  1676. if loopfunc == true then
  1677. while looped == true do
  1678. wait(0.1)
  1679. Weapons.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  1680. Boats.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  1681. Sharks.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  1682. wmods.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  1683.  
  1684. counter = counter + 0.01
  1685. end
  1686. end
  1687. end)
  1688.  
  1689. arsenalgui.Name = "arsenalgui"
  1690. arsenalgui.Parent = main
  1691. arsenalgui.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  1692. arsenalgui.Position = UDim2.new(0.0869565606, 0, 0.708955169, 0)
  1693. arsenalgui.Size = UDim2.new(0, 170, 0, 50)
  1694. arsenalgui.Font = Enum.Font.SciFi
  1695. arsenalgui.Text = "Arsenal Gui"
  1696. arsenalgui.TextColor3 = Color3.new(0, 0, 0)
  1697. arsenalgui.TextSize = 17
  1698. arsenalgui.MouseButton1Down:connect(function()
  1699. -- Catshac is gay
  1700. -- ^^ Probably going to steal this video idea
  1701.  
  1702. local plrs = game:GetService("Players")
  1703. local TeamBased = true ; local teambasedswitch = "o"
  1704. local presskeytoaim = true; local aimkey = "e"
  1705. local raycast = false
  1706.  
  1707. local espupdatetime = 5; autoesp = false
  1708.  
  1709.  
  1710.  
  1711. local lockaim = true; local lockangle = 5
  1712.  
  1713.  
  1714.  
  1715. --function findwat(folder, what)
  1716. -- for i, smth in pairs(folder:GetChildren()) do
  1717. -- if string.find(string.lower(tostring(smth)), string.lower(what)) then
  1718. -- return smth
  1719. -- end
  1720. -- end
  1721. --end
  1722. --
  1723. --local plrs = findwat(game, "Players")
  1724.  
  1725.  
  1726.  
  1727.  
  1728. local Gui = Instance.new("ScreenGui")
  1729. local Move = Instance.new("Frame")
  1730. local Main = Instance.new("Frame")
  1731. local EspStatus = Instance.new("TextLabel")
  1732. local st1 = Instance.new("TextLabel")
  1733. local st1_2 = Instance.new("TextLabel")
  1734. local st1_3 = Instance.new("TextLabel")
  1735. local Name = Instance.new("TextLabel")
  1736. --Properties:
  1737. Gui.Name = "Gui"
  1738. Gui.Parent = plrs.LocalPlayer:WaitForChild("PlayerGui")
  1739.  
  1740. Move.Name = "Move"
  1741. Move.Parent = Gui
  1742. Move.BackgroundColor3 = Color3.new(0.631373, 0.631373, 0.631373)
  1743. Move.BackgroundTransparency = 0.40000000596046
  1744. Move.BorderSizePixel = 0
  1745. Move.Position = UDim2.new(0.005, 0,0.018, 0)
  1746. Move.Size = UDim2.new(0.28141585, 0, 0.0320388414, 0)
  1747.  
  1748. Main.Name = "Main"
  1749. Main.Parent = Move
  1750. Main.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  1751. Main.BackgroundTransparency = 0.69999998807907
  1752. Main.Position = UDim2.new(0, 0, 0.995670795, 0)
  1753. Main.Size = UDim2.new(1.0000006, 0, 9.79697132, 0)
  1754.  
  1755. EspStatus.Name = "EspStatus"
  1756. EspStatus.Parent = Main
  1757. EspStatus.BackgroundColor3 = Color3.new(1, 1, 1)
  1758. EspStatus.BackgroundTransparency = 1
  1759. EspStatus.Size = UDim2.new(0.272955924, 0, 0.161862016, 0)
  1760. EspStatus.Font = Enum.Font.ArialBold
  1761. EspStatus.Text = "Press T to update Esp"
  1762. EspStatus.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  1763. EspStatus.TextScaled = true
  1764. EspStatus.TextSize = 14
  1765. EspStatus.TextWrapped = true
  1766.  
  1767. st1.Name = "st1"
  1768. st1.Parent = Main
  1769. st1.BackgroundColor3 = Color3.new(1, 1, 1)
  1770. st1.BackgroundTransparency = 1
  1771. st1.Position = UDim2.new(0.271787882, 0, 0, 0)
  1772. st1.Size = UDim2.new(0.728211343, 0, 0.161862016, 0)
  1773. st1.Font = Enum.Font.ArialBold
  1774. st1.Text = "Press "..aimkey.." to lock on a person inside ur view"
  1775. st1.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  1776. st1.TextScaled = true
  1777. st1.TextSize = 14
  1778. st1.TextWrapped = true
  1779.  
  1780. st1_2.Name = "st1"
  1781. st1_2.Parent = Main
  1782. st1_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1783. st1_2.BackgroundTransparency = 1
  1784. st1_2.Position = UDim2.new(0, 0, 0.375590861, 0)
  1785. st1_2.Size = UDim2.new(0.999999881, 0, 0.161862016, 0)
  1786. st1_2.Font = Enum.Font.ArialBold
  1787. st1_2.Text = "Press L to enable esp loop"
  1788. st1_2.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  1789. st1_2.TextScaled = true
  1790. st1_2.TextSize = 14
  1791. st1_2.TextWrapped = true
  1792.  
  1793. st1_3.Name = "st1"
  1794. st1_3.Parent = Main
  1795. st1_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1796. st1_3.BackgroundTransparency = 1
  1797. st1_3.Position = UDim2.new(0, 0, 0.18558608, 0)
  1798. st1_3.Size = UDim2.new(0.999999881, 0, 0.161862016, 0)
  1799. st1_3.Font = Enum.Font.ArialBold
  1800. st1_3.Text = "Press O to change team based mode"
  1801. st1_3.TextColor3 = Color3.new(0.0431373, 1, 0.0745098)
  1802. st1_3.TextScaled = true
  1803. st1_3.TextSize = 14
  1804. st1_3.TextWrapped = true
  1805. local teambasedstatus = st1_3:Clone()
  1806. teambasedstatus.Parent = st1_3
  1807. teambasedstatus.TextScaled = true
  1808. teambasedstatus.Position = UDim2.new(0, 0,0.694, 0)
  1809. teambasedstatus.Text = tostring(TeamBased)
  1810.  
  1811. Name.Name = "Name"
  1812. Name.Parent = Move
  1813. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  1814. Name.BackgroundTransparency = 1
  1815. Name.Size = UDim2.new(0.838, 0, 0.980000019, 0)
  1816. Name.Font = Enum.Font.Cartoon
  1817. Name.Text = "Arsenal Mod V 2.0"
  1818. Name.TextColor3 = Color3.new(0, 0, 0)
  1819. Name.TextScaled = true
  1820. Name.TextSize = 14
  1821. Name.TextWrapped = true
  1822. Name.TextXAlignment = Enum.TextXAlignment.Left
  1823. -- Scripts:
  1824.  
  1825.  
  1826. local plrsforaim = {}
  1827.  
  1828. local lplr = game:GetService("Players").LocalPlayer
  1829. Move.Draggable = true
  1830. Gui.ResetOnSpawn = false
  1831. Gui.Name = "Chat"
  1832. Gui.DisplayOrder = 999
  1833.  
  1834. Gui.Parent = plrs.LocalPlayer.PlayerGui
  1835.  
  1836.  
  1837. f = {}
  1838. local espforlder
  1839.  
  1840. f.addesp = function()
  1841. --print("ESP ran")
  1842. if espforlder then
  1843. else
  1844. espforlder = Instance.new("Folder")
  1845. espforlder.Parent = game.Workspace.CurrentCamera
  1846. end
  1847. for i, v in pairs(espforlder:GetChildren()) do
  1848. v:Destroy()
  1849. end
  1850. for _, plr in pairs(plrs:GetChildren()) do
  1851. if plr.Character and plr.Character.Humanoid.Health > 0 and plr.Name ~= lplr.Name then
  1852. if TeamBased == true then
  1853. if plr.Team.Name ~= plrs.LocalPlayer.Team.Name then
  1854. local e = espforlder:FindFirstChild(plr.Name)
  1855. if not e then
  1856. --print("Added esp for team based")
  1857. local bill = Instance.new("BillboardGui", espforlder)
  1858. bill.Name = plr.Name
  1859. bill.AlwaysOnTop = true
  1860. bill.Size = UDim2.new(1,0,1,0)
  1861. bill.Adornee = plr.Character.Head
  1862. local Frame = Instance.new('Frame',bill)
  1863. Frame.Active = true
  1864. Frame.BackgroundColor3 = Color3.new(0/255,255/255,0/255)
  1865. Frame.BackgroundTransparency = 0
  1866. Frame.BorderSizePixel = 0
  1867. Frame.AnchorPoint = Vector2.new(.5, .5)
  1868. Frame.Position = UDim2.new (0.5,0,0.5,0)
  1869. Frame.Size = UDim2.new (1,0,1,0)
  1870. Frame.Rotation = 0
  1871. plr.Character.Humanoid.Died:Connect(function()
  1872. bill:Destroy()
  1873. end)
  1874. end
  1875. end
  1876. else
  1877. local e = espforlder:FindFirstChild(plr.Name)
  1878. if not e then
  1879. --print("Added esp")
  1880. local bill = Instance.new("BillboardGui", espforlder)
  1881. bill.Name = plr.Name
  1882. bill.AlwaysOnTop = true
  1883. bill.Size = UDim2.new(1,0,1,0)
  1884. bill.Adornee = plr.Character.Head
  1885. local Frame = Instance.new('Frame',bill)
  1886. Frame.Active = true
  1887. Frame.BackgroundColor3 = Color3.new(0/255,255/255,0/255)
  1888. Frame.BackgroundTransparency = 0
  1889. Frame.BorderSizePixel = 0
  1890. Frame.AnchorPoint = Vector2.new(.5, .5)
  1891. Frame.Position = UDim2.new (0.5,0,0.5,0)
  1892. Frame.Size = UDim2.new (1,0,1,0)
  1893. Frame.Rotation = 0
  1894. plr.Character.Humanoid.Died:Connect(function()
  1895. bill:Destroy()
  1896. end)
  1897. end
  1898. end
  1899.  
  1900.  
  1901. end
  1902. end
  1903. end
  1904. local cam = game.Workspace.CurrentCamera
  1905.  
  1906. local mouse = lplr:GetMouse()
  1907. local switch = false
  1908. local key = "k"
  1909. local aimatpart = nil
  1910. mouse.KeyDown:Connect(function(a)
  1911. if a == "t" then
  1912. print("worked1")
  1913. f.addesp()
  1914. elseif a == "u" then
  1915. if raycast == true then
  1916. raycast = false
  1917. else
  1918. raycast = true
  1919. end
  1920. elseif a == "l" then
  1921. if autoesp == false then
  1922. autoesp = true
  1923. else
  1924. autoesp = false
  1925. end
  1926. end
  1927. if a == "j" then
  1928. if mouse.Target then
  1929. mouse.Target:Destroy()
  1930. end
  1931. end
  1932. if a == key then
  1933. if switch == false then
  1934. switch = true
  1935. else
  1936. switch = false
  1937. if aimatpart ~= nil then
  1938. aimatpart = nil
  1939. end
  1940. end
  1941. elseif a == teambasedswitch then
  1942. if TeamBased == true then
  1943. TeamBased = false
  1944. teambasedstatus.Text = tostring(TeamBased)
  1945. else
  1946. TeamBased = true
  1947. teambasedstatus.Text = tostring(TeamBased)
  1948. end
  1949. elseif a == aimkey then
  1950. if not aimatpart then
  1951. local maxangle = math.rad(20)
  1952. for i, plr in pairs(plrs:GetChildren()) do
  1953. if plr.Name ~= lplr.Name and plr.Character and plr.Character.Head and plr.Character.Humanoid and plr.Character.Humanoid.Health > 1 then
  1954. if TeamBased == true then
  1955. if plr.Team.Name ~= lplr.Team.Name then
  1956. local an = checkfov(plr.Character.Head)
  1957. if an < maxangle then
  1958. maxangle = an
  1959. aimatpart = plr.Character.Head
  1960. end
  1961. end
  1962. else
  1963. local an = checkfov(plr.Character.Head)
  1964. if an < maxangle then
  1965. maxangle = an
  1966. aimatpart = plr.Character.Head
  1967. end
  1968. print(plr)
  1969. end
  1970. plr.Character.Humanoid.Died:Connect(function()
  1971. if aimatpart.Parent == plr.Character or aimatpart == nil then
  1972. aimatpart = nil
  1973. end
  1974. end)
  1975. end
  1976. end
  1977. else
  1978. aimatpart = nil
  1979. end
  1980. end
  1981. end)
  1982.  
  1983. function getfovxyz (p0, p1, deg)
  1984. local x1, y1, z1 = p0:ToOrientation()
  1985. local cf = CFrame.new(p0.p, p1.p)
  1986. local x2, y2, z2 = cf:ToOrientation()
  1987. --local d = math.deg
  1988. if deg then
  1989. --return Vector3.new(d(x1-x2), d(y1-y2), d(z1-z2))
  1990. else
  1991. return Vector3.new((x1-x2), (y1-y2), (z1-z2))
  1992. end
  1993. end
  1994.  
  1995. function getaimbotplrs()
  1996. plrsforaim = {}
  1997. for i, plr in pairs(plrs:GetChildren()) do
  1998. if plr.Character and plr.Character.Humanoid and plr.Character.Humanoid.Health > 0 and plr.Name ~= lplr.Name and plr.Character.Head then
  1999.  
  2000. if TeamBased == true then
  2001. if plr.Team.Name ~= lplr.Team.Name then
  2002. local cf = CFrame.new(game.Workspace.CurrentCamera.CFrame.p, plr.Character.Head.CFrame.p)
  2003. local r = Ray.new(cf, cf.LookVector * 10000)
  2004. local ign = {}
  2005. for i, v in pairs(plrs.LocalPlayer.Character:GetChildren()) do
  2006. if v:IsA("BasePart") then
  2007. table.insert(ign , v)
  2008. end
  2009. end
  2010. local obj = game.Workspace:FindPartOnRayWithIgnoreList(r, ign)
  2011. if obj.Parent == plr.Character and obj.Parent ~= lplr.Character then
  2012. table.insert(plrsforaim, obj)
  2013. end
  2014. end
  2015. else
  2016. local cf = CFrame.new(game.Workspace.CurrentCamera.CFrame.p, plr.Character.Head.CFrame.p)
  2017. local r = Ray.new(cf, cf.LookVector * 10000)
  2018. local ign = {}
  2019. for i, v in pairs(plrs.LocalPlayer.Character:GetChildren()) do
  2020. if v:IsA("BasePart") then
  2021. table.insert(ign , v)
  2022. end
  2023. end
  2024. local obj = game.Workspace:FindPartOnRayWithIgnoreList(r, ign)
  2025. if obj.Parent == plr.Character and obj.Parent ~= lplr.Character then
  2026. table.insert(plrsforaim, obj)
  2027. end
  2028. end
  2029.  
  2030.  
  2031. end
  2032. end
  2033. end
  2034.  
  2035. function aimat(part)
  2036. cam.CFrame = CFrame.new(cam.CFrame.p, part.CFrame.p)
  2037. end
  2038. function checkfov (part)
  2039. local fov = getfovxyz(game.Workspace.CurrentCamera.CFrame, part.CFrame)
  2040. local angle = math.abs(fov.X) + math.abs(fov.Y)
  2041. return angle
  2042. end
  2043.  
  2044. game:GetService("RunService").RenderStepped:Connect(function()
  2045. if aimatpart then
  2046. aimat(aimatpart)
  2047. if aimatpart.Parent == plrs.LocalPlayer.Character then
  2048. aimatpart = nil
  2049. end
  2050. end
  2051.  
  2052.  
  2053. -- if switch == true then
  2054. -- local maxangle = 99999
  2055. --
  2056. -- --print("Loop")
  2057. -- if true and raycast == false then
  2058. -- for i, plr in pairs(plrs:GetChildren()) do
  2059. -- if plr.Name ~= lplr.Name and plr.Character and plr.Character.Head and plr.Character.Humanoid and plr.Character.Humanoid.Health > 1 then
  2060. -- if TeamBased then
  2061. -- if plr.Team.Name ~= lplr.Team.Name or plr.Team.TeamColor ~= lplr.Team.TeamColor then
  2062. -- local an = checkfov(plr.Character.Head)
  2063. -- if an < maxangle then
  2064. -- maxangle = an
  2065. -- aimatpart = plr.Character.Head
  2066. -- if an < lockangle then
  2067. -- break
  2068. -- end
  2069. -- end
  2070. -- end
  2071. -- else
  2072. -- local an = checkfov(plr.Character.Head)
  2073. -- if an < maxangle then
  2074. -- maxangle = an
  2075. -- aimatpart = plr.Character.Head
  2076. -- if an < lockangle then
  2077. -- break
  2078. -- end
  2079. -- end
  2080. -- end
  2081. --
  2082. --
  2083. --
  2084. --
  2085. -- end
  2086. -- end
  2087. -- elseif raycast == true then
  2088. --
  2089. -- end
  2090.  
  2091. if raycast == true and switch == false and not aimatpart then
  2092. getaimbotplrs()
  2093. aimatpart = nil
  2094. local maxangle = 999
  2095. for i, v in ipairs(plrsforaim) do
  2096. if v.Parent ~= lplr.Character then
  2097. local an = checkfov(v)
  2098. if an < maxangle and v ~= lplr.Character.Head then
  2099. maxangle = an
  2100. aimatpart = v
  2101. print(v:GetFullName())
  2102. v.Parent.Humanoid.Died:connect(function()
  2103. aimatpart = nil
  2104. end)
  2105. end
  2106. end
  2107. end
  2108.  
  2109. end
  2110. end)
  2111. delay(0, function()
  2112. while wait(espupdatetime) do
  2113. if autoesp == true then
  2114. pcall(function()
  2115. f.addesp()
  2116. end)
  2117. end
  2118. end
  2119. end)
  2120. warn("loaded")
  2121. end)
  2122.  
  2123. pewpew.Name = "pewpew"
  2124. pewpew.Parent = main
  2125. pewpew.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  2126. pewpew.Position = UDim2.new(0.0869565606, 0, 0.875621915, 0)
  2127. pewpew.Size = UDim2.new(0, 170, 0, 50)
  2128. pewpew.Font = Enum.Font.SciFi
  2129. pewpew.Text = "Speed Sim X rebirth"
  2130. pewpew.TextColor3 = Color3.new(0, 0, 0)
  2131. pewpew.TextSize = 17
  2132. pewpew.MouseButton1Down:connect(function()
  2133. -- Farewell Infortality.
  2134. -- Version: 2.82
  2135. -- Instances:
  2136. local ScreenGui = Instance.new("ScreenGui")
  2137. local GUI = Instance.new("Frame")
  2138. local TextLabel = Instance.new("TextLabel")
  2139. local _10Reb = Instance.new("TextButton")
  2140. local _1Reb = Instance.new("TextButton")
  2141. local _50Reb = Instance.new("TextButton")
  2142. local _5Reb = Instance.new("TextButton")
  2143. --Properties:
  2144. ScreenGui.Parent = game.CoreGui
  2145. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  2146.  
  2147. GUI.Name = "GUI"
  2148. GUI.Parent = ScreenGui
  2149. GUI.Active = true
  2150. GUI.BackgroundColor3 = Color3.new(1, 1, 1)
  2151. GUI.BorderSizePixel = 0
  2152. GUI.Position = UDim2.new(0.362376273, 0, 0.301346809, 0)
  2153. GUI.Size = UDim2.new(0, 363, 0, 148)
  2154. GUI.Draggable = true
  2155.  
  2156. TextLabel.Parent = GUI
  2157. TextLabel.Active = true
  2158. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  2159. TextLabel.Size = UDim2.new(0, 363, 0, 55)
  2160. TextLabel.Font = Enum.Font.SourceSans
  2161. TextLabel.Text = "Speed Simulator X Rebirth Gui by Yukio"
  2162. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  2163. TextLabel.TextSize = 14
  2164.  
  2165. _10Reb.Name = "10Reb"
  2166. _10Reb.Parent = GUI
  2167. _10Reb.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  2168. _10Reb.Position = UDim2.new(0.521782219, 0, 0.449267477, 0)
  2169. _10Reb.Size = UDim2.new(0, 64, 0, 68)
  2170. _10Reb.Font = Enum.Font.SourceSans
  2171. _10Reb.Text = "10 Rebirths"
  2172. _10Reb.TextColor3 = Color3.new(0, 0, 0)
  2173. _10Reb.TextSize = 14
  2174. _10Reb.MouseButton1Down:connect(function()
  2175. game.Workspace.Events.Rebirth:FireServer()
  2176. game.Workspace.Events.Rebirth:FireServer()
  2177. game.Workspace.Events.Rebirth:FireServer()
  2178. game.Workspace.Events.Rebirth:FireServer()
  2179. game.Workspace.Events.Rebirth:FireServer()
  2180. game.Workspace.Events.Rebirth:FireServer()
  2181. game.Workspace.Events.Rebirth:FireServer()
  2182. game.Workspace.Events.Rebirth:FireServer()
  2183. game.Workspace.Events.Rebirth:FireServer()
  2184. game.Workspace.Events.Rebirth:FireServer()
  2185. end)
  2186.  
  2187. _1Reb.Name = "1Reb"
  2188. _1Reb.Parent = GUI
  2189. _1Reb.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  2190. _1Reb.Position = UDim2.new(0.0594741404, 0, 0.449267477, 0)
  2191. _1Reb.Size = UDim2.new(0, 65, 0, 68)
  2192. _1Reb.Font = Enum.Font.SourceSans
  2193. _1Reb.Text = "1 Rebirth"
  2194. _1Reb.TextColor3 = Color3.new(0, 0, 0)
  2195. _1Reb.TextSize = 14
  2196. _1Reb.MouseButton1Down:connect(function()
  2197. game.Workspace.Events.Rebirth:FireServer()
  2198. end)
  2199.  
  2200. _50Reb.Name = "50Reb"
  2201. _50Reb.Parent = GUI
  2202. _50Reb.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  2203. _50Reb.Position = UDim2.new(0.758445799, 0, 0.449267477, 0)
  2204. _50Reb.Size = UDim2.new(0, 64, 0, 68)
  2205. _50Reb.Font = Enum.Font.SourceSans
  2206. _50Reb.Text = "50 Rebirths"
  2207. _50Reb.TextColor3 = Color3.new(0, 0, 0)
  2208. _50Reb.TextSize = 14
  2209. _50Reb.MouseButton1Down:connect(function()
  2210. game.Workspace.Events.Rebirth:FireServer()
  2211. game.Workspace.Events.Rebirth:FireServer()
  2212. game.Workspace.Events.Rebirth:FireServer()
  2213. game.Workspace.Events.Rebirth:FireServer()
  2214. game.Workspace.Events.Rebirth:FireServer()
  2215. game.Workspace.Events.Rebirth:FireServer()
  2216. game.Workspace.Events.Rebirth:FireServer()
  2217. game.Workspace.Events.Rebirth:FireServer()
  2218. game.Workspace.Events.Rebirth:FireServer()
  2219. game.Workspace.Events.Rebirth:FireServer()
  2220. game.Workspace.Events.Rebirth:FireServer()
  2221. game.Workspace.Events.Rebirth:FireServer()
  2222. game.Workspace.Events.Rebirth:FireServer()
  2223. game.Workspace.Events.Rebirth:FireServer()
  2224. game.Workspace.Events.Rebirth:FireServer()
  2225. game.Workspace.Events.Rebirth:FireServer()
  2226. game.Workspace.Events.Rebirth:FireServer()
  2227. game.Workspace.Events.Rebirth:FireServer()
  2228. game.Workspace.Events.Rebirth:FireServer()
  2229. game.Workspace.Events.Rebirth:FireServer()
  2230. game.Workspace.Events.Rebirth:FireServer()
  2231. game.Workspace.Events.Rebirth:FireServer()
  2232. game.Workspace.Events.Rebirth:FireServer()
  2233. game.Workspace.Events.Rebirth:FireServer()
  2234. game.Workspace.Events.Rebirth:FireServer()
  2235. game.Workspace.Events.Rebirth:FireServer()
  2236. game.Workspace.Events.Rebirth:FireServer()
  2237. game.Workspace.Events.Rebirth:FireServer()
  2238. game.Workspace.Events.Rebirth:FireServer()
  2239. game.Workspace.Events.Rebirth:FireServer()
  2240. game.Workspace.Events.Rebirth:FireServer()
  2241. game.Workspace.Events.Rebirth:FireServer()
  2242. game.Workspace.Events.Rebirth:FireServer()
  2243. game.Workspace.Events.Rebirth:FireServer()
  2244. game.Workspace.Events.Rebirth:FireServer()
  2245. game.Workspace.Events.Rebirth:FireServer()
  2246. game.Workspace.Events.Rebirth:FireServer()
  2247. game.Workspace.Events.Rebirth:FireServer()
  2248. game.Workspace.Events.Rebirth:FireServer()
  2249. game.Workspace.Events.Rebirth:FireServer()
  2250. game.Workspace.Events.Rebirth:FireServer()
  2251. game.Workspace.Events.Rebirth:FireServer()
  2252. game.Workspace.Events.Rebirth:FireServer()
  2253. game.Workspace.Events.Rebirth:FireServer()
  2254. game.Workspace.Events.Rebirth:FireServer()
  2255. game.Workspace.Events.Rebirth:FireServer()
  2256. game.Workspace.Events.Rebirth:FireServer()
  2257. game.Workspace.Events.Rebirth:FireServer()
  2258. game.Workspace.Events.Rebirth:FireServer()
  2259. game.Workspace.Events.Rebirth:FireServer()
  2260. end)
  2261.  
  2262. _5Reb.Name = "5Reb"
  2263. _5Reb.Parent = GUI
  2264. _5Reb.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  2265. _5Reb.Position = UDim2.new(0.291402787, 0, 0.449267477, 0)
  2266. _5Reb.Size = UDim2.new(0, 66, 0, 68)
  2267. _5Reb.Font = Enum.Font.SourceSans
  2268. _5Reb.Text = "5 Rebirths"
  2269. _5Reb.TextColor3 = Color3.new(0, 0, 0)
  2270. _5Reb.TextSize = 14
  2271. _5Reb.MouseButton1Down:connect(function()
  2272. game.Workspace.Events.Rebirth:FireServer()
  2273. game.Workspace.Events.Rebirth:FireServer()
  2274. game.Workspace.Events.Rebirth:FireServer()
  2275. game.Workspace.Events.Rebirth:FireServer()
  2276. game.Workspace.Events.Rebirth:FireServer()
  2277. end)
  2278. end)
  2279.  
  2280. streets.Name = "streets"
  2281. streets.Parent = main
  2282. streets.BackgroundColor3 = Color3.new(0.27451, 1, 0.819608)
  2283. streets.Position = UDim2.new(0.0869565606, 0, 0.791044712, 0)
  2284. streets.Size = UDim2.new(0, 170, 0, 50)
  2285. streets.Font = Enum.Font.SciFi
  2286. streets.Text = "The Streets Gui"
  2287. streets.TextColor3 = Color3.new(0, 0, 0)
  2288. streets.TextSize = 17
  2289. streets.MouseButton1Down:connect(function()
  2290. if game.PlaceId == 455366377 then
  2291. print("Currently Playing The Streets")
  2292. print("Waiting for player to confirm...")
  2293. else
  2294. return
  2295. end
  2296. undecided = true
  2297. continue = false
  2298. local ConfirmGui = Instance.new("ScreenGui")
  2299. local Drag = Instance.new("TextButton")
  2300. local Background = Instance.new("ImageLabel")
  2301. local deny = Instance.new("TextButton")
  2302. local confirm = Instance.new("TextButton")
  2303. local question = Instance.new("TextLabel")
  2304.  
  2305. ConfirmGui.Name = "ConfirmGui"
  2306. ConfirmGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  2307.  
  2308. Drag.Name = "Drag"
  2309. Drag.Parent = ConfirmGui
  2310. Drag.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2311. Drag.BackgroundTransparency = 0.9990000128746
  2312. Drag.BorderColor3 = Color3.new(1, 1, 1)
  2313. Drag.Position = UDim2.new(0.392041147, 0, 0.23756206, 0)
  2314. Drag.Size = UDim2.new(0, 414, 0, 414)
  2315. Drag.Font = Enum.Font.ArialBold
  2316. Drag.Text = ""
  2317. Drag.TextColor3 = Color3.new(1, 1, 1)
  2318. Drag.TextSize = 14
  2319. Drag.TextWrapped = true
  2320.  
  2321. Background.Name = "Background"
  2322. Background.Parent = Drag
  2323. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  2324. Background.Position = UDim2.new(0.00235595694, 0, -0.00123840338, 0)
  2325. Background.Size = UDim2.new(0, 412, 0, 412)
  2326. Background.ZIndex = 0
  2327. Background.Image = "rbxassetid://0&hash=12ed3f0fdc0764ab01645b356df12dc3"
  2328.  
  2329. deny.Name = "deny"
  2330. deny.Parent = Background
  2331. deny.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2332. deny.BackgroundTransparency = 0.80000001192093
  2333. deny.BorderColor3 = Color3.new(1, 1, 1)
  2334. deny.Position = UDim2.new(0.552222788, 0, 0.668497741, 0)
  2335. deny.Size = UDim2.new(0, 174, 0, 37)
  2336. deny.ZIndex = 2
  2337. deny.Font = Enum.Font.ArialBold
  2338. deny.Text = "No"
  2339. deny.TextColor3 = Color3.new(1, 1, 1)
  2340. deny.TextSize = 25
  2341. deny.TextWrapped = true
  2342.  
  2343. confirm.Name = "confirm"
  2344. confirm.Parent = Background
  2345. confirm.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2346. confirm.BackgroundTransparency = 0.80000001192093
  2347. confirm.BorderColor3 = Color3.new(1, 1, 1)
  2348. confirm.Position = UDim2.new(0.0400868692, 0, 0.669110954, 0)
  2349. confirm.Size = UDim2.new(0, 174, 0, 37)
  2350. confirm.ZIndex = 2
  2351. confirm.Font = Enum.Font.ArialBold
  2352. confirm.Text = "Yes"
  2353. confirm.TextColor3 = Color3.new(1, 1, 1)
  2354. confirm.TextSize = 25
  2355.  
  2356. question.Name = "question"
  2357. question.Parent = Background
  2358. question.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2359. question.BackgroundTransparency = 0.89999997615814
  2360. question.Position = UDim2.new(0.00248703454, 0, -0.00103163486, 0)
  2361. question.Size = UDim2.new(0, 412, 0, 118)
  2362. question.Font = Enum.Font.SourceSans
  2363. question.Text = "You're currently in The Streets. Would you like to inject \"Mega Combat v2\"?"
  2364. question.TextColor3 = Color3.new(1, 1, 1)
  2365. question.TextScaled = true
  2366. question.TextSize = 14
  2367. question.TextWrapped = true
  2368.  
  2369. deny.MouseButton1Click:Connect(function()
  2370. ConfirmGui:Destroy()
  2371. undecided = false
  2372. continue = false
  2373. end)
  2374.  
  2375.  
  2376. confirm.MouseButton1Click:Connect(function()
  2377. ConfirmGui:Destroy()
  2378. undecided = false
  2379. continue = true
  2380. end)
  2381.  
  2382. while undecided do
  2383. wait()
  2384. end
  2385.  
  2386.  
  2387. if continue == true then
  2388. print("Confirmed! Injecting script...")
  2389. elseif continue == false then
  2390. return
  2391. end
  2392.  
  2393. wait(1)
  2394.  
  2395. SpaceHeld = false
  2396. jumpgcheck = true
  2397. jumpspeed = 0.9
  2398. targetee = nil
  2399. pleaseshoot = false
  2400. IsFirstPerson = false
  2401. ShiftHeld = false
  2402. WHeld = false
  2403. SHeld = false
  2404. AHeld = false
  2405. DHeld = false
  2406. gcheckrun = true
  2407. runspeed = 1
  2408. local stationaryrespawn = true
  2409. local needsrespawning = false
  2410. local haspos = false
  2411. local pos = CFrame.new()
  2412. fireuzi = false
  2413. targetfireuzi = false
  2414. forward = false
  2415. flymode = false
  2416. flyw = false
  2417. flys = false
  2418. flyd = false
  2419. flya = false
  2420. flysp = false
  2421. flyct = false
  2422. Mouse = game.Players.LocalPlayer:GetMouse()
  2423. flyspeed = 0.5
  2424. staypos = CFrame.new()
  2425. stay = false
  2426. originalgrip = CFrame.new()
  2427. gundebounce = false
  2428. flydebounce = false
  2429. smalldebounce = false
  2430. bigdebounce = false
  2431. bigfire = false
  2432. mouse = game.Players.LocalPlayer:GetMouse()
  2433. local LP = game.Players.LocalPlayer
  2434. local Mouse = LP:GetMouse()
  2435. toggler = false
  2436. FLYING = false
  2437. iyflyspeed = 2
  2438. attackradius = 35
  2439. planks = {}
  2440. plankpos = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,-20,0)
  2441. plankfollow = false
  2442. planksurf = false
  2443. TeleportService = game:GetService("TeleportService")
  2444. dontshoot = {"Vortexturize", "Vortextures", "Vortexturable",}
  2445.  
  2446. local TargetGUI = Instance.new("ScreenGui")
  2447. local Target = Instance.new("TextBox")
  2448. local Background = Instance.new("ImageLabel")
  2449.  
  2450. TargetGUI.Name = "TargetGUI"
  2451. TargetGUI.Parent = game.CoreGui
  2452.  
  2453. Target.Name = "Target"
  2454. Target.Parent = TargetGUI
  2455. Target.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2456. Target.BackgroundTransparency = 0.30000001192093
  2457. Target.ClipsDescendants = true
  2458. Target.Position = UDim2.new(0.726104677, 0, 0.717467248, 0)
  2459. Target.Size = UDim2.new(0, 100, 0, 21)
  2460. Target.Font = Enum.Font.SourceSans
  2461. Target.PlaceholderText = "[TARGET]"
  2462. Target.Text = ""
  2463. Target.TextColor3 = Color3.new(1, 1, 1)
  2464. Target.TextSize = 14
  2465. Target.TextWrapped = true
  2466. Target.Draggable = true
  2467.  
  2468. Background.Name = "Background"
  2469. Background.Parent = Target
  2470. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  2471. Background.Position = UDim2.new(-9.90098342e-05, 0, -1.57506061, 0)
  2472. Background.Size = UDim2.new(0, 100, 0, 86)
  2473. Background.ZIndex = 0
  2474. Background.Image = "rbxassetid://0&hash=2396ab74bcae41f2340b198666905246"
  2475.  
  2476.  
  2477. local Respawning = Instance.new("ScreenGui")
  2478. local RespawningButton = Instance.new("TextButton")
  2479.  
  2480.  
  2481.  
  2482. Respawning.Name = "Respawning"
  2483. Respawning.Parent = game.CoreGui
  2484.  
  2485.  
  2486.  
  2487. RespawningButton.Name = "RespawningButton"
  2488. RespawningButton.Parent = Respawning
  2489. RespawningButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2490. RespawningButton.BackgroundTransparency = 0.30000001192093
  2491. RespawningButton.BorderSizePixel = 0
  2492. RespawningButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  2493. RespawningButton.Size = UDim2.new(0, 83, 0, 34)
  2494. RespawningButton.Font = Enum.Font.SourceSans
  2495. RespawningButton.Text = "Not Returning"
  2496. RespawningButton.TextColor3 = Color3.new(1, 1, 1)
  2497. RespawningButton.TextSize = 20
  2498. RespawningButton.TextScaled = true
  2499. RespawningButton.Draggable = true
  2500.  
  2501.  
  2502. local creditsdab = Instance.new("ScreenGui")
  2503. local Frame = Instance.new("Frame")
  2504. local aidez = Instance.new("ImageLabel")
  2505. local names = Instance.new("TextLabel")
  2506. local scriptmadeby = Instance.new("TextLabel")
  2507. local scriptmadeby_2 = Instance.new("TextLabel")
  2508. local x = Instance.new("TextButton")
  2509.  
  2510.  
  2511. creditsdab.Name = "creditsdab"
  2512. creditsdab.Parent = game.CoreGui
  2513.  
  2514. Frame.Parent = creditsdab
  2515. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  2516. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  2517. Frame.Size = UDim2.new(0, 274, 0, 274)
  2518.  
  2519. aidez.Name = "aidez"
  2520. aidez.Parent = Frame
  2521. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  2522. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2523. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  2524. aidez.Size = UDim2.new(0, 274, 0, 274)
  2525. aidez.Image = "rbxassetid://0&hash=9c3f6c00707d5ebde710fd2f3efd2b5e"
  2526.  
  2527. names.Name = "names"
  2528. names.Parent = Frame
  2529. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2530. names.BackgroundTransparency = 0.30000001192093
  2531. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2532. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  2533. names.Size = UDim2.new(0, 274, 0, 28)
  2534. names.Font = Enum.Font.SourceSans
  2535. names.Text = "Vortexturize | aidez moi#4192 | Aidez "
  2536. names.TextColor3 = Color3.new(1, 1, 1)
  2537. names.TextSize = 14
  2538.  
  2539. scriptmadeby.Name = "scriptmadeby"
  2540. scriptmadeby.Parent = Frame
  2541. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2542. scriptmadeby.BackgroundTransparency = 0.30000001192093
  2543. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2544. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  2545. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  2546. scriptmadeby.Font = Enum.Font.SourceSans
  2547. scriptmadeby.Text = "Script made by"
  2548. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  2549. scriptmadeby.TextSize = 14
  2550.  
  2551. scriptmadeby_2.Name = "scriptmadeby"
  2552. scriptmadeby_2.Parent = Frame
  2553. scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2554. scriptmadeby_2.BackgroundTransparency = 0.30000001192093
  2555. scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2556. scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0)
  2557. scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17)
  2558. scriptmadeby_2.Font = Enum.Font.SourceSans
  2559. scriptmadeby_2.Text = "Open the dev consol for a list of features. (F9 or Shift + F9)"
  2560. scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1)
  2561. scriptmadeby_2.TextScaled = true
  2562. scriptmadeby_2.TextSize = 14
  2563. scriptmadeby_2.TextWrapped = true
  2564.  
  2565. x.Name = "x"
  2566. x.Parent = creditsdab
  2567. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2568. x.BackgroundTransparency = 0.30000001192093
  2569. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  2570. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  2571. x.Size = UDim2.new(0, 28, 0, 28)
  2572. x.Font = Enum.Font.SourceSansSemibold
  2573. x.Text = "X"
  2574. x.TextColor3 = Color3.new(1, 1, 1)
  2575. x.TextSize = 30
  2576.  
  2577. x.MouseButton1Click:connect(function()
  2578. creditsdab:Destroy()
  2579. end)
  2580.  
  2581. function giveSKey()
  2582. local epic = Instance.new("Tool")
  2583. local dab = Instance.new("Part")
  2584. local plr = game.Players.LocalPlayer
  2585. local tar_obj = nil
  2586. dab.Parent = epic
  2587. dab.Size = Vector3.new(0.2, 0.2, 0.2)
  2588. epic.Parent = plr.Backpack
  2589. epic.Name = "Skeleton Key"
  2590. epic.ToolTip = "Click on a door with this"
  2591. dab.Name = "Handle"
  2592. epic.Equipped:Connect(function(m_S)
  2593.  
  2594.  
  2595. m_S.Button1Down:Connect(function()
  2596.  
  2597.  
  2598. tar_obj = m_S.Target
  2599. door = tar_obj.Parent
  2600. if door:FindFirstChild("Lock") then
  2601. door.Lock.ClickDetector.RemoteEvent:FireServer()
  2602. wait(0.2)
  2603. door.Click.ClickDetector.RemoteEvent:FireServer()
  2604.  
  2605. elseif tar_obj.Parent.Parent:FindFirstChild("Lock") then
  2606. tar_obj.Parent.Parent.Lock.ClickDetector.RemoteEvent:FireServer()
  2607. wait(0.2)
  2608. tar_obj.Parent.Parent.Click.ClickDetector.RemoteEvent:FireServer()
  2609.  
  2610.  
  2611. end
  2612.  
  2613.  
  2614.  
  2615. end)
  2616. end)
  2617. end -- giveSKey Function end
  2618. giveSKey()
  2619.  
  2620. function sFLY() -- from rocky2u cmdscript
  2621.  
  2622. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  2623. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
  2624. repeat wait() until Mouse
  2625. local T = game.Players.LocalPlayer.Character.HumanoidRootPart
  2626. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2627. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2628. local SPEED = 0
  2629.  
  2630. local function FLY()
  2631. FLYING = true
  2632. local BG = Instance.new('BodyGyro', T)
  2633. local BV = Instance.new('BodyVelocity', T)
  2634. BG.P = 9e4
  2635. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2636. BG.cframe = T.CFrame
  2637. BV.velocity = Vector3.new(0, 0.1, 0)
  2638. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2639. spawn(function()
  2640. repeat wait()
  2641.  
  2642. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  2643. SPEED = 50
  2644. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  2645. SPEED = 0
  2646. end
  2647. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  2648. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  2649. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  2650. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  2651. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  2652. else
  2653. BV.velocity = Vector3.new(0, 0.1, 0)
  2654. end
  2655. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  2656. until not FLYING
  2657. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2658. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2659. SPEED = 0
  2660. BG:destroy()
  2661. BV:destroy()
  2662. end)
  2663. end
  2664. Mouse.KeyDown:connect(function(KEY)
  2665. if KEY:lower() == 'w' then
  2666. CONTROL.F = iyflyspeed
  2667. elseif KEY:lower() == 's' then
  2668. CONTROL.B = -iyflyspeed
  2669. elseif KEY:lower() == 'a' then
  2670. CONTROL.L = -iyflyspeed
  2671. elseif KEY:lower() == 'd' then
  2672. CONTROL.R = iyflyspeed
  2673. end
  2674. end)
  2675. Mouse.KeyUp:connect(function(KEY)
  2676. if KEY:lower() == 'w' then
  2677. CONTROL.F = 0
  2678. elseif KEY:lower() == 's' then
  2679. CONTROL.B = 0
  2680. elseif KEY:lower() == 'a' then
  2681. CONTROL.L = 0
  2682. elseif KEY:lower() == 'd' then
  2683. CONTROL.R = 0
  2684. end
  2685. end)
  2686. FLY()
  2687. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
  2688. end
  2689.  
  2690.  
  2691. function NOFLY()
  2692. FLYING = false
  2693. end
  2694.  
  2695. function startflying()
  2696. game.Players.LocalPlayer.PlayerGui.LocalScript.Disabled = true
  2697. wait()
  2698. sFLY()
  2699. wait(0.1)
  2700. game.Players.LocalPlayer.PlayerGui.LocalScript.Disabled = false
  2701. local Float = Instance.new('Part', game.Players.LocalPlayer.Character)
  2702. Float.Name = 'Float'
  2703. Float.Transparency = 1
  2704. Float.Size = Vector3.new(6,1,6)
  2705. Float.Anchored = true
  2706. end
  2707.  
  2708.  
  2709. function findplayer(namey)
  2710. local name = string.lower(namey)
  2711. local player = nil
  2712.  
  2713. names = game.Players:GetChildren()
  2714.  
  2715. for i,v in pairs(names) do
  2716. strlower = string.lower(v.Name)
  2717. sub = string.sub(strlower,1,#name)
  2718. if name == sub then
  2719. player = v
  2720. if player.Name ~= game.Players.LocalPlayer.Name then
  2721.  
  2722. end
  2723. end
  2724. end
  2725. if player then
  2726. return player
  2727. else
  2728. return false
  2729. end
  2730. end
  2731.  
  2732. function IsInTable(table, tofind)
  2733. local found = false
  2734. for i,v in pairs(table) do
  2735. if v == tofind then
  2736. found = true
  2737. break
  2738. end
  2739. end
  2740. return found
  2741. end
  2742.  
  2743.  
  2744. local function removeothercash(instance)
  2745. for i,v in pairs(instance:GetChildren()) do
  2746. if v.Name == "ESP" and v:FindFirstChild("CASH") then
  2747. v:Destroy()
  2748. end
  2749. removeothercash(v)
  2750. end
  2751. end
  2752.  
  2753. local function removeothershotty(instance)
  2754. for i,v in pairs(instance:GetChildren()) do
  2755. if v.Name == "ESP" and v:FindFirstChild("SHOTTY") then
  2756. v:Destroy()
  2757. end
  2758. removeothershotty(v)
  2759. end
  2760. end
  2761.  
  2762. local function removeotheruzi(instance)
  2763. for i,v in pairs(instance:GetChildren()) do
  2764. if v.Name == "ESP" and v:FindFirstChild("UZi") then
  2765. v:Destroy()
  2766. end
  2767. removeotheruzi(v)
  2768. end
  2769. end
  2770.  
  2771. function showcash(v)
  2772.  
  2773. local epic = Instance.new("Part")
  2774. epic.Parent = v
  2775. epic.Name = "parttrace"
  2776. epic.CFrame = v.CFrame
  2777. epic.Size = Vector3.new(0.2,0.2,0.2)
  2778. epic.Anchored = true
  2779. epic.Transparency = 1
  2780.  
  2781. local billgui = Instance.new('BillboardGui', epic)
  2782. local textlab = Instance.new('TextLabel', billgui)
  2783.  
  2784. billgui.Name = "ESP"
  2785. billgui.Adornee = epic
  2786. billgui.AlwaysOnTop = true
  2787. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  2788. billgui.Size = UDim2.new(0, 5, 0, 5)
  2789.  
  2790. textlab.Name = 'CASH'
  2791. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  2792. textlab.BackgroundTransparency = 1
  2793. textlab.BorderSizePixel = 0
  2794. textlab.Position = UDim2.new(0, 0, 0, -40)
  2795. textlab.Size = UDim2.new(1, 0, 10, 0)
  2796. textlab.Visible = true
  2797. textlab.ZIndex = 10
  2798. textlab.Font = 'ArialBold'
  2799. textlab.FontSize = 'Size14'
  2800. textlab.Text = "CASH"
  2801. textlab.TextColor = BrickColor.new('Bright red')
  2802. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  2803. textlab.TextStrokeTransparency = 0.6
  2804. end
  2805.  
  2806.  
  2807. function showuzi(v)
  2808.  
  2809. local epic = Instance.new("Part")
  2810. epic.Parent = v
  2811. epic.Name = "parttrace"
  2812. epic.CFrame = v.CFrame
  2813. epic.Size = Vector3.new(0.2,0.2,0.2)
  2814. epic.Anchored = true
  2815. epic.Transparency = 1
  2816.  
  2817. local billgui = Instance.new('BillboardGui', epic)
  2818. local textlab = Instance.new('TextLabel', billgui)
  2819.  
  2820. billgui.Name = "ESP"
  2821. billgui.Adornee = epic
  2822. billgui.AlwaysOnTop = true
  2823. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  2824. billgui.Size = UDim2.new(0, 5, 0, 5)
  2825.  
  2826. textlab.Name = 'UZI'
  2827. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  2828. textlab.BackgroundTransparency = 1
  2829. textlab.BorderSizePixel = 0
  2830. textlab.Position = UDim2.new(0, 0, 0, -40)
  2831. textlab.Size = UDim2.new(1, 0, 10, 0)
  2832. textlab.Visible = true
  2833. textlab.ZIndex = 10
  2834. textlab.Font = 'ArialBold'
  2835. textlab.FontSize = 'Size18'
  2836. textlab.Text = "UZI"
  2837. textlab.TextColor = BrickColor.new('Bright blue')
  2838. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  2839. textlab.TextStrokeTransparency = 0.6
  2840. end
  2841.  
  2842.  
  2843. function showshotty(v)
  2844.  
  2845. local epic = Instance.new("Part")
  2846. epic.Parent = v
  2847. epic.Name = "parttrace"
  2848. epic.CFrame = v.CFrame
  2849. epic.Size = Vector3.new(0.2,0.2,0.2)
  2850. epic.Anchored = true
  2851. epic.Transparency = 1
  2852.  
  2853. local billgui = Instance.new('BillboardGui', epic)
  2854. local textlab = Instance.new('TextLabel', billgui)
  2855.  
  2856. billgui.Name = "ESP"
  2857. billgui.Adornee = epic
  2858. billgui.AlwaysOnTop = true
  2859. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  2860. billgui.Size = UDim2.new(0, 5, 0, 5)
  2861.  
  2862. textlab.Name = 'SHOTTY'
  2863. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  2864. textlab.BackgroundTransparency = 1
  2865. textlab.BorderSizePixel = 0
  2866. textlab.Position = UDim2.new(0, 0, 0, -40)
  2867. textlab.Size = UDim2.new(1, 0, 10, 0)
  2868. textlab.Visible = true
  2869. textlab.ZIndex = 10
  2870. textlab.Font = 'ArialBold'
  2871. textlab.FontSize = 'Size14'
  2872. textlab.Text = "SHOTTY"
  2873. textlab.TextColor = BrickColor.new('Bright yellow')
  2874. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  2875. textlab.TextStrokeTransparency = 0.6
  2876. end
  2877.  
  2878.  
  2879. local function tracecash(instance)
  2880. for i,v in pairs(instance:GetChildren()) do
  2881. if v:IsA("MeshPart") and v.MeshId == "rbxassetid://511726060" then
  2882. removeothercash(v.Parent)
  2883. showcash(v)
  2884. end
  2885. tracecash(v)
  2886. end
  2887. end
  2888.  
  2889.  
  2890. local function traceshotty(instance)
  2891. for i,v in pairs(instance:GetChildren()) do
  2892. if v:IsA("Sound") and v.Name == "Fire" and v.Parent.Parent.Parent.Name == "RandomSpawner" and string.find(tostring(v.SoundId), tostring(142383762)) then
  2893. removeothershotty(v.Parent)
  2894. showshotty(v.Parent)
  2895. end
  2896. traceshotty(v)
  2897. end
  2898. end
  2899.  
  2900.  
  2901. local function traceuzi(instance)
  2902. for i,v in pairs(instance:GetChildren()) do
  2903. if v:IsA("Sound") and v.Name == "Fire" and v.Parent.Parent.Parent.Name == "RandomSpawner" and string.find(tostring(v.SoundId), tostring(328964620)) then
  2904. removeotheruzi(v.Parent)
  2905. showuzi(v.Parent)
  2906. end
  2907. traceuzi(v)
  2908. end
  2909. end
  2910.  
  2911.  
  2912.  
  2913. for i,v in pairs(game.Workspace:GetChildren()) do
  2914. if v.Name == "RandomSpawner" then
  2915. if v:FindFirstChild("Model") then
  2916. v.Model.ChildAdded:Connect(function(child)
  2917. tracecash(child)
  2918. traceshotty(child)
  2919. traceuzi(child)
  2920. end)
  2921. end
  2922. v.ChildAdded:Connect(function(child)
  2923. tracecash(child)
  2924. traceshotty(child)
  2925. traceuzi(child)
  2926. end)
  2927. end
  2928. end
  2929.  
  2930. game.Workspace.ChildAdded:Connect(function(child)
  2931. if child.Name == "RandomSpawner" then
  2932. repeat wait() until child.Model
  2933. tracecash(child)
  2934. traceshotty(child)
  2935. traceuzi(child)
  2936. end
  2937. end)
  2938.  
  2939. tracecash(game.Workspace)
  2940. traceshotty(game.Workspace)
  2941. traceuzi(game.Workspace)
  2942.  
  2943. local function uncancollide(instance)
  2944. for i,v in pairs(instance:GetChildren()) do
  2945. if v:IsA("BasePart") then
  2946. v.CanCollide = false
  2947. v.Massless = true
  2948. end
  2949. uncancollide(v)
  2950. end
  2951. end
  2952.  
  2953.  
  2954. local function radioglitchy(instance)
  2955. for i,v in pairs(instance:GetChildren()) do
  2956. if v:IsA("Script") then
  2957. v:Destroy()
  2958. end
  2959. radioglitchy(v)
  2960. end
  2961. end
  2962.  
  2963. local function deseat(instance)
  2964. for i,v in pairs(instance:GetChildren()) do
  2965. if v:IsA("Seat") then
  2966. v.Parent = game.Lighting
  2967. end
  2968. deseat(v)
  2969. end
  2970. end
  2971.  
  2972. local function reseat(instance)
  2973. for i,v in pairs(instance:GetChildren()) do
  2974. if v:IsA("Seat") then
  2975. v.Parent = game.Workspace
  2976. end
  2977. reseat(v)
  2978. end
  2979. end
  2980.  
  2981.  
  2982. function defence(instance)
  2983. for i,v in pairs(instance:GetChildren()) do
  2984. if v:IsA("Texture") then
  2985. if v.Parent then
  2986. if v.Parent.Transparency == 1 then
  2987. v.Parent.Parent = game.Lighting
  2988. end
  2989. end
  2990. end
  2991. defence(v)
  2992. end
  2993. end
  2994.  
  2995.  
  2996. function refence(instance)
  2997. for i,v in pairs(instance:GetChildren()) do
  2998. if v:IsA("Texture") then
  2999. if v.Parent then
  3000. if v.Parent.Transparency == 1 then
  3001. v.Parent.Parent = game.Workspace
  3002. end
  3003. end
  3004. end
  3005. refence(v)
  3006. end
  3007. end
  3008.  
  3009.  
  3010.  
  3011. for i,v in pairs(game.Workspace:GetChildren()) do
  3012. if v.Name == "Boards" then
  3013. for i,x in pairs(v:GetChildren()) do
  3014. table.insert(planks,(#planks+1),x)
  3015. end
  3016. end
  3017. end
  3018.  
  3019.  
  3020.  
  3021. function messagecommandshandle(plr,msg)
  3022.  
  3023. local lower = string.lower(msg)
  3024. local len = string.len(lower)
  3025.  
  3026.  
  3027. if string.find(lower,":play ") then
  3028. idtoplay = string.gsub(lower,":play ","")
  3029. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3030. if (v:IsA("Tool") and v.Name == "BoomBox") then
  3031. v.Parent = game.Players.LocalPlayer.Character
  3032. end
  3033. end
  3034. wait(0.1)
  3035. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  3036. wait(0.1)
  3037. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  3038. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  3039.  
  3040. end
  3041.  
  3042. if string.find(lower,"/e play ") then
  3043. idtoplay = string.gsub(lower,"/e play ","")
  3044. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3045. if (v:IsA("Tool") and v.Name == "BoomBox") then
  3046. v.Parent = game.Players.LocalPlayer.Character
  3047. end
  3048. end
  3049. wait(0.1)
  3050. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  3051. wait(0.1)
  3052. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  3053. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  3054.  
  3055. end
  3056.  
  3057. if string.find(lower,"/e :play ") then
  3058. idtoplay = string.gsub(lower,"/e :play ","")
  3059. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3060. if (v:IsA("Tool") and v.Name == "BoomBox") then
  3061. v.Parent = game.Players.LocalPlayer.Character
  3062. end
  3063. end
  3064. wait(0.1)
  3065. game.Players.LocalPlayer.Character.BoomBox.Remote:FireServer("PlaySong", idtoplay)
  3066. wait(0.1)
  3067. radioglitchy(game.Players.LocalPlayer.Character.BoomBox)
  3068. game.Players.LocalPlayer.Character:FindFirstChild("BoomBox").Parent = game.Players.LocalPlayer.Backpack
  3069.  
  3070. end
  3071.  
  3072.  
  3073.  
  3074.  
  3075. if string.find(lower,":deseat") then
  3076. deseat(game.Workspace)
  3077. end
  3078. if string.find(lower,"/e deseat") then
  3079. deseat(game.Workspace)
  3080. end
  3081. if string.find(lower,"/e :deseat") then
  3082. deseat(game.Workspace)
  3083. end
  3084.  
  3085.  
  3086. if string.find(lower,":reseat") then
  3087. reseat(game.Lighting)
  3088. end
  3089.  
  3090. if string.find(lower,"/e reseat") then
  3091. reseat(game.Lighting)
  3092. end
  3093.  
  3094. if string.find(lower,"/e :reseat") then
  3095. reseat(game.Lighting)
  3096. end
  3097.  
  3098.  
  3099.  
  3100. if string.find(lower,":defence") then
  3101. defence(game.Workspace)
  3102. end
  3103. if string.find(lower,"/e defence") then
  3104. defence(game.Workspace)
  3105. end
  3106. if string.find(lower,"/e :defence") then
  3107. defence(game.Workspace)
  3108. end
  3109.  
  3110. if string.find(lower,":refence") then
  3111. refence(game.Lighting)
  3112. end
  3113. if string.find(lower,"/e refence") then
  3114. refence(game.Lighting)
  3115. end
  3116. if string.find(lower,"/e :refence") then
  3117. refence(game.Lighting)
  3118. end
  3119.  
  3120.  
  3121.  
  3122. if string.find(lower,":cash") then
  3123. tracecash(game.Workspace)
  3124. end
  3125.  
  3126. if string.find(lower,"/e cash") then
  3127. tracecash(game.Workspace)
  3128. end
  3129.  
  3130. if string.find(lower,"/e :cash") then
  3131. tracecash(game.Workspace)
  3132. end
  3133.  
  3134.  
  3135. if string.find(lower,":setrad ") then
  3136. newrad = string.gsub(lower,":setrad ","")
  3137. attackradius = tonumber(newrad)
  3138. end
  3139. if string.find(lower,"/e setrad ") then
  3140. newrad = string.gsub(lower,":setrad ","")
  3141. attackradius = tonumber(newrad)
  3142. end
  3143. if string.find(lower,"/e :setrad ") then
  3144. newrad = string.gsub(lower,":setrad ","")
  3145. attackradius = tonumber(newrad)
  3146. end
  3147.  
  3148.  
  3149. if string.find(lower,":find ") then
  3150. local playername = string.gsub(lower,":find ","")
  3151. if string.lower(playername) == "target" then
  3152. if targetee then
  3153. if targetee.Character then
  3154.  
  3155. local billgui = Instance.new('BillboardGui', targetee.Character.Torso)
  3156. local textlab = Instance.new('TextLabel', billgui)
  3157.  
  3158. billgui.Name = "ESP"
  3159. billgui.Adornee = epic
  3160. billgui.AlwaysOnTop = true
  3161. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  3162. billgui.Size = UDim2.new(0, 5, 0, 5)
  3163.  
  3164. textlab.Name = 'Target'
  3165. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  3166. textlab.BackgroundTransparency = 1
  3167. textlab.BorderSizePixel = 0
  3168. textlab.Position = UDim2.new(0, 0, 0, -40)
  3169. textlab.Size = UDim2.new(1, 0, 10, 0)
  3170. textlab.Visible = true
  3171. textlab.ZIndex = 10
  3172. textlab.Font = 'ArialBold'
  3173. textlab.FontSize = 'Size14'
  3174. textlab.Text = targetee.Name
  3175. textlab.TextColor = BrickColor.new('Bright blue')
  3176. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  3177. textlab.TextStrokeTransparency = 0.6
  3178. end
  3179. end
  3180.  
  3181. else
  3182. local player = findplayer(playername)
  3183. if player ~= false then
  3184. if player.Character then
  3185.  
  3186. local billgui = Instance.new('BillboardGui', player.Character.Torso)
  3187. local textlab = Instance.new('TextLabel', billgui)
  3188.  
  3189. billgui.Name = "ESP"
  3190. billgui.Adornee = epic
  3191. billgui.AlwaysOnTop = true
  3192. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  3193. billgui.Size = UDim2.new(0, 5, 0, 5)
  3194.  
  3195. textlab.Name = 'Player'
  3196. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  3197. textlab.BackgroundTransparency = 1
  3198. textlab.BorderSizePixel = 0
  3199. textlab.Position = UDim2.new(0, 0, 0, -40)
  3200. textlab.Size = UDim2.new(1, 0, 10, 0)
  3201. textlab.Visible = true
  3202. textlab.ZIndex = 10
  3203. textlab.Font = 'ArialBold'
  3204. textlab.FontSize = 'Size14'
  3205. textlab.Text = player.Name
  3206. textlab.TextColor = BrickColor.new('Bright red')
  3207. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  3208. textlab.TextStrokeTransparency = 0.6
  3209. end
  3210. end
  3211. end
  3212. end
  3213.  
  3214.  
  3215.  
  3216. if string.find(lower,"/e find ") then
  3217. local playername = string.gsub(lower,"/e find ","")
  3218. if string.lower(playername) == "target" then
  3219. if targetee then
  3220. if targetee.Character then
  3221. local billgui = Instance.new('BillboardGui', targetee.Character.Torso)
  3222. local textlab = Instance.new('TextLabel', billgui)
  3223.  
  3224. billgui.Name = "ESP"
  3225. billgui.Adornee = epic
  3226. billgui.AlwaysOnTop = true
  3227. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  3228. billgui.Size = UDim2.new(0, 5, 0, 5)
  3229.  
  3230. textlab.Name = 'Target'
  3231. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  3232. textlab.BackgroundTransparency = 1
  3233. textlab.BorderSizePixel = 0
  3234. textlab.Position = UDim2.new(0, 0, 0, -40)
  3235. textlab.Size = UDim2.new(1, 0, 10, 0)
  3236. textlab.Visible = true
  3237. textlab.ZIndex = 10
  3238. textlab.Font = 'ArialBold'
  3239. textlab.FontSize = 'Size14'
  3240. textlab.Text = targetee.Name
  3241. textlab.TextColor = BrickColor.new('Bright blue')
  3242. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  3243. textlab.TextStrokeTransparency = 0.6
  3244. end
  3245. end
  3246.  
  3247. else
  3248. local player = findplayer(playername)
  3249. if player ~= false then
  3250. if player.Character then
  3251.  
  3252. local billgui = Instance.new('BillboardGui', player.Character.Torso)
  3253. local textlab = Instance.new('TextLabel', billgui)
  3254.  
  3255. billgui.Name = "ESP"
  3256. billgui.Adornee = epic
  3257. billgui.AlwaysOnTop = true
  3258. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  3259. billgui.Size = UDim2.new(0, 5, 0, 5)
  3260.  
  3261. textlab.Name = 'Player'
  3262. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  3263. textlab.BackgroundTransparency = 1
  3264. textlab.BorderSizePixel = 0
  3265. textlab.Position = UDim2.new(0, 0, 0, -40)
  3266. textlab.Size = UDim2.new(1, 0, 10, 0)
  3267. textlab.Visible = true
  3268. textlab.ZIndex = 10
  3269. textlab.Font = 'ArialBold'
  3270. textlab.FontSize = 'Size14'
  3271. textlab.Text = player.Name
  3272. textlab.TextColor = BrickColor.new('Bright red')
  3273. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  3274. textlab.TextStrokeTransparency = 0.6
  3275. end
  3276. end
  3277. end
  3278. end
  3279.  
  3280.  
  3281.  
  3282.  
  3283. if string.find(lower,"/e :find ") then
  3284. local playername = string.gsub(lower,"/e :find ","")
  3285. if string.lower(playername) == "target" then
  3286. if targetee then
  3287. if targetee.Character then
  3288.  
  3289. local billgui = Instance.new('BillboardGui', targetee.Character.Torso)
  3290. local textlab = Instance.new('TextLabel', billgui)
  3291.  
  3292. billgui.Name = "ESP"
  3293. billgui.Adornee = epic
  3294. billgui.AlwaysOnTop = true
  3295. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  3296. billgui.Size = UDim2.new(0, 5, 0, 5)
  3297.  
  3298. textlab.Name = 'Target'
  3299. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  3300. textlab.BackgroundTransparency = 1
  3301. textlab.BorderSizePixel = 0
  3302. textlab.Position = UDim2.new(0, 0, 0, -40)
  3303. textlab.Size = UDim2.new(1, 0, 10, 0)
  3304. textlab.Visible = true
  3305. textlab.ZIndex = 10
  3306. textlab.Font = 'ArialBold'
  3307. textlab.FontSize = 'Size14'
  3308. textlab.Text = targetee.Name
  3309. textlab.TextColor = BrickColor.new('Bright blue')
  3310. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  3311. textlab.TextStrokeTransparency = 0.6
  3312. end
  3313. end
  3314.  
  3315. else
  3316. local player = findplayer(playername)
  3317. if player ~= false then
  3318. if player.Character then
  3319.  
  3320. local billgui = Instance.new('BillboardGui', player.Character.Torso)
  3321. local textlab = Instance.new('TextLabel', billgui)
  3322.  
  3323. billgui.Name = "ESP"
  3324. billgui.Adornee = epic
  3325. billgui.AlwaysOnTop = true
  3326. billgui.ExtentsOffset = Vector3.new(0, 1, 0)
  3327. billgui.Size = UDim2.new(0, 5, 0, 5)
  3328.  
  3329. textlab.Name = 'Player'
  3330. textlab.BackgroundColor3 = Color3.new(255, 255, 255)
  3331. textlab.BackgroundTransparency = 1
  3332. textlab.BorderSizePixel = 0
  3333. textlab.Position = UDim2.new(0, 0, 0, -40)
  3334. textlab.Size = UDim2.new(1, 0, 10, 0)
  3335. textlab.Visible = true
  3336. textlab.ZIndex = 10
  3337. textlab.Font = 'ArialBold'
  3338. textlab.FontSize = 'Size14'
  3339. textlab.Text = player.Name
  3340. textlab.TextColor = BrickColor.new('Bright red')
  3341. textlab.TextStrokeColor3 = Color3.fromRGB(0,0,0)
  3342. textlab.TextStrokeTransparency = 0.6
  3343. end
  3344. end
  3345. end
  3346. end
  3347.  
  3348.  
  3349. if string.find(lower,":planks") then
  3350. plankfollow = true
  3351. planksurf = false
  3352. for i=1,#planks do
  3353. if planks[i]:FindFirstChild("no") then
  3354. planks[i]:FindFirstChild("no"):Destroy()
  3355. end
  3356. local keep = Instance.new("BodyPosition")
  3357. keep.Parent = planks[i]
  3358. keep.Name = "no"
  3359. keep.P = 100
  3360. keep.D = 50
  3361. keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  3362. end
  3363. end
  3364.  
  3365. if string.find(lower,"/e planks") then
  3366. plankfollow = true
  3367. planksurf = false
  3368. for i=1,#planks do
  3369. if planks[i]:FindFirstChild("no") then
  3370. planks[i]:FindFirstChild("no"):Destroy()
  3371. end
  3372. local keep = Instance.new("BodyPosition")
  3373. keep.Parent = planks[i]
  3374. keep.Name = "no"
  3375. keep.P = 100
  3376. keep.D = 50
  3377. keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  3378. end
  3379. end
  3380.  
  3381. if string.find(lower,"/e :planks") then
  3382. plankfollow = true
  3383. planksurf = false
  3384. for i=1,#planks do
  3385. if planks[i]:FindFirstChild("no") then
  3386. planks[i]:FindFirstChild("no"):Destroy()
  3387. end
  3388. local keep = Instance.new("BodyPosition")
  3389. keep.Parent = planks[i]
  3390. keep.Name = "no"
  3391. keep.P = 100
  3392. keep.D = 50
  3393. keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  3394. end
  3395. end
  3396.  
  3397. if string.find(lower,":unplanks") then
  3398. plankfollow = false
  3399. planksurf = false
  3400. for i=1,#planks do
  3401. if planks[1]:FindFirstChild("no") then
  3402. planks[1]:FindFirstChild("no"):Destroy()
  3403. end
  3404. end
  3405. end
  3406.  
  3407. if string.find(lower,"/e unplanks") then
  3408. plankfollow = false
  3409. planksurf = false
  3410. for i=1,#planks do
  3411. if planks[1]:FindFirstChild("no") then
  3412. planks[1]:FindFirstChild("no"):Destroy()
  3413. end
  3414. end
  3415. end
  3416.  
  3417. if string.find(lower,"/e :unplanks") then
  3418. plankfollow = false
  3419. planksurf = false
  3420. for i=1,#planks do
  3421. if planks[1]:FindFirstChild("no") then
  3422. planks[1]:FindFirstChild("no"):Destroy()
  3423. end
  3424. end
  3425. end
  3426.  
  3427.  
  3428.  
  3429. if string.find(lower,":planksurf") then
  3430. plankfollow = false
  3431. planksurf = true
  3432. for i=1,#planks do
  3433. if planks[i]:FindFirstChild("no") then
  3434. planks[i]:FindFirstChild("no"):Destroy()
  3435. end
  3436. local keep = Instance.new("BodyPosition")
  3437. keep.Parent = planks[i]
  3438. keep.Name = "no"
  3439. keep.P = 5000
  3440. keep.D = 15
  3441. keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  3442. end
  3443. end
  3444.  
  3445. if string.find(lower,"/e planksurf") then
  3446. plankfollow = false
  3447. planksurf = true
  3448. for i=1,#planks do
  3449. if planks[i]:FindFirstChild("no") then
  3450. planks[i]:FindFirstChild("no"):Destroy()
  3451. end
  3452. local keep = Instance.new("BodyPosition")
  3453. keep.Parent = planks[i]
  3454. keep.Name = "no"
  3455. keep.P = 5000
  3456. keep.D = 15
  3457. keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  3458. end
  3459. end
  3460.  
  3461. if string.find(lower,"/e :planksurf") then
  3462. plankfollow = false
  3463. planksurf = true
  3464. for i=1,#planks do
  3465. if planks[i]:FindFirstChild("no") then
  3466. planks[i]:FindFirstChild("no"):Destroy()
  3467. end
  3468. local keep = Instance.new("BodyPosition")
  3469. keep.Parent = planks[i]
  3470. keep.Name = "no"
  3471. keep.P = 5000
  3472. keep.D = 15
  3473. keep.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,0,10)
  3474. end
  3475. end
  3476.  
  3477.  
  3478. if string.sub(msg, 1, 10) == ":tostreets" then
  3479. TeleportService:Teleport(455366377, game.Players.LocalPlayer)
  3480. end
  3481. if string.sub(msg, 1, 12) == "/e tostreets" then
  3482. TeleportService:Teleport(455366377, game.Players.LocalPlayer)
  3483. end
  3484. if string.sub(msg, 1, 13) == "/e :tostreets" then
  3485. TeleportService:Teleport(455366377, game.Players.LocalPlayer)
  3486. end
  3487.  
  3488.  
  3489. if string.sub(msg, 1, 9) == ":toprison" then
  3490. TeleportService:Teleport(4669040, game.Players.LocalPlayer)
  3491. end
  3492. if string.sub(msg, 1, 11) == "/e toprison" then
  3493. TeleportService:Teleport(4669040, game.Players.LocalPlayer)
  3494. end
  3495. if string.sub(msg, 1, 12) == "/e :toprison" then
  3496. TeleportService:Teleport(4669040, game.Players.LocalPlayer)
  3497. end
  3498.  
  3499.  
  3500. if string.find(lower,":wl ") then
  3501. local playername = string.gsub(lower,":wl ","")
  3502. local tarplayer = findplayer(playername)
  3503. if tarplayer ~= false then
  3504. if not IsInTable(dontshoot, tarplayer.Name) then
  3505. table.insert(dontshoot, #dontshoot + 1, tarplayer.Name)
  3506. end
  3507. end
  3508. end
  3509.  
  3510. if string.find(lower,"/e wl ") then
  3511. local playername = string.gsub(lower,"/e wl ","")
  3512. local tarplayer = findplayer(playername)
  3513. if tarplayer ~= false then
  3514. if not IsInTable(dontshoot, tarplayer.Name) then
  3515. table.insert(dontshoot, #dontshoot + 1, tarplayer.Name)
  3516. end
  3517. end
  3518. end
  3519.  
  3520. if string.find(lower,"/e :wl ") then
  3521. local playername = string.gsub(lower,"/e :wl ","")
  3522. local tarplayer = findplayer(playername)
  3523. if tarplayer ~= false then
  3524. if not IsInTable(dontshoot, tarplayer.Name) then
  3525. table.insert(dontshoot, #dontshoot + 1, tarplayer.Name)
  3526. end
  3527. end
  3528. end
  3529.  
  3530. if string.find(lower,":unwl ") then
  3531. local playername = string.gsub(lower,":unwl ","")
  3532. local tarplayer = findplayer(playername)
  3533. if tarplayer ~= false then
  3534. for i = 1,#dontshoot do
  3535. if string.lower(tostring(dontshoot[i])) == string.lower(tarplayer.Name) then
  3536. table.remove(dontshoot, i)
  3537. end
  3538. end
  3539. end
  3540. end
  3541.  
  3542. if string.find(lower,"/e unwl ") then
  3543. local playername = string.gsub(lower,"/e unwl ","")
  3544. local tarplayer = findplayer(playername)
  3545. if tarplayer ~= false then
  3546. for i = 1,#dontshoot do
  3547. if string.lower(tostring(dontshoot[i])) == string.lower(tarplayer.Name) then
  3548. table.remove(dontshoot, i)
  3549. end
  3550. end
  3551. end
  3552. end
  3553.  
  3554. if string.find(lower,"/e :unwl ") then
  3555. local playername = string.gsub(lower,"/e :unwl ","")
  3556. local tarplayer = findplayer(playername)
  3557. if tarplayer ~= false then
  3558. for i = 1,#dontshoot do
  3559. if string.lower(tostring(dontshoot[i])) == string.lower(tarplayer.Name) then
  3560. table.remove(dontshoot, i)
  3561. end
  3562. end
  3563. end
  3564. end
  3565.  
  3566.  
  3567.  
  3568.  
  3569.  
  3570. end
  3571.  
  3572.  
  3573.  
  3574. local debounce = false
  3575.  
  3576. function fireat(target)
  3577. if debounce == false then
  3578. debounce = true
  3579. for i = 1,3 do
  3580. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  3581. if game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Fire then
  3582. u = game.Players.LocalPlayer.Character:FindFirstChildWhichIsA("Tool").Fire
  3583. if target.Character then
  3584. if not IsInTable(dontshoot, target.Name) then
  3585. u:FireServer(targetee.Character.Torso.CFrame)
  3586. end
  3587. end
  3588. end
  3589. end
  3590. wait(0.1)
  3591. end
  3592. debounce = false
  3593. end
  3594. end
  3595.  
  3596.  
  3597.  
  3598. Target.FocusLost:Connect(function()
  3599. local name = string.lower(Target.Text)
  3600. local player = nil
  3601.  
  3602. names = game.Players:GetChildren()
  3603.  
  3604. for i,x in pairs(names) do
  3605. strlower = string.lower(x.Name)
  3606. sub = string.sub(strlower,1,#name)
  3607.  
  3608. if name == sub then
  3609. player = x
  3610. if player.Name ~= game.Players.LocalPlayer.Name and x.Name ~= "Vortexturize" then
  3611. targetee = player
  3612. end
  3613. end
  3614. end
  3615. end)
  3616.  
  3617.  
  3618.  
  3619.  
  3620. mouse.KeyDown:Connect(function(key)
  3621. if key == "v" then
  3622.  
  3623. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  3624. fireuzifly = true
  3625. end
  3626.  
  3627. end
  3628. end)
  3629.  
  3630.  
  3631. mouse.KeyUp:Connect(function(key)
  3632. if key == "v" then
  3633. fireuzifly = false
  3634. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3635. if (v:IsA("Tool")and v.Name == "Uzi") then
  3636. v:Deactivate()
  3637. end
  3638. end
  3639.  
  3640. end
  3641. end)
  3642.  
  3643.  
  3644. mouse.KeyDown:Connect(function(key)
  3645. if key == "q" then
  3646. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") or game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  3647. bigfire = true
  3648. end
  3649. end
  3650. end)
  3651.  
  3652.  
  3653. mouse.KeyUp:Connect(function(key)
  3654. if key == "q" then
  3655. bigfire = false
  3656. end
  3657. end)
  3658.  
  3659. mouse.KeyDown:Connect(function(key)
  3660. if key == "z" then
  3661.  
  3662. if flymode == false then
  3663. if game.Players.LocalPlayer.Backpack:FindFirstChild("Uzi") then
  3664. originalgrip = game.Players.LocalPlayer.Backpack.Uzi.Grip
  3665. elseif game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  3666. originalgrip = game.Players.LocalPlayer.Character.Uzi.Grip
  3667. else
  3668. return
  3669. end
  3670. staypos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  3671. stay = true
  3672. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3673. if v:IsA("Tool") and v.Name == "Uzi" then
  3674. v.Parent = game.Players.LocalPlayer.Character
  3675. game.Workspace.CurrentCamera.CameraSubject = v.Handle
  3676. end
  3677. end
  3678.  
  3679. wait()
  3680. flymode = true
  3681. wait(0.3)
  3682. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3683. if v:IsA("BasePart") then
  3684. v.Anchored = true
  3685. end
  3686. end
  3687. elseif flymode == true then
  3688. game.Players.LocalPlayer.Character.Uzi.Grip = originalgrip
  3689. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3690. if v:IsA("Tool") and v.Name == "Uzi" then
  3691. v.Parent = game.Players.LocalPlayer.Backpack
  3692. end
  3693. end
  3694. stay = false
  3695. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3696. if v:IsA("BasePart") then
  3697. v.Anchored = false
  3698. end
  3699. end
  3700. for i = 1,5 do
  3701. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  3702. end
  3703.  
  3704. flyw = false
  3705. flys = false
  3706. flyd = false
  3707. flya = false
  3708. flysp = false
  3709. flyct = false
  3710. flymode = false
  3711. end
  3712. end
  3713. end)
  3714.  
  3715. mouse.KeyDown:Connect(function(key)
  3716. if key == "w" then
  3717. flyw = true
  3718. end
  3719. end)
  3720.  
  3721. mouse.KeyUp:Connect(function(key)
  3722. if key == "w" then
  3723. flyw = false
  3724. end
  3725. end)
  3726.  
  3727.  
  3728. mouse.KeyDown:Connect(function(key)
  3729. if key == "s" then
  3730. flys = true
  3731. end
  3732. end)
  3733. mouse.KeyUp:Connect(function(key)
  3734. if key == "s" then
  3735. flys = false
  3736. end
  3737. end)
  3738.  
  3739.  
  3740. mouse.KeyDown:Connect(function(key)
  3741. if key == "d" then
  3742. flyd = true
  3743. end
  3744. end)
  3745.  
  3746. mouse.KeyUp:Connect(function(key)
  3747. if key == "d" then
  3748. flyd = false
  3749. end
  3750. end)
  3751.  
  3752. mouse.KeyDown:Connect(function(key)
  3753. if key == "a" then
  3754. flya = true
  3755. end
  3756. end)
  3757.  
  3758. mouse.KeyUp:Connect(function(key)
  3759. if key == "a" then
  3760. flya = false
  3761. end
  3762. end)
  3763.  
  3764. mouse.KeyDown:Connect(function(key)
  3765. if key == " " then
  3766. flysp = true
  3767. end
  3768. end)
  3769.  
  3770. mouse.KeyUp:Connect(function(key)
  3771. if key == " " then
  3772. flysp = false
  3773. end
  3774. end)
  3775.  
  3776.  
  3777. mouse.KeyDown:Connect(function(key)
  3778. if key == "0" then -- love mouse.keydown, and how left shift is also 0
  3779. flyct = true
  3780. end
  3781. end)
  3782.  
  3783. mouse.KeyUp:Connect(function(key)
  3784. if key == "0" then
  3785. flyct = false
  3786. end
  3787. end)
  3788.  
  3789.  
  3790.  
  3791.  
  3792. mouse.KeyDown:Connect(function(key)
  3793. if key == "t" then
  3794. fireat(targetee)
  3795. end
  3796. end)
  3797.  
  3798. mouse.KeyDown:Connect(function(key)
  3799. if key == "x" then
  3800. Selecting = true
  3801. end
  3802. end)
  3803. mouse.KeyUp:Connect(function(key)
  3804. if key == "x" then
  3805. Selecting = false
  3806. end
  3807. end)
  3808.  
  3809.  
  3810.  
  3811. mouse.KeyDown:Connect(function(key)
  3812. if key == "[" then
  3813. jumpspeed = jumpspeed - 0.1
  3814. end
  3815. end)
  3816.  
  3817.  
  3818. firing = false
  3819. mouse.KeyDown:Connect(function(key)
  3820. if key == "r" then
  3821.  
  3822. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3823. if (v:IsA("Tool") and v:FindFirstChild("Fire")) then
  3824. if v.Reloader.Value == false then
  3825. v.Parent = game.Players.LocalPlayer.Backpack
  3826.  
  3827. v.Parent = game.Players.LocalPlayer
  3828. v.Parent = game.Players.LocalPlayer.Backpack
  3829.  
  3830. v.Parent = game.Players.LocalPlayer.Character
  3831. end
  3832. end
  3833. end
  3834. end
  3835. end)
  3836.  
  3837.  
  3838.  
  3839. mouse.KeyDown:Connect(function(key)
  3840. if key == "]" then
  3841. jumpspeed = jumpspeed + 0.1
  3842. end
  3843. end)
  3844.  
  3845.  
  3846.  
  3847.  
  3848. mouse.KeyDown:Connect(function(key)
  3849. if key == "l" then
  3850. if jumpgcheck == false then
  3851. jumpgcheck = true
  3852. elseif jumpgcheck == true then
  3853. jumpgcheck = false
  3854. end
  3855.  
  3856. end
  3857. end)
  3858.  
  3859.  
  3860.  
  3861.  
  3862.  
  3863. mouse.KeyDown:Connect(function(key)
  3864. if key == " " and jumpgcheck == true then
  3865. SpaceHeld = true
  3866. end
  3867. end)
  3868.  
  3869. mouse.KeyUp:Connect(function(key)
  3870. if key == " " then
  3871. SpaceHeld = false
  3872. end
  3873. end)
  3874.  
  3875. mouse.KeyDown:Connect(function(key)
  3876. if key == "-" then
  3877. runspeed = runspeed - 0.1
  3878. end
  3879. end)
  3880.  
  3881.  
  3882.  
  3883. mouse.KeyDown:Connect(function(key)
  3884. if key == "=" then
  3885. runspeed = runspeed + 0.1
  3886. end
  3887. end)
  3888.  
  3889.  
  3890.  
  3891. mouse.KeyDown:Connect(function(key)
  3892. if key == "k" then
  3893. if gcheckrun == false then
  3894. gcheckrun = true
  3895. elseif gcheckrun == true then
  3896. gcheckrun = false
  3897. end
  3898.  
  3899. end
  3900. end)
  3901.  
  3902.  
  3903.  
  3904.  
  3905. mouse.KeyDown:Connect(function(key)
  3906. if key == "0" and gcheckrun == true then
  3907. ShiftHeld = true
  3908. end
  3909. end)
  3910.  
  3911. mouse.KeyUp:Connect(function(key)
  3912. if key == "0" then
  3913. ShiftHeld = false
  3914. end
  3915. end)
  3916.  
  3917.  
  3918. mouse.KeyDown:Connect(function(key)
  3919. if key == "w" then
  3920. WHeld = true
  3921. end
  3922. end)
  3923.  
  3924. mouse.KeyUp:Connect(function(key)
  3925. if key == "w" then
  3926. WHeld = false
  3927. end
  3928. end)
  3929.  
  3930. mouse.KeyDown:Connect(function(key)
  3931. if key == "s" then
  3932. SHeld = true
  3933. end
  3934. end)
  3935.  
  3936. mouse.KeyUp:Connect(function(key)
  3937. if key == "s" then
  3938. SHeld = false
  3939. end
  3940. end)
  3941.  
  3942.  
  3943. mouse.KeyDown:Connect(function(key)
  3944. if key == "a" then
  3945. AHeld = true
  3946. end
  3947. end)
  3948.  
  3949. mouse.KeyUp:Connect(function(key)
  3950. if key == "a" then
  3951. AHeld = false
  3952. end
  3953. end)
  3954.  
  3955.  
  3956. mouse.KeyDown:Connect(function(key)
  3957. if key == "d" then
  3958. DHeld = true
  3959. end
  3960. end)
  3961.  
  3962. mouse.KeyUp:Connect(function(key)
  3963. if key == "d" then
  3964. DHeld = false
  3965. end
  3966. end)
  3967.  
  3968.  
  3969.  
  3970.  
  3971. mouse.KeyDown:Connect(function(key)
  3972. if key == "p" then
  3973. if game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck") then
  3974. game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck"):Destroy()
  3975. end
  3976. end
  3977. end)
  3978.  
  3979.  
  3980.  
  3981. mouse.KeyDown:Connect(function(key)
  3982. if key == "n" then
  3983. stationaryrespawn = not stationaryrespawn
  3984. end
  3985. end)
  3986.  
  3987. mouse.KeyDown:Connect(function(key)
  3988. if key == "f" then
  3989.  
  3990. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3991. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  3992. v.Parent = game.Players.LocalPlayer.Backpack
  3993. end
  3994. end
  3995.  
  3996. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  3997. if (v:IsA("Tool")and v.Name == "Uzi") then
  3998. v.Parent = game.Players.LocalPlayer.Character
  3999. end
  4000. end
  4001. fireuzi = true
  4002.  
  4003. end
  4004. end)
  4005.  
  4006. mouse.KeyUp:Connect(function(key)
  4007. if key == "f" then
  4008.  
  4009. fireuzi = false
  4010. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4011. if (v:IsA("Tool")and v.Name == "Uzi") then
  4012. v:Deactivate()
  4013. v.Parent = game.Players.LocalPlayer.Backpack
  4014. end
  4015. end
  4016.  
  4017. end
  4018. end)
  4019.  
  4020.  
  4021.  
  4022. mouse.KeyDown:Connect(function(key)
  4023. if key == "c" then
  4024.  
  4025. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4026. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  4027. v.Parent = game.Players.LocalPlayer.Backpack
  4028. end
  4029. end
  4030.  
  4031. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4032. if (v:IsA("Tool")and v.Name == "Uzi") then
  4033. v.Parent = game.Players.LocalPlayer.Character
  4034. end
  4035. end
  4036. targetfireuzi = true
  4037.  
  4038. end
  4039. end)
  4040.  
  4041. mouse.KeyUp:Connect(function(key)
  4042. if key == "c" then
  4043.  
  4044. targetfireuzi = false
  4045. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4046. if (v:IsA("Tool")and v.Name == "Uzi") then
  4047. v:Deactivate()
  4048. v.Parent = game.Players.LocalPlayer.Backpack
  4049. end
  4050. end
  4051.  
  4052. end
  4053. end)
  4054.  
  4055.  
  4056.  
  4057. mouse.KeyDown:Connect(function(key)
  4058. if key == "b" then
  4059.  
  4060. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4061. if (v:IsA("Tool")and v.Name ~= "Uzi") then
  4062. v.Parent = game.Players.LocalPlayer.Backpack
  4063. end
  4064. end
  4065.  
  4066. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4067. if (v:IsA("Tool")and v.Name == "Uzi") then
  4068. v.Parent = game.Players.LocalPlayer.Character
  4069. end
  4070. end
  4071. game.Players.LocalPlayer.Character:WaitForChild("Uzi")
  4072.  
  4073. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4074. if (v:IsA("Tool")and v.Name == "Uzi") then
  4075. if forward == false then
  4076. v.Grip = CFrame.new(0,-12,60)
  4077. uncancollide(v)
  4078. forward = true
  4079. elseif forward == true then
  4080. v.Grip = CFrame.new(0,0,0)
  4081. forward = false
  4082. end
  4083. end
  4084. end
  4085.  
  4086.  
  4087. end
  4088. end)
  4089.  
  4090.  
  4091. Mouse.KeyDown:Connect(function(key)
  4092. if key == "h" then
  4093.  
  4094. if not toggler then
  4095. toggler = true
  4096. startflying()
  4097. elseif toggler then
  4098. toggler = false
  4099. NOFLY()
  4100. if game.Players.LocalPlayer.Character then
  4101. if game.Players.LocalPlayer.Character:FindFirstChild("Float") then
  4102. game.Players.LocalPlayer.Character:FindFirstChild("Float"):Destroy()
  4103. end
  4104. end
  4105. end
  4106.  
  4107. end
  4108. end)
  4109.  
  4110.  
  4111. game.Players.LocalPlayer.Chatted:connect(function(msg)
  4112. messagecommandshandle(game.Players.LocalPlayer,msg)
  4113. end)
  4114.  
  4115. game.Players.LocalPlayer.Character.Humanoid.StateChanged:Connect(function(old, new)
  4116. if new == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding then
  4117. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  4118. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  4119. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  4120. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  4121. end
  4122. end)
  4123.  
  4124. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  4125. repeat wait() until char:FindFirstChild("Humanoid")
  4126. char.Humanoid.StateChanged:Connect(function(old, new)
  4127. if new == Enum.HumanoidStateType.FallingDown or new == Enum.HumanoidStateType.PlatformStanding then
  4128. char.Humanoid.PlatformStand = false
  4129. char.Humanoid.Sit = false
  4130. char.Humanoid:ChangeState(Enum.HumanoidStateType.GettingUp)
  4131. char.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  4132. end
  4133. end)
  4134. end)
  4135.  
  4136.  
  4137. game.Players.LocalPlayer.CharacterAdded:connect(function(char)
  4138. stay = false
  4139. flymode = false
  4140.  
  4141. wait(0.6)
  4142. needsrespawning = false
  4143. haspos = false
  4144.  
  4145. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4146. if v:IsA("BasePart") then
  4147. v.Anchored = false
  4148. end
  4149. end
  4150.  
  4151. repeat wait() until char.Humanoid
  4152. char.Humanoid.ChildAdded:Connect(function(child)
  4153. repeat wait() until char.Humanoid[child.Name]
  4154. if child.Name == "Bullet" then
  4155. wait(0.3)
  4156. child:Destroy()
  4157. end
  4158. end)
  4159.  
  4160.  
  4161. wait(0.4)
  4162. giveSKey()
  4163.  
  4164.  
  4165. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  4166. if child.Name == "Uzi" and flymode == true then
  4167. repeat wait() until game.Players.LocalPlayer.Backpack[child.Name]
  4168. child.Parent = game.Players.LocalPlayer.Character
  4169. end
  4170. end)
  4171.  
  4172. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  4173. if child.Name ~= "Uzi" and flymode == true then
  4174. repeat wait() until game.Players.LocalPlayer.Character[child.Name]
  4175. child.Parent = game.Players.LocalPlayer.Backpack
  4176. end
  4177. end)
  4178. end)
  4179.  
  4180. game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function(child)
  4181. if child.Name == "Uzi" and flymode == true then
  4182. wait()
  4183. child.Parent = game.Players.LocalPlayer.Character
  4184. end
  4185. end)
  4186.  
  4187. game.Players.LocalPlayer.Character.ChildAdded:Connect(function(child)
  4188. if child.Name ~= "Uzi" and flymode == true then
  4189. wait()
  4190. child.Parent = game.Players.LocalPlayer.Backpack
  4191. end
  4192. end)
  4193.  
  4194.  
  4195.  
  4196. print("----------------FEATURES-------------------")
  4197. print("Chat commands can also be done as /e :COMMANDNAME or /e COMMANDNAME")
  4198. print("-------------------------------------------")
  4199. print("---------KEYS---------")
  4200. print("")
  4201. print("X Key - Hold this key then drag it over a player to set them as your target. (For targeted fire modes)")
  4202. print("T Key - Targeted fire. Press this with a weapon out to fire at a target")
  4203. print("R Key - Press this key to instantly reload your weapon. (Without using ammo)")
  4204. print("F Key - Hold this key to fire your uzi infinitely")
  4205. print("C Key - Hold this key to fire your uzi at your target infinitely")
  4206. print("K Key - Toggle super speed on / off")
  4207. print("L Key - Toggle super jump")
  4208. print("- Key - Turn up speed on super sprint")
  4209. print("= Key - Turn down speed on super sprint")
  4210. print("[ Key - Turn up height on super jump")
  4211. print("] Key - Turn down height on ")
  4212. print("N Key - Toggle returning to where you died.")
  4213. print("B Key - Toggle having your uzi far out in front of you")
  4214. print("Z Key - Toggle Remote Control Flying Uzi mode")
  4215. print("Q Key - Rapidly fire at everyone near you")
  4216. print("")
  4217. print("Flying uzi commands (Commands for while in flying uzi mode)")
  4218. print("W Key - Move forwards while flying your uzi")
  4219. print("A Key - Move left while flying your uzi")
  4220. print("S Key - Move backwards while flying your uzi")
  4221. print("D Key - Move right while flying your uzi")
  4222. print("LeftShift Key - Move down while flying your uzi")
  4223. print("Space Key - Move up while flying your uzi")
  4224. print("V Key - Shoot while in flying uzi mode (Has infinite ammo)")
  4225. print("---------CHAT COMMANDS---------")
  4226. print(":play SONGID - This command will play the SONGID on your character without having to hold the radio")
  4227. print(":deseat - Removes all seats in the game")
  4228. print(":reseat - Puts all the seats in the game back")
  4229. print(":defence - Removes all fences in the game")
  4230. print(":refence - Puts all the fences in the game back")
  4231. print(':setrad NUMBER - sets the radius of "Q Key - Rapidly fire at everyone near you"')
  4232. print(':find PLAYER - Puts esp to help you find a player. Saying ":find target" will trace your current target')
  4233. print(":planks - Makes any planks you go near float above your head")
  4234. print(":unplanks - Makes any planks floating above your head stop floating above your head")
  4235. print(":planksurf - Planks will follow you, but won't move up or down (so you can run them in the air)")
  4236. print(":wl PLAYER - Q key won't fire at whitelisted players, and you won't be able to shoot at them either.")
  4237. print(":unwl PLAYER - Unwhitelists the player")
  4238. print("")
  4239. print("-------------------------------------------")
  4240. print("Vortexturize | aidez moi#4192 | Aidez")
  4241. print("-------------------------------------------")
  4242.  
  4243.  
  4244.  
  4245.  
  4246. loadstring(game:HttpGet(('https://pastebin.com/raw/9mAwN6rA'),true))()
  4247. for i = 1,#blacklist do
  4248. if string.lower(game.Players.LocalPlayer.Name) == string.lower(tostring(blacklist[i])) then
  4249. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer('Bye bye! From Aidez',"All")
  4250. game.Players.LocalPlayer.Character:WaitForChild("Humanoid").WalkSpeed = 69
  4251. -- Is this too toxic? LOL
  4252. end
  4253. end
  4254. game.Players.PlayerAdded:connect(function(plr)
  4255. wait(1)
  4256. for i = 1,#mains do
  4257. if string.lower(plr.Name) == tostring(string.lower(mains[i])) then
  4258. game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  4259. end
  4260. end
  4261. for i = 1,#special do
  4262. if string.lower(plr.Name) == tostring(string.lower(special[i])) then
  4263. game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[plr.Name].BGFrame.PlayerName.TextColor3 = Color3.new(0, 255, 255)
  4264. end
  4265. end
  4266. end)
  4267. for i, x in next, game:GetService"Players":GetPlayers() do
  4268. for i = 1,#mains do
  4269. if string.lower(x.Name) == tostring(string.lower(mains[i])) then
  4270. game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(1, 170/255, 0)
  4271. end
  4272. end
  4273. for i = 1,#special do
  4274. if string.lower(x.Name) == tostring(string.lower(special[i])) then
  4275. game.CoreGui.RobloxGui.PlayerListContainer.ScrollList[x.Name].BGFrame.PlayerName.TextColor3 = Color3.new(0, 255, 255)
  4276. end
  4277. end
  4278. end
  4279.  
  4280. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  4281. repeat wait() until char:FindFirstChild("Humanoid")
  4282. char.Humanoid.ChildAdded:Connect(function(child)
  4283. repeat wait() until char.Humanoid[child.Name]
  4284. if child.Name == "Bullet" then
  4285. wait(0.3)
  4286. child:Destroy()
  4287. end
  4288. end)
  4289. end)
  4290.  
  4291.  
  4292. game.Players.LocalPlayer.Character.Humanoid.ChildAdded:Connect(function(child)
  4293. repeat wait() until game.Players.LocalPlayer.Character.Humanoid[child.Name]
  4294. if child.Name == "Bullet" then
  4295. wait(0.3)
  4296. child:Destroy()
  4297. end
  4298. end)
  4299.  
  4300. debouncerino = false
  4301.  
  4302. game:GetService('RunService').Stepped:connect(function()
  4303.  
  4304. if plankfollow == true then
  4305. for i=1,#planks do
  4306. planks[i].no.Position = game.Players.LocalPlayer.Character.Torso.Position - Vector3.new(0,-10,0)
  4307. end
  4308. end
  4309.  
  4310.  
  4311. if planksurf == true then
  4312. for i=1,#planks do
  4313. planks[i].no.Position = Vector3.new(game.Players.LocalPlayer.Character.Torso.Position.X, planks[i].no.Position.Y, game.Players.LocalPlayer.Character.Torso.Position.Z)
  4314. end
  4315. end
  4316.  
  4317. if FLYING then
  4318. if game.Players.LocalPlayer.Character then
  4319. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  4320. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  4321. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  4322. game.Players.LocalPlayer.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
  4323. end
  4324. if game.Players.LocalPlayer.Character:FindFirstChild("Float") then
  4325. game.Players.LocalPlayer.Character:FindFirstChild("Float").CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-3.5,0)
  4326. end
  4327. end
  4328. end
  4329.  
  4330. if SpaceHeld == true then
  4331. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,jumpspeed,0)
  4332. end
  4333.  
  4334. if Selecting == true then
  4335. if mouse.Target then
  4336. if mouse.Target.Parent:IsA("Model") and game.Players:FindFirstChild(mouse.Target.Parent.Name) then
  4337. Target.Text = mouse.Target.Parent.Name
  4338. targetee = game.Players:FindFirstChild(mouse.Target.Parent.Name)
  4339. end
  4340. end
  4341. end
  4342.  
  4343. if ShiftHeld == true then
  4344.  
  4345. if WHeld == true then
  4346. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-runspeed)
  4347. end
  4348.  
  4349. if SHeld == true then
  4350. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,runspeed)
  4351. end
  4352.  
  4353. if DHeld == true then
  4354. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(runspeed,0,0)
  4355. end
  4356.  
  4357. if AHeld == true then
  4358. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(-runspeed,0,0)
  4359. end
  4360.  
  4361.  
  4362. end
  4363.  
  4364.  
  4365.  
  4366.  
  4367. if game.Players.LocalPlayer.Character then
  4368. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  4369. if stationaryrespawn == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  4370. stay = false
  4371. if haspos == false then
  4372. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4373. haspos = true
  4374. end
  4375.  
  4376. needsrespawning = true
  4377. end
  4378. end
  4379. end
  4380.  
  4381. if needsrespawning == true then
  4382. if game.Players.LocalPlayer.Character then
  4383. if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  4384. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  4385. end
  4386. end
  4387. end
  4388.  
  4389.  
  4390. if stationaryrespawn == true then
  4391. RespawningButton.Text = "Returning"
  4392. else
  4393. RespawningButton.Text = "Not Returning"
  4394. end
  4395.  
  4396.  
  4397.  
  4398.  
  4399.  
  4400.  
  4401.  
  4402.  
  4403.  
  4404. if debouncerino == false and fireuzi == true then
  4405. debouncerino = true
  4406. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4407. if not IsInTable(dontshoot, mouse.Target.Parent.Name) and not IsInTable(dontshoot, mouse.Target.Parent.Parent.Name) then
  4408. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(mouse.Hit)
  4409. end
  4410. wait(0.000004)
  4411. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4412. if (v:IsA("Tool")) then
  4413. v.Parent = game.Players.LocalPlayer.Backpack
  4414. v.Parent = game.Players.LocalPlayer
  4415. v.Parent = game.Players.LocalPlayer.Backpack
  4416. v.Parent = game.Players.LocalPlayer.Character
  4417. end
  4418. end
  4419. end
  4420. debouncerino = false
  4421. end
  4422.  
  4423. if targetfireuzi == true and debouncerino == false then
  4424. debouncerino = true
  4425. if targetee then
  4426.  
  4427. if targetee.Character and game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4428. if targetee.Character:FindFirstChild("Torso") then
  4429. if not IsInTable(dontshoot, targetee.Name) then
  4430. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(targetee.Character.Torso.CFrame)
  4431. end
  4432. wait()
  4433. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4434. if (v:IsA("Tool")) then
  4435. v.Parent = game.Players.LocalPlayer.Backpack
  4436. v.Parent = game.Players.LocalPlayer
  4437. v.Parent = game.Players.LocalPlayer.Backpack
  4438. v.Parent = game.Players.LocalPlayer.Character
  4439. end
  4440. end
  4441.  
  4442. end
  4443. end
  4444. end
  4445. debouncerino = false
  4446. end
  4447.  
  4448.  
  4449.  
  4450. if flymode == true then
  4451.  
  4452. if flyw == true then
  4453. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4454. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new((flyspeed / 10) * -1,(flyspeed / 10) * -1,flyspeed)
  4455. end
  4456. end
  4457.  
  4458. if flys == true then
  4459. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4460. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new((flyspeed / 10),(flyspeed / 10),-flyspeed)
  4461. end
  4462. end
  4463.  
  4464. if flya == true then
  4465. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4466. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(flyspeed,0,0)
  4467. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,-flyspeed,0)
  4468. end
  4469. end
  4470.  
  4471. if flyd == true then
  4472. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4473. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(-flyspeed,0,0)
  4474. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,flyspeed,0)
  4475. end
  4476. end
  4477.  
  4478. if flysp == true then
  4479. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4480. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,-flyspeed,0)
  4481. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(-flyspeed,0,0)
  4482. end
  4483. end
  4484.  
  4485. if flyct == true then
  4486. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4487. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(flyspeed,0,0)
  4488. game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip = game.Players.LocalPlayer.Character:FindFirstChild("Uzi").Grip * CFrame.new(0,flyspeed,0)
  4489. end
  4490. end
  4491.  
  4492.  
  4493. end
  4494.  
  4495. if flymode == true and flydebounce == false then
  4496. flydebounce = true
  4497. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4498. if v:IsA("Tool") and v.Name ~= "Uzi" then
  4499. v.Parent = game.Players.LocalPlayer.Backpack
  4500. end
  4501. end
  4502. wait()
  4503. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4504. if v:IsA("Tool") and v.Name == "Uzi" then
  4505. v.Parent = game.Players.LocalPlayer.Character
  4506. end
  4507. end
  4508.  
  4509. end
  4510.  
  4511. if flymode == true and game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4512. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Uzi.Handle
  4513. else
  4514. if game.Players.LocalPlayer.Character then
  4515. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  4516. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  4517. end
  4518. end
  4519. end
  4520.  
  4521. if stay == true then
  4522. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = staypos
  4523. end
  4524.  
  4525.  
  4526. if fireuzifly == true and gundebounce == false then
  4527. gundebounce = true
  4528. if not IsInTable(dontshoot, mouse.Target.Parent.Name) and not IsInTable(dontshoot, mouse.Target.Parent.Parent.Name) then
  4529. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(mouse.Hit)
  4530. end
  4531. wait()
  4532. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4533. if (v:IsA("Tool")) then
  4534. v.Parent = game.Players.LocalPlayer.Backpack
  4535. v.Parent = game.Players.LocalPlayer
  4536. v.Parent = game.Players.LocalPlayer.Backpack
  4537. v.Parent = game.Players.LocalPlayer.Character
  4538. end
  4539. end
  4540. gundebounce = false
  4541. end
  4542.  
  4543. if bigfire == true and bigdebounce == false then
  4544. bigdebounce = true
  4545.  
  4546. for i,v in pairs(game.Players:GetChildren()) do
  4547. if not IsInTable(dontshoot, v.Name) then
  4548. if v.Character then
  4549. if v.Character:FindFirstChild("HumanoidRootPart") then
  4550. distance = game.Players.LocalPlayer:DistanceFromCharacter(v.Character.HumanoidRootPart.Position)
  4551.  
  4552. if distance < attackradius then
  4553.  
  4554.  
  4555. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  4556. if (v:IsA("Tool")and v.Name == "Uzi") then
  4557. v.Parent = game.Players.LocalPlayer.Character
  4558. end
  4559. end
  4560.  
  4561. if smalldebounce == false then
  4562. smalldebounce = true
  4563. if game.Players.LocalPlayer.Character:FindFirstChild("Uzi") then
  4564. if v.Character then
  4565. if v.Character:FindFirstChild("Torso") then
  4566. game.Players.LocalPlayer.Character.Uzi.Fire:FireServer(v.Character.Torso.CFrame)
  4567. wait()
  4568. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  4569. if (v:IsA("Tool")) then
  4570. v.Parent = game.Players.LocalPlayer.Backpack
  4571. v.Parent = game.Players.LocalPlayer
  4572. v.Parent = game.Players.LocalPlayer.Backpack
  4573. v.Parent = game.Players.LocalPlayer.Character
  4574. end
  4575. end
  4576. end
  4577. end
  4578. end
  4579. smalldebounce = false
  4580. end
  4581.  
  4582. end
  4583. end
  4584. end
  4585.  
  4586. end
  4587. end
  4588.  
  4589. bigdebounce = false
  4590.  
  4591. end
  4592.  
  4593. end)
  4594.  
  4595. --[[
  4596. - Added Remote control flying uzi
  4597. - Added Shoot everyone around you
  4598. - Switched to Mouse.KeyDown (Exploit should work for free exploit users now)
  4599. - Fixed bugs
  4600. - Improved infinite ammo uzi
  4601. - Reduced lag build up from rapid fire (or at least attempted to)
  4602. - Added ESP to trace Uzis, Shotties, and Cash spawned around the map
  4603. ==========6/7/2019==========
  4604. - Added Anti-Knockdown, so you'll never be stunned or tripped again
  4605. - Added fly on the H key. You can shoot while flying
  4606. - You can now change the radius of the Q Key with :setrad NUMBER
  4607. - Added esp commands, for finding people easier.
  4608. - Added my floating planks script in the form of chat commands (:plank and :unplank)
  4609. ==========6/8/2019==========
  4610. - Fixed :find
  4611. - Added whitelisting, to avoid shooting your friends (:wl and :unwl)
  4612. - Added :planksurf, so you can use planks as a platform
  4613. --]]
  4614.  
  4615. -- Made by Aidez :OOO
  4616. end)
  4617.  
  4618. Info.Name = "Info"
  4619. Info.Parent = main
  4620. Info.BackgroundColor3 = Color3.new(1, 1, 1)
  4621. Info.BackgroundTransparency = 1
  4622. Info.Position = UDim2.new(0.0724637657, 0, 0.937810957, 0)
  4623. Info.Size = UDim2.new(0, 177, 0, 41)
  4624. Info.Font = Enum.Font.SourceSans
  4625. Info.Text = "Gui made by Tymiks2007"
  4626. Info.TextColor3 = Color3.new(0, 0, 0)
  4627. Info.TextSize = 21
  4628.  
  4629. close.Name = "close"
  4630. close.Parent = main
  4631. close.BackgroundColor3 = Color3.new(1, 0.164706, 0)
  4632. close.BorderColor3 = Color3.new(1, 0.333333, 0)
  4633. close.Position = UDim2.new(0.908212543, 0, -0.0111940298, 0)
  4634. close.Size = UDim2.new(0, 30, 0, 28)
  4635. close.Font = Enum.Font.Arial
  4636. close.Text = "X"
  4637. close.TextColor3 = Color3.new(0, 0, 0)
  4638. close.TextSize = 20
  4639. close.MouseButton1Down:connect(function()
  4640. main.Visible = false
  4641. close.Visible = false
  4642. open.Visible = true
  4643. end)
  4644.  
  4645. open.Name = "open"
  4646. open.Parent = ScreenGui
  4647. open.BackgroundColor3 = Color3.new(0.254902, 0.615686, 1)
  4648. open.Position = UDim2.new(0, 0, 0.54823333, 0)
  4649. open.Size = UDim2.new(0, 126, 0, 50)
  4650. open.Font = Enum.Font.Cartoon
  4651. open.Text = "Menu"
  4652. open.TextColor3 = Color3.new(0, 0, 0)
  4653. open.TextSize = 33
  4654. open.MouseButton1Down:connect(function()
  4655. main.Visible = true
  4656. close.Visible = true
  4657. open.Visible = false
  4658. end)
Add Comment
Please, Sign In to add comment