Advertisement
Prokri43

MOONGOD V3

Aug 3rd, 2023
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 118.96 KB | None | 0 0
  1.  
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro2/main/ui2"))()
  3. local NotifyLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro/main/ui"))()
  4. NotifyLib.prompt('Moon God - Q To Lock - Revamped by Valox', 'Loading..', 5)
  5. NotifyLib.prompt('Moon God - Revamped by Valox', 'best lock ong - valox', 5)
  6. NotifyLib.prompt('Moon God - Revamped by Valox', 'yarn#0001, Valox#8980', 5)
  7.  
  8.  
  9. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/qvrwd/etarry/main/libraries/ui/splix"))()
  10.  
  11.  
  12. -- Security
  13.  
  14.  
  15. -- Locals
  16.  
  17. local LocalPlayer = game.Players.LocalPlayer
  18.  
  19. local Mouse = LocalPlayer:GetMouse()
  20.  
  21. local RunService = game:GetService("RunService")
  22.  
  23. local workspace = game:GetService("Workspace")
  24.  
  25. local Light = game:GetService("Lighting")
  26.  
  27. local camera = workspace.CurrentCamera
  28.  
  29. local worldToViewportPoint = camera.worldToViewportPoint
  30.  
  31. -- Functions
  32.  
  33. local function fail(r) return LocalPlayer:Kick(r) end
  34.  
  35. local usedCache = shared.__urlcache and next(shared.__urlcache) ~= nil
  36.  
  37. shared.__urlcache = shared.__urlcache or {}
  38. local function httpload(url)
  39. local success, result
  40.  
  41. if shared.__urlcache[url] then
  42. success, result = true, shared.__urlcache[url]
  43. else
  44. success, result = pcall(game.HttpGet, game, url)
  45. end
  46.  
  47. if (not success) then
  48. return fail(string.format('Failed to GET url %q for reason: %q', url, tostring(result)))
  49. end
  50.  
  51. local fn, err = loadstring(result)
  52. if (type(fn) ~= 'function') then
  53. return fail(string.format('Failed to loadstring url %q for reason: %q', url, tostring(err)))
  54. end
  55.  
  56. local results = { pcall(fn) }
  57. if (not results[1]) then
  58. return fail(string.format('Failed to initialize url %q for reason: %q', url, tostring(results[2])))
  59. end
  60.  
  61. shared.__urlcache[url] = result
  62. return unpack(results, 2)
  63. end
  64.  
  65. local prefix = "moongod: "
  66.  
  67. local function log(text)
  68. print(prefix..text)
  69. end
  70.  
  71. local function warn(text)
  72. warn(prefix..text)
  73. end
  74.  
  75. -- Anti Cheat Bypass
  76.  
  77.  
  78. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  79.  
  80. local MainEvent = ReplicatedStorage.MainEvent
  81.  
  82. local HB = RunService.Heartbeat
  83.  
  84. do
  85. local oldFunc = nil
  86.  
  87. oldFunc = hookfunction(MainEvent.FireServer, newcclosure(function(Event, ...)
  88. local args = {...}
  89.  
  90. if args[1] == "CHECKER_1" or args[1] == "TeleportDetect" or args[1] == "OneMoreTime" then
  91. return nil
  92. end
  93.  
  94. return oldFunc(Event, ...)
  95. end))
  96.  
  97. HB:Connect(function()
  98. local root = LocalPlayer.Character and LocalPlayer.Character.PrimaryPart
  99.  
  100. if root then
  101. for i,v in pairs(getconnections(root:GetPropertyChangedSignal("CFrame"))) do
  102. v:Disable()
  103. end
  104. end
  105. end)
  106.  
  107. local function added(char)
  108. while true do
  109. if not char then return end
  110. HB:Wait()
  111. for i,v in pairs(char:GetChildren()) do
  112. if v:IsA("Script") and v:FindFirstChildOfClass("LocalScript") then
  113. v:FindFirstChildOfClass("LocalScript").Source = "Cleared by moongod"
  114. return
  115. end
  116. end
  117. end
  118. end
  119.  
  120. if LocalPlayer.Character then
  121. added(LocalPlayer.Character)
  122. end
  123.  
  124. LocalPlayer.CharacterAdded:Connect(added)
  125.  
  126. end
  127.  
  128. log("Bypassed Anti-Cheat")
  129.  
  130. -- Aiming
  131.  
  132.  
  133.  
  134. local guimain = Instance.new("Folder", game.CoreGui)
  135. local CC = game:GetService "Workspace".CurrentCamera
  136. local LocalMouse = game.Players.LocalPlayer:GetMouse()
  137. local Locking = false
  138. local cc = game:GetService("Workspace").CurrentCamera
  139. local gs = game:GetService("GuiService")
  140. local ggi = gs.GetGuiInset
  141. local lp = game:GetService("Players").LocalPlayer
  142. local mouse = lp:GetMouse()
  143.  
  144. local Tracer = Drawing.new("Line")
  145. Tracer.Visible = false
  146. Tracer.Color = Color3.fromRGB(255, 20, 88)
  147. Tracer.Thickness = 1
  148. Tracer.Transparency = 1
  149.  
  150. local sound = Instance.new("Sound", game.Workspace)
  151. sound.SoundId = "rbxassetid://8819783960"
  152.  
  153. if not sound.IsLoaded then
  154. sound.Loaded:wait()
  155. end
  156.  
  157. local sound1 = Instance.new("Sound", game.Workspace)
  158. sound1.SoundId = "rbxassetid://8819782435"
  159.  
  160. if not sound1.IsLoaded then
  161. sound1.Loaded:wait()
  162. end
  163.  
  164.  
  165. local StepTable = {}
  166. local function BindToSteppedold(name, num, func)
  167. if StepTable[name] == nil then
  168. StepTable[name] = game:GetService("RunService").Stepped:connect(func)
  169. end
  170. end
  171.  
  172. local function UnbindFromSteppedold(name)
  173. if StepTable[name] then
  174. StepTable[name]:Disconnect()
  175. StepTable[name] = nil
  176. end
  177. end
  178.  
  179. function x(tt, tx, cc, tc)
  180. game.StarterGui:SetCore(
  181. "SendNotification",
  182. {
  183. Title = tt,
  184. Text = tx,
  185. Duration = cc,
  186. Icon = tc
  187. }
  188. )
  189. end
  190.  
  191. local UserInputService = game:GetService("UserInputService")
  192.  
  193. UserInputService.InputBegan:Connect(
  194. function(keygo, ok)
  195. if (not ok) then
  196. if (keygo.KeyCode == getgenv().Key) then
  197. if getgenv().loltoggle then
  198. Locking = not Locking
  199. if Locking then
  200. Plr = getClosestPlayerToCursor()
  201. getgenv().targetenabledV3 = true
  202. if getgenv().Notificationmode then
  203. StarterGui:SetCore(
  204. "SendNotification",
  205. {
  206. Title = "yarn",
  207. Text = "" ..Plr.DisplayName,
  208. Duration = 3,
  209. Icon = "https://www.roblox.com/headshot-thumbnail/image?userId=" .. Plr .."&width=420&height=420&format=png"
  210. })
  211. end
  212. if getgenv().ViewMode == true then
  213. game.Workspace.CurrentCamera.CameraSubject = Plr.Character
  214. end
  215. if getgenv().ChatMode == true then
  216. local A_3 = "yarn: "..Plr.DisplayName
  217. local A_4 = "All"
  218. local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  219. Event:FireServer(A_3, A_4)
  220. end
  221. if getgenv().TPToPlayer == true then
  222. LocalPlayer.Character.HumanoidRootPart.CFrame = Plr.Character.HumanoidRootPart.CFrame
  223. end
  224. if getgenv().BenMode == true then
  225. sound:Play()
  226. end
  227. if getgenv().TargetStrafeV3 == true then
  228. getgenv().TSV3Multiplier = 5
  229. getgenv().TSV3Distance = 5
  230. local i = 0
  231. BindToSteppedold("TargetStrafev3", nil, function(dt)
  232. i = (i + dt/getgenv().TSV3Multiplier) % 1
  233. local alpha = 2 * math.pi * i
  234.  
  235. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.Angles(0, alpha, 0)
  236. * CFrame.new(0, 0, getgenv().TSV3Distance)
  237. + Plr.Character.HumanoidRootPart.Position
  238. end)
  239. end
  240. elseif not Locking then
  241. UnbindFromSteppedold("TargetStrafev3")
  242. if getgenv().Notificationmode then
  243. x("yarn", "Unlocked", 3)
  244. end
  245. if getgenv().ViewMode == true then
  246. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  247. end
  248.  
  249. if getgenv().ChatMode == true then
  250. local A_1 = "Unlocked"
  251. local A_2 = "All"
  252. local Event = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  253. Event:FireServer(A_1, A_2)
  254. end
  255. if getgenv().BenMode == true then
  256. sound1:Play()
  257. end
  258. end
  259. end
  260. end
  261. end
  262. end
  263. )
  264.  
  265. RunService.Heartbeat:Connect(function()
  266. if getgenv().LookAt == true then
  267. local Char = game.Players.LocalPlayer.Character
  268. local PrimaryPartOfChar = game.Players.LocalPlayer.Character.PrimaryPart
  269. local NearestChar = Plr.Character
  270. local NearestRoot = Plr.Character.HumanoidRootPart
  271. local NearestPos = CFrame.new(PrimaryPartOfChar.Position, Vector3.new(NearestRoot.Position.X, NearestRoot.Position.Y, NearestRoot.Position.Z))
  272. Char:SetPrimaryPartCFrame(NearestPos)
  273. else
  274. local Char = game.Players.LocalPlayer.Character
  275. local PrimaryPartOfChar = game.Players.LocalPlayer.Character.PrimaryPart
  276. local NearestChar = LocalPlayer.Character
  277. local NearestRoot = LocalPlayer.Character.HumanoidRootPart
  278. local NearestPos = CFrame.new(PrimaryPartOfChar.Position, Vector3.new(NearestRoot.Position.X, NearestRoot.Position.Y, NearestRoot.Position.Z))
  279. Char:SetPrimaryPartCFrame(LocalPlayer)
  280. end
  281. end)
  282.  
  283. function getClosestPlayerToCursor()
  284. local closestPlayer
  285. local shortestDistance = 137
  286.  
  287. for i, v in pairs(game.Players:GetPlayers()) do
  288. if
  289. v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Humanoid") and
  290. v.Character.Humanoid.Health ~= 0 and
  291. v.Character:FindFirstChild("LowerTorso")
  292. then
  293. local pos = CC:WorldToViewportPoint(v.Character.PrimaryPart.Position)
  294. local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(LocalMouse.X, LocalMouse.Y)).magnitude
  295. if magnitude < shortestDistance then
  296. closestPlayer = v
  297. shortestDistance = magnitude
  298. end
  299. end
  300. end
  301. return closestPlayer
  302. end
  303.  
  304.  
  305.  
  306.  
  307. local rawmetatable = getrawmetatable(game)
  308. local old = rawmetatable.__namecall
  309. setreadonly(rawmetatable, false)
  310. rawmetatable.__namecall =
  311. newcclosure(
  312. function(...)
  313. local args = {...}
  314. if Locking and getnamecallmethod() == "FireServer" and args[2] == "UpdateMousePos" then
  315. args[3] =
  316. Plr.Character[getgenv().Partz].Position + (Plr.Character[getgenv().Partz].Velocity * Prediction / 10)
  317. return old(unpack(args))
  318. end
  319. return old(...)
  320. end
  321. )
  322.  
  323. local LocalPlayer = game.Players.LocalPlayer
  324. local mouse = LocalPlayer:GetMouse()
  325.  
  326. _G.TracerVisible = false
  327. _G.TracerColor = Color3.fromRGB(255, 255, 255)
  328. _G.TracerThickness = 3
  329. _G.TracerTransparency = 1
  330.  
  331. _G.CircleSides = 3604
  332. _G.CircleColor = Color3.fromRGB(255, 20, 88)
  333. _G.CircleTransparency = 0.5
  334. _G.CircleRadius = 80
  335. _G.CircleFilled = false
  336. _G.CircleVisible = false
  337. _G.CircleThickness = 0
  338.  
  339. circle = Drawing.new("Circle")
  340. circle.Color = Color3.fromRGB(255, 20, 88)
  341. circle.Thickness = 0.1
  342. circle.Transparency = 0.5
  343. circle.NumSides = 64
  344. circle.Radius = 64
  345. circle.Visible = false
  346. circle.Filled = true
  347. getgenv().autoclick = false
  348. game:GetService("RunService").RenderStepped:Connect(
  349. function()
  350. if getgenv().autosetup == true then
  351. local pingvalue = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString()
  352. local split = string.split(pingvalue, " ")
  353. local ping = split[1]
  354. if tonumber(ping) < 30 then
  355. getgenv().Prediction = 1.14
  356. elseif tonumber(ping) <= 30 then
  357. if tonumber(ping) < 40 then
  358. getgenv().Prediction = 1.16
  359. elseif tonumber(ping) <= 40 then
  360. if tonumber(ping) < 50 then
  361. getgenv().Prediction = 1.19
  362. elseif tonumber(ping) <= 50 then
  363. if tonumber(ping) < 70 then
  364. getgenv().Prediction = 1.22
  365. elseif tonumber(ping) <= 80 then
  366. getgenv().Prediction = 1.38
  367. elseif tonumber(ping) <= 80 then
  368. getgenv().Prediction = 1.39
  369. elseif tonumber(ping) <= 90 then
  370. getgenv().Prediction = 1.42
  371. elseif tonumber(ping) <= 150 then
  372. getgenv().Prediction = 1.51
  373. elseif tonumber(ping) >= 200 then
  374. getgenv().Prediction = 1.69
  375. end
  376. end
  377. end
  378. end
  379. end
  380.  
  381. circle.Position =
  382. Vector2.new(
  383. game:GetService("UserInputService"):GetMouseLocation().X,
  384. game:GetService("UserInputService"):GetMouseLocation().Y
  385. )
  386. circle.Radius = _G.CircleRadius
  387. circle.Filled = _G.CircleFilled
  388. circle.Color = _G.CircleColor
  389. circle.Visible = _G.CircleVisible
  390. circle.Radius = _G.CircleRadius
  391. circle.Transparency = _G.CircleTransparency
  392. circle.NumSides = _G.CircleSides
  393. circle.Thickness = _G.CircleThickness
  394. Tracer.Visible = _G.TracerVisible
  395. Tracer.Color = _G.TracerColor
  396. Tracer.Thickness = _G.TracerThickness
  397. Tracer.Transparency = _G.TracerTransparency
  398. if getgenv().AirshotFunccc == true then
  399. if Plr.Character.Humanoid.Jump == true and Plr.Character.Humanoid.FloorMaterial == Enum.Material.Air then
  400. getgenv().Partz = "RightFoot"
  401. else
  402. Plr.Character:WaitForChild("Humanoid").StateChanged:Connect(
  403. function(old, new)
  404. if new == Enum.HumanoidStateType.Freefall then
  405. getgenv().Partz = "RightFoot"
  406. else
  407. getgenv().Partz = "LowerTorso"
  408. end
  409. end
  410. )
  411. end
  412. end
  413.  
  414. if getgenv().Tracer == true and Locking then
  415. local Vector, OnScreen =
  416. cc:worldToViewportPoint(
  417. Plr.Character[getgenv().Partz].Position + (Plr.Character[getgenv().Partz].Velocity * Prediction / 10)
  418. )
  419. Tracer.Visible = true
  420. Tracer.From = Vector2.new(mouse.X, mouse.Y + ggi(gs).Y)
  421. Tracer.To = Vector2.new(Vector.X, Vector.Y)
  422. elseif getgenv().Tracer == false then
  423. Tracer.Visible = false
  424. end
  425. end)
  426. game:GetService("RunService").Heartbeat:Connect(
  427. function()
  428. if cframespeedtoggle == true then
  429. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  430. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
  431. game.Players.LocalPlayer.Character.Humanoid.MoveDirection * speedvalue
  432. end
  433. if Spinbot then
  434. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  435. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad((positive1)), 0)
  436. end
  437. if Jitter then
  438. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  439. CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Position) *
  440. CFrame.Angles(0, math.rad(Angle) + math.rad((math.random(1, 2) == 1 and Jit or -Jit)), 0)
  441. end
  442.  
  443. if AntiAim1 then
  444. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity =
  445. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * -250
  446. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  447. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(555), 0)
  448. end
  449. if AntiAim2 then
  450. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  451. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 1.333, 0)
  452. wait(0.2)
  453. end
  454. if getgenv().antilock then
  455. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  456. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
  457. -game.Players.LocalPlayer.Character.Humanoid.MoveDirection * getgenv().antilockspeed
  458. end
  459. if getgenv().DesyncEnabled then
  460. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Velocity = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * getgenv().DesyncVelocity
  461. game:GetService("RunService").Heartbeat:Wait()
  462. end
  463. if getgenv().antistomplo then
  464. if game.Players.LocalPlayer.Character.Humanoid.Health <= 5 then
  465. for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  466. if v:IsA("BasePart") then
  467. v:Destroy()
  468. end
  469. end
  470. end
  471. end
  472. if getgenv().antislow then
  473. local player = game.Players.LocalPlayer
  474. local DeletePart =
  475. player.Character.BodyEffects.Movement:FindFirstChild("NoJumping") or
  476. player.Character.BodyEffects.Movement:FindFirstChild("ReduceWalk") or
  477. player.Character.BodyEffects.Movement:FindFirstChild("NoWalkSpeed")
  478. if DeletePart then
  479. DeletePart:Destroy()
  480. end
  481. if player.Character.BodyEffects.Reload.Value == true then
  482. player.Character.BodyEffects.Reload.Value = false
  483. end
  484. end
  485. if getgenv().AutoReloadx then
  486. if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  487. if
  488. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  489. "Ammo"
  490. )
  491. then
  492. if
  493. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  494. "Ammo"
  495. ).Value <= 0
  496. then
  497. game:GetService("ReplicatedStorage").MainEvent:FireServer(
  498. "Reload",
  499. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool")
  500. )
  501. end
  502. end
  503. end
  504. end
  505. if getgenv().autostomp then
  506. game.ReplicatedStorage.MainEvent:FireServer("Stomp")
  507. end
  508. if getgenv().antibag then
  509. game.Players.LocalPlayer.Character["Christmas_Sock"]:Destroy()
  510. end
  511. end)
  512.  
  513. -- Visuals --
  514.  
  515. local ESPSettings = {
  516. SkeletonESPEnabled = false,
  517. RainbowsESPEnabled = false,
  518. TextOutlineEnabled = false,
  519. TeamCheckEnabled = false,
  520. MouseFrom = false,
  521. CustomColor = true,
  522. BottomFrom = true,
  523. HeadFrom = false,
  524. RoundedCorner = 12,
  525. Length = 14,
  526. ESPColor = Color3.fromRGB(255,255,255),
  527. Thickness = 1,
  528. TextSize = 15,
  529. Transparency = 1,
  530. HeadOff = Vector3.new(0,0.5,0),
  531. LegOff = Vector3.new(0,3,0)
  532. }
  533.  
  534. -- Drawings --
  535.  
  536. Circle = Drawing.new("Circle")
  537. Circle.Color = Color3.fromRGB(101, 90, 173)
  538. Circle.Thickness = 2
  539. Circle.NumSides = 120
  540. Circle.Radius = 70
  541. Circle.Visible = false
  542. Circle.Filled = false
  543. Circle.Transparency = 1
  544.  
  545. RunService.RenderStepped:Connect(function()
  546. Circle.Position = Vector2.new(Mouse.X, Mouse.Y + 35)
  547. end)
  548.  
  549. -- Loadstrings
  550.  
  551. local Kiriot = httpload("https://raw.githubusercontent.com/fakecurfew/storage/main/libraries/esp/kiriot")
  552.  
  553. local Pika = httpload("https://raw.githubusercontent.com/trendyylol/roblox/main/Libraries/ESP/Pikahub")
  554.  
  555. local Lowfi = httpload("https://raw.githubusercontent.com/trendyylol/roblox/main/Libraries/ESP/Lowfi")
  556.  
  557.  
  558. local window = library:new({textsize = 13.5,font = Enum.Font.RobotoMono,name = "Moon God V2",color = Color3.fromRGB(204, 255, 255)})
  559.  
  560. local tab = window:page({name = "Legit"})
  561. local tab2 = window:page({name = "Visuals"})
  562. local tab3 = window:page({name = "Misc"})
  563. local tab4 = window:page({name = "Teleports"})
  564.  
  565.  
  566.  
  567.  
  568. getgenv().Key = Enum.KeyCode.Q
  569. getgenv().Prediction = 1.35
  570. getgenv().AirshotFunccc = false
  571. getgenv().Tracer = false
  572. getgenv().Partz = "UpperTorso"
  573. getgenv().Notificationmode = false
  574. getgenv().ViewMode = false
  575. getgenv().Spinbot = false
  576. getgenv().Jitter = false
  577. getgenv().positive1 = 45
  578. local Jit = math.random(30, 90)
  579. getgenv().Angle = 60
  580. getgenv().DesyncEnabled = false
  581. getgenv().DesyncVelocity = 15
  582. getgenv().BenMode = false
  583. getgenv().TPToPlayer = false
  584. getgenv().LookAt = false
  585. getgenv().AntiAim1 = false
  586. getgenv().AntiAim2 = false
  587. getgenv().antistomplo = false
  588. getgenv().autoreload = false
  589. getgenv().autostomp = false
  590. getgenv().antibag = false
  591. getgenv().antislow = false
  592.  
  593. local section1 = tab:section({name = "Strafe",side = "right",size = 80})
  594.  
  595. section1:toggle({name = "Enable",def = false, callback = function(bool)
  596. getgenv().TargetStrafeV3 = bool
  597. end})
  598.  
  599.  
  600. section1:slider({name = "Strafe Distance",def = 5, max = 100,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  601. getgenv().TSV3Distance = value
  602. end})
  603.  
  604.  
  605.  
  606. local section1 = tab:section({name = "Main",side = "left",size = 185})
  607.  
  608. section1:toggle({name = "Enable",def = false, callback = function(bool)
  609. getgenv().loltoggle = bool
  610. end})
  611.  
  612. section1:toggle({name = "Ping Based ",def = false, callback = function(bool)
  613. getgenv().autosetup = bool
  614. end})
  615.  
  616.  
  617. section1:toggle({name = "Teleport ",def = false, callback = function(bool)
  618. getgenv().TPToPlayer = bool
  619. end})
  620.  
  621. section1:toggle({name = "View ",def = false ,callback = function(bool)
  622. getgenv().ViewMode = bool
  623. end})
  624.  
  625. section1:toggle({name = "Airshot ",def = false, callback = function(bool)
  626. getgenv().AirshotFunccc = bool
  627. end})
  628.  
  629. section1:toggle({name = "Tracer ",def = false, callback = function(bool)
  630. getgenv().Tracer = bool
  631. end})
  632.  
  633. section1:toggle({name = "Notification ",def = false, callback = function(bool)
  634. getgenv().Notificationmode = bool
  635. end})
  636.  
  637. section1:toggle({name = "Look ",def = false, callback = function(bool)
  638. getgenv().LookAt = bool
  639. end})
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649. local section1 = tab:section({name = "Settings",side = "left",size = 185})
  650.  
  651. section1:colorpicker({name = "Tracer Color",cpname = nil,def = Color3.fromRGB(255,255,255),callback = function(color)
  652. _G.TracerColor = color
  653. end})
  654.  
  655. section1:slider({name = "Thickness",def = 3, max = 5,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  656. _G.TracerThickness = value
  657. end})
  658.  
  659.  
  660. section1:dropdown({name = "Target Part",def = "HumanoidRootPart",max = 10,options = {"Head", "UpperTorso", "HumanoidRootPart", "LowerTorso", "LeftUpperLeg", "RightUpperLeg", "LeftLowerLeg", "RightLowerLeg", "LeftFoot", "RightFoot"},callback = function(part)
  661. getgenv().Partz = part
  662. end})
  663.  
  664. section1:dropdown({name = "Airshot Part",def = "RightFoot",max = 10,options = {"Head", "HumanoidRootPart", "LowerTorso", "LeftUpperLeg", "RightUpperLeg", "LeftLowerLeg", "RightLowerLeg", "LeftFoot", "RightFoot"},callback = function(part)
  665. getgenv().airshotpart = part
  666. end})
  667.  
  668. section1:slider({name = "Prediction",def = 1.25, max = 6,min = 0.5,rounding = false,ticking = false,measuring = "",callback = function(value)
  669. getgenv().Prediction = value
  670. end})
  671.  
  672.  
  673. local section1 = tab:section({name = "Extra",side = "right",size = 100})
  674. section1:button({name = "Trace Lock = X",callback = function()
  675. getgenv().OldAimPart = "UpperTorso"
  676. getgenv().AimPart = "UpperTorso" -- For R15 Games: {UpperTorso, LowerTorso, HumanoidRootPart, Head} | For R6 Games: {Head, Torso, HumanoidRootPart}
  677. getgenv().AimlockKey = "x"
  678. getgenv().AimRadius = 30 -- How far away from someones character you want to lock on at
  679. getgenv().ThirdPerson = true
  680. getgenv().FirstPerson = true
  681. getgenv().TeamCheck = false -- Check if Target is on your Team (True means it wont lock onto your teamates, false is vice versa) (Set it to false if there are no teams)
  682. getgenv().PredictMovement = true -- Predicts if they are moving in fast velocity (like jumping) so the aimbot will go a bit faster to match their speed
  683. getgenv().PredictionVelocity = 6.612
  684. getgenv().CheckIfJumped = true
  685. getgenv().Smoothness = true
  686. getgenv().SmoothnessAmount = 0.0452
  687.  
  688. local Players, Uis, RService, SGui = game:GetService"Players", game:GetService"UserInputService", game:GetService"RunService", game:GetService"StarterGui";
  689. local Client, Mouse, Camera, CF, RNew, Vec3, Vec2 = Players.LocalPlayer, Players.LocalPlayer:GetMouse(), workspace.CurrentCamera, CFrame.new, Ray.new, Vector3.new, Vector2.new;
  690. local Aimlock, MousePressed, CanNotify = true, false, false;
  691. local AimlockTarget;
  692. local OldPre;
  693.  
  694.  
  695.  
  696. getgenv().WorldToViewportPoint = function(P)
  697. return Camera:WorldToViewportPoint(P)
  698. end
  699.  
  700. getgenv().WorldToScreenPoint = function(P)
  701. return Camera.WorldToScreenPoint(Camera, P)
  702. end
  703.  
  704. getgenv().GetObscuringObjects = function(T)
  705. if T and T:FindFirstChild(getgenv().AimPart) and Client and Client.Character:FindFirstChild("Head") then
  706. local RayPos = workspace:FindPartOnRay(RNew(
  707. T[getgenv().AimPart].Position, Client.Character.Head.Position)
  708. )
  709. if RayPos then return RayPos:IsDescendantOf(T) end
  710. end
  711. end
  712.  
  713. getgenv().GetNearestTarget = function()
  714. -- Credits to whoever made this, i didnt make it, and my own mouse2plr function kinda sucks
  715. local players = {}
  716. local PLAYER_HOLD = {}
  717. local DISTANCES = {}
  718. for i, v in pairs(Players:GetPlayers()) do
  719. if v ~= Client then
  720. table.insert(players, v)
  721. end
  722. end
  723. for i, v in pairs(players) do
  724. if v.Character ~= nil then
  725. local AIM = v.Character:FindFirstChild("Head")
  726. if getgenv().TeamCheck == true and v.Team ~= Client.Team then
  727. local DISTANCE = (v.Character:FindFirstChild("Head").Position - game.Workspace.CurrentCamera.CFrame.p).magnitude
  728. local RAY = Ray.new(game.Workspace.CurrentCamera.CFrame.p, (Mouse.Hit.p - game.Workspace.CurrentCamera.CFrame.p).unit * DISTANCE)
  729. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  730. local DIFF = math.floor((POS - AIM.Position).magnitude)
  731. PLAYER_HOLD[v.Name .. i] = {}
  732. PLAYER_HOLD[v.Name .. i].dist= DISTANCE
  733. PLAYER_HOLD[v.Name .. i].plr = v
  734. PLAYER_HOLD[v.Name .. i].diff = DIFF
  735. table.insert(DISTANCES, DIFF)
  736. elseif getgenv().TeamCheck == false and v.Team == Client.Team then
  737. local DISTANCE = (v.Character:FindFirstChild("Head").Position - game.Workspace.CurrentCamera.CFrame.p).magnitude
  738. local RAY = Ray.new(game.Workspace.CurrentCamera.CFrame.p, (Mouse.Hit.p - game.Workspace.CurrentCamera.CFrame.p).unit * DISTANCE)
  739. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  740. local DIFF = math.floor((POS - AIM.Position).magnitude)
  741. PLAYER_HOLD[v.Name .. i] = {}
  742. PLAYER_HOLD[v.Name .. i].dist= DISTANCE
  743. PLAYER_HOLD[v.Name .. i].plr = v
  744. PLAYER_HOLD[v.Name .. i].diff = DIFF
  745. table.insert(DISTANCES, DIFF)
  746. end
  747. end
  748. end
  749.  
  750. if unpack(DISTANCES) == nil then
  751. return nil
  752. end
  753.  
  754. local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
  755. if L_DISTANCE > getgenv().AimRadius then
  756. return nil
  757. end
  758.  
  759. for i, v in pairs(PLAYER_HOLD) do
  760. if v.diff == L_DISTANCE then
  761. return v.plr
  762. end
  763. end
  764. return nil
  765. end
  766.  
  767. Mouse.KeyDown:Connect(function(a)
  768. if not (Uis:GetFocusedTextBox()) then
  769. if a == AimlockKey and AimlockTarget == nil then
  770. pcall(function()
  771. if MousePressed ~= true then MousePressed = true end
  772. local Target;Target = GetNearestTarget()
  773. if Target ~= nil then
  774. AimlockTarget = Target
  775. end
  776. end)
  777. elseif a == AimlockKey and AimlockTarget ~= nil then
  778. if AimlockTarget ~= nil then AimlockTarget = nil end
  779. if MousePressed ~= false then
  780. MousePressed = false
  781. end
  782. end
  783. end
  784. end)
  785.  
  786. RService.RenderStepped:Connect(function()
  787. if getgenv().ThirdPerson == true and getgenv().FirstPerson == true then
  788. if (Camera.Focus.p - Camera.CoordinateFrame.p).Magnitude > 1 or (Camera.Focus.p - Camera.CoordinateFrame.p).Magnitude <= 1 then
  789. CanNotify = true
  790. else
  791. CanNotify = false
  792. end
  793. elseif getgenv().ThirdPerson == true and getgenv().FirstPerson == false then
  794. if (Camera.Focus.p - Camera.CoordinateFrame.p).Magnitude > 1 then
  795. CanNotify = true
  796. else
  797. CanNotify = false
  798. end
  799. elseif getgenv().ThirdPerson == false and getgenv().FirstPerson == true then
  800. if (Camera.Focus.p - Camera.CoordinateFrame.p).Magnitude <= 1 then
  801. CanNotify = true
  802. else
  803. CanNotify = false
  804. end
  805. end
  806. if Aimlock == true and MousePressed == true then
  807. if AimlockTarget and AimlockTarget.Character and AimlockTarget.Character:FindFirstChild(getgenv().AimPart) then
  808. if getgenv().FirstPerson == true then
  809. if CanNotify == true then
  810. if getgenv().PredictMovement == true then
  811. if getgenv().Smoothness == true then
  812. --// The part we're going to lerp/smoothen \\--
  813. local Main = CF(Camera.CFrame.p, AimlockTarget.Character[getgenv().AimPart].Position + AimlockTarget.Character[getgenv().AimPart].Velocity/PredictionVelocity)
  814.  
  815. --// Making it work \\--
  816. Camera.CFrame = Camera.CFrame:Lerp(Main, getgenv().SmoothnessAmount, Enum.EasingStyle.Elastic, Enum.EasingDirection.InOut)
  817. else
  818. Camera.CFrame = CF(Camera.CFrame.p, AimlockTarget.Character[getgenv().AimPart].Position + AimlockTarget.Character[getgenv().AimPart].Velocity/PredictionVelocity)
  819. end
  820. elseif getgenv().PredictMovement == false then
  821. if getgenv().Smoothness == true then
  822. --// The part we're going to lerp/smoothen \\--
  823. local Main = CF(Camera.CFrame.p, AimlockTarget.Character[getgenv().AimPart].Position)
  824.  
  825. --// Making it work \\--
  826. Camera.CFrame = Camera.CFrame:Lerp(Main, getgenv().SmoothnessAmount, Enum.EasingStyle.Elastic, Enum.EasingDirection.InOut)
  827. else
  828. Camera.CFrame = CF(Camera.CFrame.p, AimlockTarget.Character[getgenv().AimPart].Position)
  829. end
  830. end
  831. end
  832. end
  833. end
  834. end
  835. if CheckIfJumped == true then
  836. if AimlockTarget.Character.HuDDDDDDDDDDWmanoid.FloorMaterial == Enum.Material.Air then
  837.  
  838. getgenv().AimPart = "UpperTorso"
  839. else
  840. getgenv().AimPart = getgenv().OldAimPart
  841.  
  842. end
  843. end
  844. end)
  845. end})
  846.  
  847.  
  848. section1:button({name = "No Recoil",callback = function()
  849. getgenv().NoRecoil = true
  850. if NoRecoil == true then
  851. local mt = getrawmetatable(game)
  852. local newindex = mt.newindex
  853. setreadonly(mt,false)
  854. function isframework(scriptInstance)
  855. if tostring(scriptInstance) == "Framework" then
  856. return true
  857. end
  858. return false
  859. end
  860. function checkArgs(instance,index)
  861. if tostring(instance):lower():find("camera") and tostring(index) == "CFrame" then
  862. return true
  863. end
  864. return false
  865. end
  866. mt.newindex = newcclosure(function(self,index,value)
  867. local callingScr = getcallingscript()
  868. if isframework(callingScr) and checkArgs(self,index) then
  869. return;
  870. end
  871. return newindex(self,index,value)
  872. end)
  873. setreadonly(mt,true)
  874. end
  875. end})
  876.  
  877. section1:button({name = "Moon God Revamped",callback = function()
  878. if game.PlaceId == 2788229376 then
  879. print'da hood'
  880.  
  881. NotifyLib.prompt('Game Detected: Da Hood', 'yarn#0001, Valox#8980', 5)
  882. Settings = {
  883. rewrittenmain = {
  884. Enabled = true,
  885. Key = "q",
  886. DOT = true,
  887. AIRSHOT = true,
  888. NOTIF = true,
  889. FOV = math.huge,
  890. }
  891. }
  892. local SelectedPart = "HumanoidRootPart"
  893. local Prediction = true
  894. local PredictionValue = 0.1176529
  895. local AnchorCount = 0
  896. local MaxAnchor = 50
  897.  
  898. local CC = game:GetService"Workspace".CurrentCamera
  899. local Plr;
  900. local enabled = false
  901. local accomidationfactor = 0.122
  902. local mouse = game.Players.LocalPlayer:GetMouse()
  903. local placemarker = Instance.new("Part", game.Workspace)
  904.  
  905. function makemarker(Parent, Adornee, Color, Size, Size2)
  906. local e = Instance.new("BillboardGui", Parent)
  907. e.Name = "PP"
  908. e.Adornee = Adornee
  909. e.Size = UDim2.new(Size, Size2, Size, Size2)
  910. e.AlwaysOnTop = Settings.rewrittenmain.DOT
  911. local a = Instance.new("Frame", e)
  912. if Settings.rewrittenmain.DOT == true then
  913. a.Size = UDim2.new(1, 0, 1, 0)
  914. else
  915. a.Size = UDim2.new(0, 0, 0, 0)
  916. end
  917. if Settings.rewrittenmain.DOT == true then
  918. a.Transparency = 0
  919. a.BackgroundTransparency = 0
  920. else
  921. a.Transparency = 0
  922. a.BackgroundTransparency = 0
  923. end
  924. a.BackgroundColor3 = Color
  925. local g = Instance.new("UICorner", a)
  926. if Settings.rewrittenmain.DOT == false then
  927. g.CornerRadius = UDim.new(0, 0)
  928. else
  929. g.CornerRadius = UDim.new(1, 1)
  930. end
  931. return(e)
  932. end
  933.  
  934.  
  935. local data = game.Players:GetPlayers()
  936. function noob(player)
  937. local character
  938. repeat wait() until player.Character
  939. local handler = makemarker(guimain, player.Character:WaitForChild(SelectedPart), Color3.fromRGB(0, 255, 0), 0.3, 1)
  940. handler.Name = player.Name
  941. player.CharacterAdded:connect(function(Char) handler.Adornee = Char:WaitForChild(SelectedPart) end)
  942.  
  943.  
  944. spawn(function()
  945. while wait() do
  946. if player.Character then
  947. end
  948. end
  949. end)
  950. end
  951.  
  952. for i = 1, #data do
  953. if data[i] ~= game.Players.LocalPlayer then
  954. noob(data[i])
  955. end
  956. end
  957.  
  958. game.Players.PlayerAdded:connect(function(Player)
  959. noob(Player)
  960. end)
  961.  
  962. spawn(function()
  963. placemarker.Anchored = true
  964. placemarker.CanCollide = false
  965. if Settings.rewrittenmain.DOT == true then
  966. placemarker.Size = Vector3.new(4, 4, 4), Color3.fromRGB(50, 255, 70)
  967. else
  968. placemarker.Size = Vector3.new(0, 0, 0)
  969. end
  970. placemarker.Transparency = 0.50
  971. if Settings.rewrittenmain.DOT then
  972. makemarker(placemarker, placemarker, Color3.fromRGB(81, 0, 81), 0.40, 0)
  973. end
  974. end)
  975.  
  976.  
  977. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  978. if k == Settings.rewrittenmain.Key and Settings.rewrittenmain.Enabled then
  979. if enabled == true then
  980. enabled = false
  981. if Settings.rewrittenmain.NOTIF == true then
  982. Plr = getClosestPlayerToCursor()
  983. game.StarterGui:SetCore("SendNotification", {
  984. Title = "yarn | revamped";
  985. Text = "Unlocked",
  986. Duration = 3
  987. })
  988. end
  989. else
  990. Plr = getClosestPlayerToCursor()
  991. enabled = true
  992. if Settings.rewrittenmain.NOTIF == true then
  993.  
  994. game.StarterGui:SetCore("SendNotification", {
  995. Title = "yarn | revamped";
  996. Text = "Target: "..tostring(Plr.Character.Humanoid.DisplayName),
  997. Duration = 3
  998. })
  999.  
  1000. end
  1001. end
  1002. end
  1003. end)
  1004.  
  1005.  
  1006.  
  1007. function getClosestPlayerToCursor()
  1008. local closestPlayer
  1009. local shortestDistance = Settings.rewrittenmain.FOV
  1010.  
  1011. for i, v in pairs(game.Players:GetPlayers()) do
  1012. if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health ~= 0 and v.Character:FindFirstChild("HumanoidRootPart") then
  1013. local pos = CC:WorldToViewportPoint(v.Character.PrimaryPart.Position)
  1014. local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(mouse.X, mouse.Y)).magnitude
  1015. if magnitude < shortestDistance then
  1016. closestPlayer = v
  1017. shortestDistance = magnitude
  1018. end
  1019. end
  1020. end
  1021. return closestPlayer
  1022. end
  1023.  
  1024. local pingvalue = nil;
  1025. local split = nil;
  1026. local ping = nil;
  1027.  
  1028. game:GetService"RunService".Stepped:connect(function()
  1029. if enabled and Plr.Character ~= nil and Plr.Character:FindFirstChild("HumanoidRootPart") then
  1030. placemarker.CFrame = CFrame.new(Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*accomidationfactor))
  1031. else
  1032. placemarker.CFrame = CFrame.new(0, 9999, 0)
  1033. end
  1034. end)
  1035.  
  1036. local mt = getrawmetatable(game)
  1037. local old = mt.__namecall
  1038. setreadonly(mt, false)
  1039. mt.__namecall = newcclosure(function(...)
  1040. local args = {...}
  1041. if enabled and getnamecallmethod() == "FireServer" and args[2] == "UpdateMousePos" and Settings.rewrittenmain.Enabled and Plr.Character ~= nil then
  1042.  
  1043. -- args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*accomidationfactor)
  1044. --[[
  1045. if Settings.rewrittenmain.AIRSHOT == true then
  1046. if game.Workspace.Players[Plr.Name].Humanoid:GetState() == Enum.HumanoidStateType.Freefall then -- Plr.Character:WaitForChild("Humanoid"):GetState() == Enum.HumanoidStateType.Freefall
  1047.  
  1048. --// Airshot
  1049. args[3] = Plr.Character.LeftFoot.Position+(Plr.Character.LeftFoot.Velocity*PredictionValue)
  1050.  
  1051. else
  1052. args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*PredictionValue)
  1053.  
  1054. end
  1055. else
  1056. args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*PredictionValue)
  1057. end
  1058. ]]
  1059. if Prediction == true then
  1060.  
  1061. args[3] = Plr.Character[SelectedPart].Position+(Plr.Character[SelectedPart].Velocity*PredictionValue)
  1062.  
  1063. else
  1064.  
  1065. args[3] = Plr.Character[SelectedPart].Position
  1066.  
  1067. end
  1068.  
  1069. return old(unpack(args))
  1070. end
  1071. return old(...)
  1072. end)
  1073.  
  1074. game:GetService("RunService").RenderStepped:Connect(function()
  1075. if Settings.rewrittenmain.AIRSHOT == true and enabled and Plr.Character ~= nil then
  1076.  
  1077. if game.Workspace.Players[Plr.Name].Humanoid:GetState() == Enum.HumanoidStateType.Freefall then -- Plr.Character:WaitForChild("Humanoid"):GetState() == Enum.HumanoidStateType.Freefall
  1078.  
  1079. --// Airshot
  1080.  
  1081. --// Anchor Check
  1082.  
  1083. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1084. AnchorCount = AnchorCount + 1
  1085. if AnchorCount >= MaxAnchor then
  1086. Prediction = false
  1087. wait(2)
  1088. AnchorCount = 0;
  1089. else
  1090. Prediction = true
  1091. AnchorCount = 0;
  1092. end
  1093.  
  1094. SelectedPart = "LeftFoot"
  1095.  
  1096. else
  1097. --// Anchor Check
  1098.  
  1099. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1100. AnchorCount = AnchorCount + 1
  1101. if AnchorCount >= MaxAnchor then
  1102. Prediction = false
  1103. wait(2)
  1104. AnchorCount = 0;
  1105. end
  1106. else
  1107. Prediction = true
  1108. AnchorCount = 0;
  1109. end
  1110.  
  1111. SelectedPart = "HumanoidRootPart"
  1112.  
  1113. end
  1114. else
  1115.  
  1116. --// Anchor Check
  1117.  
  1118. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1119. AnchorCount = AnchorCount + 1
  1120. if AnchorCount >= MaxAnchor then
  1121. Prediction = false
  1122. wait(2)
  1123. AnchorCount = 0;
  1124. end
  1125. else
  1126. Prediction = true
  1127. AnchorCount = 0;
  1128. end
  1129.  
  1130. SelectedPart = "HumanoidRootPart"
  1131. end
  1132.  
  1133. else
  1134. SelectedPart = "HumanoidRootPart"
  1135. end
  1136. end)
  1137. end
  1138. if game.PlaceId == 5602055394 then
  1139. print'hood modded'
  1140.  
  1141. NotifyLib.prompt('Game Detected: Hood Modded', 'yarn#0001, Valox#8980', 5)
  1142. Settings = {
  1143. rewrittenmain = {
  1144. Enabled = true,
  1145. Key = "q",
  1146. DOT = true,
  1147. AIRSHOT = true,
  1148. NOTIF = true,
  1149. FOV = math.huge,
  1150. }
  1151. }
  1152. local SelectedPart = "UpperTorso"
  1153. local Prediction = true
  1154. local PredictionValue = 0.125
  1155. local AnchorCount = 0
  1156. local MaxAnchor = 50
  1157.  
  1158. local CC = game:GetService"Workspace".CurrentCamera
  1159. local Plr;
  1160. local enabled = false
  1161. local accomidationfactor = 0.136
  1162. local mouse = game.Players.LocalPlayer:GetMouse()
  1163. local placemarker = Instance.new("Part", game.Workspace)
  1164.  
  1165. function makemarker(Parent, Adornee, Color, Size, Size2)
  1166. local e = Instance.new("BillboardGui", Parent)
  1167. e.Name = "PP"
  1168. e.Adornee = Adornee
  1169. e.Size = UDim2.new(Size, Size2, Size, Size2)
  1170. e.AlwaysOnTop = Settings.rewrittenmain.DOT
  1171. local a = Instance.new("Frame", e)
  1172. if Settings.rewrittenmain.DOT == true then
  1173. a.Size = UDim2.new(1, 0, 1, 0)
  1174. else
  1175. a.Size = UDim2.new(0, 0, 0, 0)
  1176. end
  1177. if Settings.rewrittenmain.DOT == true then
  1178. a.Transparency = 0
  1179. a.BackgroundTransparency = 0
  1180. else
  1181. a.Transparency = 1
  1182. a.BackgroundTransparency = 1
  1183. end
  1184. a.BackgroundColor3 = Color
  1185. local g = Instance.new("UICorner", a)
  1186. if Settings.rewrittenmain.DOT == false then
  1187. g.CornerRadius = UDim.new(0, 0)
  1188. else
  1189. g.CornerRadius = UDim.new(1, 1)
  1190. end
  1191. return(e)
  1192. end
  1193.  
  1194.  
  1195. local data = game.Players:GetPlayers()
  1196. function noob(player)
  1197. local character
  1198. repeat wait() until player.Character
  1199. local handler = makemarker(guimain, player.Character:WaitForChild(SelectedPart), Color3.fromRGB(255, 0, 0), 0.3, 3)
  1200. handler.Name = player.Name
  1201. player.CharacterAdded:connect(function(Char) handler.Adornee = Char:WaitForChild(SelectedPart) end)
  1202.  
  1203.  
  1204. spawn(function()
  1205. while wait() do
  1206. if player.Character then
  1207. end
  1208. end
  1209. end)
  1210. end
  1211.  
  1212. for i = 1, #data do
  1213. if data[i] ~= game.Players.LocalPlayer then
  1214. noob(data[i])
  1215. end
  1216. end
  1217.  
  1218. game.Players.PlayerAdded:connect(function(Player)
  1219. noob(Player)
  1220. end)
  1221.  
  1222. spawn(function()
  1223. placemarker.Anchored = true
  1224. placemarker.CanCollide = false
  1225. if Settings.rewrittenmain.DOT == true then
  1226. placemarker.Size = Vector3.new(3, 3, 3)
  1227. else
  1228. placemarker.Size = Vector3.new(0, 0, 0)
  1229. end
  1230. placemarker.Transparency = 0.55
  1231. if Settings.rewrittenmain.DOT then
  1232. makemarker(placemarker, placemarker, Color3.fromRGB(255, 50, 80), 0.40, 0)
  1233. end
  1234. end)
  1235.  
  1236. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  1237. if k == Settings.rewrittenmain.Key and Settings.rewrittenmain.Enabled then
  1238. if enabled == true then
  1239. enabled = false
  1240. if Settings.rewrittenmain.NOTIF == true then
  1241. Plr = getClosestPlayerToCursor()
  1242. game.StarterGui:SetCore("SendNotification", {
  1243. Title = "yarn | revamped";
  1244. Text = "Unlocked",
  1245. Duration = 3
  1246. })
  1247. end
  1248. else
  1249. Plr = getClosestPlayerToCursor()
  1250. enabled = true
  1251. if Settings.rewrittenmain.NOTIF == true then
  1252.  
  1253. game.StarterGui:SetCore("SendNotification", {
  1254. Title = "yarn | revamped";
  1255. Text = "Target: "..tostring(Plr.Character.Humanoid.DisplayName),
  1256. Duration = 3
  1257. })
  1258.  
  1259. end
  1260. end
  1261. end
  1262. end)
  1263. function getClosestPlayerToCursor()
  1264. local closestPlayer
  1265. local shortestDistance = math.huge
  1266.  
  1267. for i, v in pairs(game.Players:GetPlayers()) do
  1268. if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health ~= 0 and v.Character:FindFirstChild("Head") then
  1269. local pos = CC:WorldToViewportPoint(v.Character.PrimaryPart.Position)
  1270. local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(mouse.X, mouse.Y)).magnitude
  1271. if magnitude < shortestDistance then
  1272. closestPlayer = v
  1273. shortestDistance = magnitude
  1274. end
  1275. end
  1276. end
  1277. return closestPlayer
  1278. end
  1279.  
  1280. local pingvalue = nil;
  1281. local split = nil;
  1282. local ping = nil;
  1283.  
  1284. game:GetService"RunService".Stepped:connect(function()
  1285. if enabled and Plr.Character ~= nil and Plr.Character:FindFirstChild("HumanoidRootPart") then
  1286. placemarker.CFrame = CFrame.new(Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*accomidationfactor))
  1287. else
  1288. placemarker.CFrame = CFrame.new(0, 9999, 0)
  1289. end
  1290. end)
  1291.  
  1292. local mt = getrawmetatable(game)
  1293. local old = mt.__namecall
  1294. setreadonly(mt, false)
  1295. mt.__namecall = newcclosure(function(...)
  1296. local args = {...}
  1297. if enabled and getnamecallmethod() == "FireServer" and args[2] == "MousePos" and Settings.rewrittenmain.Enabled and Plr.Character ~= nil then
  1298.  
  1299. -- args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*accomidationfactor)
  1300. --[[
  1301. if Settings.rewrittenmain.AIRSHOT == true then
  1302. if game.Workspace.Players[Plr.Name].Humanoid:GetState() == Enum.HumanoidStateType.Freefall then -- Plr.Character:WaitForChild("Humanoid"):GetState() == Enum.HumanoidStateType.Freefall
  1303.  
  1304. --// Airshot
  1305. args[3] = Plr.Character.LeftFoot.Position+(Plr.Character.LeftFoot.Velocity*PredictionValue)
  1306.  
  1307. else
  1308. args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*PredictionValue)
  1309.  
  1310. end
  1311. else
  1312. args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*PredictionValue)
  1313. end
  1314. ]]
  1315. if Prediction == true then
  1316.  
  1317. args[3] = Plr.Character[SelectedPart].Position+(Plr.Character[SelectedPart].Velocity*PredictionValue)
  1318.  
  1319. else
  1320.  
  1321. args[3] = Plr.Character[SelectedPart].Position
  1322.  
  1323. end
  1324.  
  1325. return old(unpack(args))
  1326. end
  1327. return old(...)
  1328. end)
  1329.  
  1330. game:GetService("RunService").RenderStepped:Connect(function()
  1331. if Settings.rewrittenmain.AIRSHOT == true and enabled and Plr.Character ~= nil then
  1332.  
  1333. if game.Workspace.Players[Plr.Name].Humanoid:GetState() == Enum.HumanoidStateType.Freefall then -- Plr.Character:WaitForChild("Humanoid"):GetState() == Enum.HumanoidStateType.Freefall
  1334.  
  1335. --// Airshot
  1336.  
  1337. --// Anchor Check
  1338.  
  1339. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1340. AnchorCount = AnchorCount + 1
  1341. if AnchorCount >= MaxAnchor then
  1342. Prediction = false
  1343. wait(2)
  1344. AnchorCount = 0;
  1345. else
  1346. Prediction = true
  1347. AnchorCount = 0;
  1348. end
  1349.  
  1350. SelectedPart = "LeftFoot"
  1351.  
  1352. else
  1353. --// Anchor Check
  1354.  
  1355. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1356. AnchorCount = AnchorCount + 1
  1357. if AnchorCount >= MaxAnchor then
  1358. Prediction = false
  1359. wait(2)
  1360. AnchorCount = 0;
  1361. end
  1362. else
  1363. Prediction = true
  1364. AnchorCount = 0;
  1365. end
  1366.  
  1367. SelectedPart = "HumanoidRootPart"
  1368.  
  1369. end
  1370. else
  1371.  
  1372. --// Anchor Check
  1373.  
  1374. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1375. AnchorCount = AnchorCount + 1
  1376. if AnchorCount >= MaxAnchor then
  1377. Prediction = false
  1378. wait(2)
  1379. AnchorCount = 0;
  1380. end
  1381. else
  1382. Prediction = true
  1383. AnchorCount = 0;
  1384. end
  1385.  
  1386. SelectedPart = "HumanoidRootPart"
  1387. end
  1388.  
  1389. else
  1390. SelectedPart = "HumanoidRootPart"
  1391. end
  1392. end)
  1393. end
  1394.  
  1395. if game.PlaceId == 9183932460 then
  1396. print'Untitled Hood'
  1397. NotifyLib.prompt('Game Detected: Untitled Hood', 'yarn#0001, Valox#8980', 5)
  1398. Settings = {
  1399. rewrittenmain = {
  1400. Enabled = true,
  1401. Key = "q",
  1402. DOT = true,
  1403. AIRSHOT = true,
  1404. NOTIF = true,
  1405. FOV = math.huge,
  1406. }
  1407. }
  1408. local SelectedPart = "UpperTorso"
  1409. local Prediction = true
  1410. local PredictionValue = 0.125
  1411. local AnchorCount = 0
  1412. local MaxAnchor = 50
  1413.  
  1414. local CC = game:GetService"Workspace".CurrentCamera
  1415. local Plr;
  1416. local enabled = false
  1417. local accomidationfactor = 0.136
  1418. local mouse = game.Players.LocalPlayer:GetMouse()
  1419. local placemarker = Instance.new("Part", game.Workspace)
  1420.  
  1421. function makemarker(Parent, Adornee, Color, Size, Size2)
  1422. local e = Instance.new("BillboardGui", Parent)
  1423. e.Name = "PP"
  1424. e.Adornee = Adornee
  1425. e.Size = UDim2.new(Size, Size2, Size, Size2)
  1426. e.AlwaysOnTop = Settings.rewrittenmain.DOT
  1427. local a = Instance.new("Frame", e)
  1428. if Settings.rewrittenmain.DOT == true then
  1429. a.Size = UDim2.new(1, 0, 1, 0)
  1430. else
  1431. a.Size = UDim2.new(0, 0, 0, 0)
  1432. end
  1433. if Settings.rewrittenmain.DOT == true then
  1434. a.Transparency = 0
  1435. a.BackgroundTransparency = 0
  1436. else
  1437. a.Transparency = 1
  1438. a.BackgroundTransparency = 1
  1439. end
  1440. a.BackgroundColor3 = Color
  1441. local g = Instance.new("UICorner", a)
  1442. if Settings.rewrittenmain.DOT == false then
  1443. g.CornerRadius = UDim.new(0, 0)
  1444. else
  1445. g.CornerRadius = UDim.new(1, 1)
  1446. end
  1447. return(e)
  1448. end
  1449.  
  1450.  
  1451. local data = game.Players:GetPlayers()
  1452. function noob(player)
  1453. local character
  1454. repeat wait() until player.Character
  1455. local handler = makemarker(guimain, player.Character:WaitForChild(SelectedPart), Color3.fromRGB(255, 0, 0), 0.3, 3)
  1456. handler.Name = player.Name
  1457. player.CharacterAdded:connect(function(Char) handler.Adornee = Char:WaitForChild(SelectedPart) end)
  1458.  
  1459.  
  1460. spawn(function()
  1461. while wait() do
  1462. if player.Character then
  1463. end
  1464. end
  1465. end)
  1466. end
  1467.  
  1468. for i = 1, #data do
  1469. if data[i] ~= game.Players.LocalPlayer then
  1470. noob(data[i])
  1471. end
  1472. end
  1473.  
  1474. game.Players.PlayerAdded:connect(function(Player)
  1475. noob(Player)
  1476. end)
  1477.  
  1478. spawn(function()
  1479. placemarker.Anchored = true
  1480. placemarker.CanCollide = false
  1481. if Settings.rewrittenmain.DOT == true then
  1482. placemarker.Size = Vector3.new(4, 4, 4)
  1483. else
  1484. placemarker.Size = Vector3.new(0, 0, 0)
  1485. end
  1486. placemarker.Transparency = 0.50
  1487. if Settings.rewrittenmain.DOT then
  1488. makemarker(placemarker, placemarker, Color3.fromRGB(255, 0, 0), 0.40, 0)
  1489. end
  1490. end)
  1491.  
  1492. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  1493. if k == Settings.rewrittenmain.Key and Settings.rewrittenmain.Enabled then
  1494. if enabled == true then
  1495. enabled = false
  1496. if Settings.rewrittenmain.NOTIF == true then
  1497. Plr = getClosestPlayerToCursor()
  1498. game.StarterGui:SetCore("SendNotification", {
  1499. Title = "yarn | revamped";
  1500. Text = "Unlocked",
  1501. Duration = 3
  1502. })
  1503. end
  1504. else
  1505. Plr = getClosestPlayerToCursor()
  1506. enabled = true
  1507. if Settings.rewrittenmain.NOTIF == true then
  1508.  
  1509. game.StarterGui:SetCore("SendNotification", {
  1510. Title = "yarn | revamped";
  1511. Text = "Target: "..tostring(Plr.Character.Humanoid.DisplayName),
  1512. Duration = 3
  1513. })
  1514.  
  1515. end
  1516. end
  1517. end
  1518. end)
  1519.  
  1520.  
  1521.  
  1522. function getClosestPlayerToCursor()
  1523. local closestPlayer
  1524. local shortestDistance = Settings.rewrittenmain.FOV
  1525.  
  1526. for i, v in pairs(game.Players:GetPlayers()) do
  1527. if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health ~= 0 and v.Character:FindFirstChild("HumanoidRootPart") then
  1528. local pos = CC:WorldToViewportPoint(v.Character.PrimaryPart.Position)
  1529. local magnitude = (Vector2.new(pos.X, pos.Y) - Vector2.new(mouse.X, mouse.Y)).magnitude
  1530. if magnitude < shortestDistance then
  1531. closestPlayer = v
  1532. shortestDistance = magnitude
  1533. end
  1534. end
  1535. end
  1536. return closestPlayer
  1537. end
  1538.  
  1539. local pingvalue = nil;
  1540. local split = nil;
  1541. local ping = nil;
  1542.  
  1543. game:GetService"RunService".Stepped:connect(function()
  1544. if enabled and Plr.Character ~= nil and Plr.Character:FindFirstChild("HumanoidRootPart") then
  1545. placemarker.CFrame = CFrame.new(Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*accomidationfactor))
  1546. else
  1547. placemarker.CFrame = CFrame.new(0, 9999, 0)
  1548. end
  1549. end)
  1550.  
  1551. local mt = getrawmetatable(game)
  1552. local old = mt.__namecall
  1553. setreadonly(mt, false)
  1554. mt.__namecall = newcclosure(function(...)
  1555. local args = {...}
  1556. if enabled and getnamecallmethod() == "FireServer" and args[2] == "UpdateMousePos" and Settings.rewrittenmain.Enabled and Plr.Character ~= nil then
  1557.  
  1558. -- args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*accomidationfactor)
  1559. --[[
  1560. if Settings.rewrittenmain.AIRSHOT == true then
  1561. if game.Workspace.Players[Plr.Name].Humanoid:GetState() == Enum.HumanoidStateType.Freefall then -- Plr.Character:WaitForChild("Humanoid"):GetState() == Enum.HumanoidStateType.Freefall
  1562.  
  1563. --// Airshot
  1564. args[3] = Plr.Character.LeftFoot.Position+(Plr.Character.LeftFoot.Velocity*PredictionValue)
  1565.  
  1566. else
  1567. args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*PredictionValue)
  1568.  
  1569. end
  1570. else
  1571. args[3] = Plr.Character.HumanoidRootPart.Position+(Plr.Character.HumanoidRootPart.Velocity*PredictionValue)
  1572. end
  1573. ]]
  1574. if Prediction == true then
  1575.  
  1576. args[3] = Plr.Character[SelectedPart].Position+(Plr.Character[SelectedPart].Velocity*PredictionValue)
  1577.  
  1578. else
  1579.  
  1580. args[3] = Plr.Character[SelectedPart].Position
  1581.  
  1582. end
  1583.  
  1584. return old(unpack(args))
  1585. end
  1586. return old(...)
  1587. end)
  1588.  
  1589. game:GetService("RunService").RenderStepped:Connect(function()
  1590. if Settings.rewrittenmain.AIRSHOT == true and enabled and Plr.Character ~= nil then
  1591.  
  1592. if game.Workspace.Players[Plr.Name].Humanoid:GetState() == Enum.HumanoidStateType.Freefall then -- Plr.Character:WaitForChild("Humanoid"):GetState() == Enum.HumanoidStateType.Freefall
  1593.  
  1594. --// Airshot
  1595.  
  1596. --// Anchor Check
  1597.  
  1598. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1599. AnchorCount = AnchorCount + 1
  1600. if AnchorCount >= MaxAnchor then
  1601. Prediction = false
  1602. wait(2)
  1603. AnchorCount = 0;
  1604. else
  1605. Prediction = true
  1606. AnchorCount = 0;
  1607. end
  1608.  
  1609. SelectedPart = "LeftFoot"
  1610.  
  1611. else
  1612. --// Anchor Check
  1613.  
  1614. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1615. AnchorCount = AnchorCount + 1
  1616. if AnchorCount >= MaxAnchor then
  1617. Prediction = false
  1618. wait(2)
  1619. AnchorCount = 0;
  1620. end
  1621. else
  1622. Prediction = true
  1623. AnchorCount = 0;
  1624. end
  1625.  
  1626. SelectedPart = "HumanoidRootPart"
  1627.  
  1628. end
  1629. else
  1630.  
  1631. --// Anchor Check
  1632.  
  1633. if Plr.Character ~= nil and Plr.Character.HumanoidRootPart.Anchored == true then
  1634. AnchorCount = AnchorCount + 1
  1635. if AnchorCount >= MaxAnchor then
  1636. Prediction = false
  1637. wait(2)
  1638. AnchorCount = 0;
  1639. end
  1640. else
  1641. Prediction = true
  1642. AnchorCount = 0;
  1643. end
  1644.  
  1645. SelectedPart = "HumanoidRootPart"
  1646. end
  1647.  
  1648. else
  1649. SelectedPart = "HumanoidRootPart"
  1650. end
  1651. end)
  1652. else
  1653. local NotifyLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/vKhonshu/intro/main/ui"))()
  1654.  
  1655. end
  1656. end})
  1657.  
  1658.  
  1659.  
  1660.  
  1661. local section1 = tab3:section({name = "Anti ",side = "right",size = 255})
  1662.  
  1663.  
  1664. section1:toggle({name = "Anti Lock",def = false, callback = function(bool)
  1665. getgenv().antilock = bool
  1666. end})
  1667.  
  1668. section1:slider({name = "Anti Lock Speed",def = 1, max = 5,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  1669. getgenv().antilockspeed = value
  1670. end})
  1671.  
  1672. section1:toggle({name = "Desync",def = false, callback = function(bool)
  1673. getgenv().DesyncEnabled = bool
  1674. end})
  1675.  
  1676. section1:slider({name = "Desync Speed",def = 1, max = 150,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  1677. getgenv().DesyncVelocity = value
  1678. end})
  1679.  
  1680. section1:toggle({name = "Confusion",def = false, callback = function(bool)
  1681. getgenv().Jitter = bool
  1682. end})
  1683.  
  1684. section1:slider({name = "Angle Confusion",def = 1, max = 150,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  1685. getgenv().Angle = value
  1686. end})
  1687.  
  1688.  
  1689. section1:toggle({name = "Anti Bag",def = false, callback = function(bool)
  1690. getgenv().antibag = bool
  1691. end})
  1692.  
  1693. section1:toggle({name = "Anti Fling",def = false, callback = function(bool)
  1694. game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = bool
  1695. end})
  1696.  
  1697. section1:toggle({name = "Anti Slow",def = false, callback = function(bool)
  1698. getgenv().antislow = bool
  1699. end})
  1700.  
  1701.  
  1702. section1:toggle({name = "Anti Stomp",def = false, callback = function(bool)
  1703. getgenv().antistomplo = bool
  1704. end})
  1705.  
  1706. local section1 = tab3:section({name = "Animations ",side = "right",size = 225})
  1707.  
  1708. section1:dropdown({name = "Idle",max = 10,options = {"Borock", "Zombie", "Werewolf", "Ninja", "Ud'zal", "Mage", "Toy"},callback = function(State)
  1709. if State == "Borock" then
  1710. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1711. "http://www.roblox.com/asset/?id=3293641938"
  1712. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1713. "http://www.roblox.com/asset/?id=3710131919"
  1714. elseif State == "Zombie" then
  1715. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1716. "http://www.roblox.com/asset/?id=616158929"
  1717. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1718. "http://www.roblox.com/asset/?id=616160636"
  1719. elseif State == "Werewolf" then
  1720. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1721. "http://www.roblox.com/asset/?id=1083195517"
  1722. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1723. "http://www.roblox.com/asset/?id=1083214717"
  1724. elseif State == "Ninja" then
  1725. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1726. "http://www.roblox.com/asset/?id=656117400"
  1727. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1728. "http://www.roblox.com/asset/?id=656118341"
  1729. elseif State == "Udzal" then
  1730. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1731. "http://www.roblox.com/asset/?id=3303162274"
  1732. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1733. "http://www.roblox.com/asset/?id=3303162274"
  1734. elseif State == "Mage" then
  1735. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1736. "http://www.roblox.com/asset/?id=707742142"
  1737. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1738. "http://www.roblox.com/asset/?id=707855907"
  1739. elseif State == "Toy" then
  1740. game.Players.LocalPlayer.Character.Animate.idle.Animation1.AnimationId =
  1741. "http://www.roblox.com/asset/?id=782841498"
  1742. game.Players.LocalPlayer.Character.Animate.idle.Animation2.AnimationId =
  1743. "http://www.roblox.com/asset/?id=782841498"
  1744. end
  1745. end
  1746. })
  1747.  
  1748. section1:dropdown({name = "Walk",max = 10,options = {"Zombie", "Toy", "Ninja", "Mage", "Werewolf"},callback = function(State)
  1749. if State == "Zombie" then
  1750. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId =
  1751. "http://www.roblox.com/asset/?id=616168032"
  1752. elseif State == "Toy" then
  1753. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId =
  1754. "http://www.roblox.com/asset/?id=782843345"
  1755. elseif State == "Ninja" then
  1756. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId =
  1757. "http://www.roblox.com/asset/?id=656121766"
  1758. elseif State == "Mage" then
  1759. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId =
  1760. "http://www.roblox.com/asset/?id=707897309"
  1761. elseif State == "Werewolf" then
  1762. game.Players.LocalPlayer.Character.Animate.walk.WalkAnim.AnimationId =
  1763. "http://www.roblox.com/asset/?id=1083178339"
  1764. end
  1765. end
  1766. })
  1767.  
  1768. section1:dropdown({name = "Run",max = 10,options = {"Zombie", "Toy", "Ninja", "Mage", "Werewolf"},callback = function(State)
  1769. if State == "Zombie" then
  1770. game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId =
  1771. "http://www.roblox.com/asset/?id=616163682"
  1772. elseif State == "Toy" then
  1773. game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId =
  1774. "http://www.roblox.com/asset/?id=782842708"
  1775. elseif State == "Ninja" then
  1776. game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId =
  1777. "http://www.roblox.com/asset/?id=656118852"
  1778. elseif State == "Mage" then
  1779. game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId =
  1780. "http://www.roblox.com/asset/?id=707861613"
  1781. elseif State == "Werewolf" then
  1782. game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId =
  1783. "http://www.roblox.com/asset/?id=1083216690"
  1784. end
  1785. end
  1786. })
  1787.  
  1788. section1:dropdown({name = "Jump",max = 10,options = {"Zombie", "Werewolf", "Ninja", "Mage", "Toy", "OldSchool"},callback = function(State)
  1789. if State == "Zombie" then
  1790. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId =
  1791. "http://www.roblox.com/asset/?id=616161997"
  1792. elseif State == "Werewolf" then
  1793. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId =
  1794. "http://www.roblox.com/asset/?id=1083218792"
  1795. elseif State == "Ninja" then
  1796. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId =
  1797. "http://www.roblox.com/asset/?id=656117878"
  1798. elseif State == "Mage" then
  1799. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId =
  1800. "http://www.roblox.com/asset/?id=707853694"
  1801. elseif State == "Toy" then
  1802. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId =
  1803. "http://www.roblox.com/asset/?id=782847020"
  1804. elseif State == "OldSchool" then
  1805. game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId =
  1806. "http://www.roblox.com/asset/?id=5319841935"
  1807. end
  1808. end
  1809. })
  1810.  
  1811. section1:dropdown({name = "Fall",max = 10,options = {"Zombie", "Werewolf", "Ninja", "Mage", "Toy", "OldSchool"},callback = function(State)
  1812. if State == "Zombie" then
  1813. game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId =
  1814. "http://www.roblox.com/asset/?id=616157476"
  1815. elseif State == "Werewolf" then
  1816. game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId =
  1817. "http://www.roblox.com/asset/?id=1083189019"
  1818. elseif State == "Ninja" then
  1819. game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId =
  1820. "http://www.roblox.com/asset/?id=656115606"
  1821. elseif State == "Mage" then
  1822. game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId =
  1823. "http://www.roblox.com/asset/?id=707829716"
  1824. elseif State == "Toy" then
  1825. game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId =
  1826. "http://www.roblox.com/asset/?id=782846423"
  1827. elseif State == "OldSchool" then
  1828. game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId =
  1829. "http://www.roblox.com/asset/?id=5319839762"
  1830. end
  1831. end
  1832. })
  1833.  
  1834.  
  1835.  
  1836.  
  1837. local section1 = tab3:section({name = "Auto ",side = "left",size = 85})
  1838.  
  1839. section1:toggle({name = " Reload",def = false, callback = function(bool)
  1840. getgenv().AutoReloadx = bool
  1841. end})
  1842.  
  1843. if getgenv().AutoReloadx then
  1844. if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  1845. if
  1846. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  1847. "Ammo"
  1848. )
  1849. then
  1850. if
  1851. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  1852. "Ammo"
  1853. ).Value <= 0
  1854. then
  1855. game:GetService("ReplicatedStorage").MainEvent:FireServer(
  1856. "Reload",
  1857. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool")
  1858. )
  1859. end
  1860. end
  1861. end
  1862. end
  1863.  
  1864. section1:toggle({name = " Medium Armor",def = false, callback = function(bool)
  1865. if getgenv().AutoHighArmor == true then
  1866. getgenv().AutoHighArmor = false
  1867. else
  1868. getgenv().AutoHighArmor = true
  1869. end
  1870.  
  1871. while getgenv().AutoHighArmor == true and game:GetService("RunService").Heartbeat:Wait() do
  1872. pcall(function()
  1873. if game:GetService("Players").LocalPlayer.Character:FindFirstChild("BodyEffects"):FindFirstChild("Armor").Value <= 0 then
  1874. local LS = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame
  1875. repeat
  1876. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Ignored.Shop["[High-Medium Armor] - $2300"].Head.CFrame
  1877. fireclickdetector(game:GetService("Workspace").Ignored.Shop["[High-Medium Armor] - $2300"].ClickDetector)
  1878. game:GetService("RunService").Heartbeat:Wait()
  1879. until game:GetService("Players").LocalPlayer.Character:FindFirstChild("BodyEffects"):FindFirstChild("Armor").Value >= 50
  1880. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = LS
  1881. end
  1882. end)
  1883. end
  1884. end})
  1885.  
  1886. section1:toggle({name = " Stomp",def = false, callback = function(bool)
  1887. getgenv().autostomp = bool
  1888. end})
  1889.  
  1890. if getgenv().autostomp then
  1891. game.ReplicatedStorage.MainEvent:FireServer("Stomp")
  1892. end
  1893.  
  1894.  
  1895. local section1 = tab3:section({name = "Movement",side = "left",size = 220})
  1896.  
  1897. section1:toggle({name = " Enable Cframe",def = false, callback = function(bool)
  1898. getgenv().cframespeedtoggle = bool
  1899. end})
  1900. section1:slider({name = "Cframe Speed",def = 1, max = 20,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  1901. getgenv().speedvalue = value
  1902. end})
  1903.  
  1904. section1:toggle({name = "Spinbot",def = false, callback = function(bool)
  1905. getgenv().Spinbot = bool
  1906. end})
  1907.  
  1908. if Spinbot then
  1909. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  1910. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad((positive1)), 0)
  1911. end
  1912.  
  1913. section1:slider({name = "Spinbot Multiplier",def = 45, max = 165,min = 1,rounding = false,ticking = false,measuring = "",callback = function(value)
  1914. getgenv().positive1 = value
  1915. end})
  1916.  
  1917.  
  1918. section1:toggle({name = "B-Hop",def = false, callback = function(state)
  1919. bhop = state
  1920. spawn(function()
  1921. while wait() and bhop do
  1922. game.Players.LocalPlayer.Character:WaitForChild("Humanoid").Jump = true
  1923. end
  1924. end)
  1925. end})
  1926.  
  1927.  
  1928. section1:button({name = "Speed = Z",callback = function()
  1929.  
  1930.  
  1931. plr = game:GetService('Players').LocalPlayer
  1932. down = true
  1933.  
  1934. function onButton1Down(mouse)
  1935. down = true
  1936. while down do
  1937. if not down then break end
  1938. local char = plr.Character
  1939. char.HumanoidRootPart.Velocity = char.HumanoidRootPart.CFrame.lookVector * 190
  1940. wait()
  1941. end
  1942. end
  1943.  
  1944. function onButton1Up(mouse)
  1945. down = false
  1946. end
  1947.  
  1948. function onSelected(mouse)
  1949. mouse.KeyDown:connect(function(q) if q:lower()=="z"then onButton1Down(mouse)end end)
  1950. mouse.KeyUp:connect(function(q) if q:lower()=="z"then onButton1Up(mouse)end end)
  1951. end
  1952. onSelected(game.Players.LocalPlayer:GetMouse())
  1953.  
  1954. end})
  1955.  
  1956. section1:button({name = "Macro = X",callback = function()
  1957. local Player = game:GetService("Players").LocalPlayer
  1958. local Mouse = Player:GetMouse()
  1959. local SpeedGlitch = false
  1960. local Wallet = Player.Backpack:FindFirstChild("Wallet")
  1961.  
  1962. local UniversalAnimation = Instance.new("Animation")
  1963.  
  1964. function stopTracks()
  1965. for _, v in next, game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):GetPlayingAnimationTracks() do
  1966. if (v.Animation.AnimationId:match("rbxassetid")) then
  1967. v:Stop()
  1968. end
  1969. end
  1970. end
  1971.  
  1972. function loadAnimation(id)
  1973. if UniversalAnimation.AnimationId == id then
  1974. stopTracks()
  1975. UniversalAnimation.AnimationId = "1"
  1976. else
  1977. UniversalAnimation.AnimationId = id
  1978. local animationTrack = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):LoadAnimation(UniversalAnimation)
  1979. animationTrack:Play()
  1980. end
  1981. end
  1982.  
  1983. Mouse.KeyDown:Connect(function(Key)
  1984. if Key == "x" then
  1985. SpeedGlitch = not SpeedGlitch
  1986. if SpeedGlitch == true then
  1987. stopTracks()
  1988. loadAnimation("rbxassetid://3189777795")
  1989. wait(1.5)
  1990. Wallet.Parent = Player.Character
  1991. wait(0.15)
  1992. Player.Character:FindFirstChild("Wallet").Parent = Player.Backpack
  1993. wait(0.05)
  1994. repeat game:GetService("RunService").Heartbeat:wait()
  1995. keypress(0x49)
  1996. game:GetService("RunService").Heartbeat:wait()
  1997. keypress(0x4F)
  1998. game:GetService("RunService").Heartbeat:wait()
  1999. keyrelease(0x49)
  2000. game:GetService("RunService").Heartbeat:wait()
  2001. keyrelease(0x4F)
  2002. game:GetService("RunService").Heartbeat:wait()
  2003. until SpeedGlitch == false
  2004. end
  2005. end
  2006. end)
  2007. end})
  2008.  
  2009. section1:button({name = "Fly = V",callback = function()
  2010. local L_152_
  2011. local L_153_ = game.Players.LocalPlayer
  2012. IYMouse = L_153_:GetMouse()
  2013. IYMouse.KeyDown:connect(
  2014. function(L_154_arg0)
  2015. if L_154_arg0 == "v" then
  2016. if L_152_ then
  2017. L_152_ = false
  2018. fly()
  2019. else
  2020. L_152_ = true
  2021. NOFLY()
  2022. end
  2023. end
  2024. end
  2025. )
  2026. for L_155_forvar0, L_156_forvar1 in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  2027. if L_156_forvar1:IsA("BasePart") and L_156_forvar1.CanCollide == true then
  2028. L_156_forvar1.CanCollide = false
  2029. end
  2030. end
  2031. FLYING = false
  2032. QEfly = true
  2033. iyflyspeed = 7
  2034. vehicleflyspeed = 7
  2035. function sFLY(L_157_arg0)
  2036. repeat
  2037. wait()
  2038. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and
  2039. game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  2040. repeat
  2041. wait()
  2042. until IYMouse
  2043. local L_158_ = game.Players.LocalPlayer.Character.LowerTorso
  2044. local L_159_ = {
  2045. F = 0,
  2046. B = 0,
  2047. L = 0,
  2048. R = 0,
  2049. Q = 0,
  2050. E = 0
  2051. }
  2052. local L_160_ = {
  2053. F = 0,
  2054. B = 0,
  2055. L = 0,
  2056. R = 0,
  2057. Q = 0,
  2058. E = 0
  2059. }
  2060. local L_161_ = 5
  2061. local function L_162_func()
  2062. FLYING = true
  2063. local L_163_ = Instance.new("BodyGyro", L_158_)
  2064. local L_164_ = Instance.new("BodyVelocity", L_158_)
  2065. L_163_.P = 9e4
  2066. L_163_.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2067. L_163_.cframe = L_158_.CFrame
  2068. L_164_.velocity = Vector3.new(0, 0, 0)
  2069. L_164_.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2070. spawn(
  2071. function()
  2072. repeat
  2073. wait()
  2074. if not L_157_arg0 and game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then
  2075. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand =
  2076. true
  2077. end
  2078. if L_159_.L + L_159_.R ~= 0 or L_159_.F + L_159_.B ~= 0 or L_159_.Q + L_159_.E ~= 0 then
  2079. L_161_ = 50
  2080. elseif not (L_159_.L + L_159_.R ~= 0 or L_159_.F + L_159_.B ~= 0 or L_159_.Q + L_159_.E ~= 0) and L_161_ ~= 0 then
  2081. L_161_ = 0
  2082. end
  2083. if L_159_.L + L_159_.R ~= 0 or L_159_.F + L_159_.B ~= 0 or L_159_.Q + L_159_.E ~= 0 then
  2084. L_164_.velocity =
  2085. (workspace.CurrentCamera.CoordinateFrame.lookVector * (L_159_.F + L_159_.B) +
  2086. workspace.CurrentCamera.CoordinateFrame *
  2087. CFrame.new(L_159_.L + L_159_.R, (L_159_.F + L_159_.B + L_159_.Q + L_159_.E) * 0.2, 0).p -
  2088. workspace.CurrentCamera.CoordinateFrame.p) *
  2089. L_161_
  2090. L_160_ = {
  2091. F = L_159_.F,
  2092. B = L_159_.B,
  2093. L = L_159_.L,
  2094. R = L_159_.R
  2095. }
  2096. elseif L_159_.L + L_159_.R == 0 and L_159_.F + L_159_.B == 0 and L_159_.Q + L_159_.E == 0 and L_161_ ~= 0 then
  2097. L_164_.velocity =
  2098. (workspace.CurrentCamera.CoordinateFrame.lookVector * (L_160_.F + L_160_.B) +
  2099. workspace.CurrentCamera.CoordinateFrame *
  2100. CFrame.new(L_160_.L + L_160_.R, (L_160_.F + L_160_.B + L_159_.Q + L_159_.E) * 0.2, 0).p -
  2101. workspace.CurrentCamera.CoordinateFrame.p) *
  2102. L_161_
  2103. else
  2104. L_164_.velocity = Vector3.new(0, 0, 0)
  2105. end
  2106. L_163_.cframe = workspace.CurrentCamera.CoordinateFrame
  2107. until not FLYING
  2108. L_159_ = {
  2109. F = 0,
  2110. B = 0,
  2111. L = 0,
  2112. R = 0,
  2113. Q = 0,
  2114. E = 0
  2115. }
  2116. L_160_ = {
  2117. F = 0,
  2118. B = 0,
  2119. L = 0,
  2120. R = 0,
  2121. Q = 0,
  2122. E = 0
  2123. }
  2124. L_161_ = 0
  2125. L_163_:destroy()
  2126. L_164_:destroy()
  2127. if game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then
  2128. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = false
  2129. end
  2130. end
  2131. )
  2132. end
  2133. IYMouse.KeyDown:connect(
  2134. function(L_165_arg0)
  2135. if L_165_arg0:lower() == "w" then
  2136. if L_157_arg0 then
  2137. L_159_.F = vehicleflyspeed
  2138. else
  2139. L_159_.F = iyflyspeed
  2140. end
  2141. elseif L_165_arg0:lower() == "s" then
  2142. if L_157_arg0 then
  2143. L_159_.B = -vehicleflyspeed
  2144. else
  2145. L_159_.B = -iyflyspeed
  2146. end
  2147. elseif L_165_arg0:lower() == "a" then
  2148. if L_157_arg0 then
  2149. L_159_.L = -vehicleflyspeed
  2150. else
  2151. L_159_.L = -iyflyspeed
  2152. end
  2153. elseif L_165_arg0:lower() == "d" then
  2154. if L_157_arg0 then
  2155. L_159_.R = vehicleflyspeed
  2156. else
  2157. L_159_.R = iyflyspeed
  2158. end
  2159. elseif QEfly and L_165_arg0:lower() == "e" then
  2160. if L_157_arg0 then
  2161. L_159_.Q = vehicleflyspeed * 2
  2162. else
  2163. L_159_.Q = iyflyspeed * 2
  2164. end
  2165. elseif QEfly and L_165_arg0:lower() == "q" then
  2166. if L_157_arg0 then
  2167. L_159_.E = -vehicleflyspeed * 2
  2168. else
  2169. L_159_.E = -iyflyspeed * 2
  2170. end
  2171. end
  2172. end
  2173. )
  2174. IYMouse.KeyUp:connect(
  2175. function(L_166_arg0)
  2176. if L_166_arg0:lower() == "w" then
  2177. L_159_.F = 0
  2178. elseif L_166_arg0:lower() == "s" then
  2179. L_159_.B = 0
  2180. elseif L_166_arg0:lower() == "a" then
  2181. L_159_.L = 0
  2182. elseif L_166_arg0:lower() == "d" then
  2183. L_159_.R = 0
  2184. elseif L_166_arg0:lower() == "e" then
  2185. L_159_.Q = 0
  2186. elseif L_166_arg0:lower() == "q" then
  2187. L_159_.E = 0
  2188. end
  2189. end
  2190. )
  2191. L_162_func()
  2192. end
  2193. function NOFLY()
  2194. FLYING = false
  2195. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid").PlatformStand = true
  2196. end
  2197. function fly()
  2198. NOFLY()
  2199. wait()
  2200. sFLY()
  2201. end
  2202. end})
  2203.  
  2204.  
  2205.  
  2206.  
  2207. local section1 = tab3:section({name = "Client Sided",side = "left",size = 125})
  2208.  
  2209. section1:button({name = "Headless",callback = function()
  2210. game.Players.LocalPlayer.Character.Head.Transparency = 1
  2211. game.Players.LocalPlayer.Character.Head.Transparency = 1
  2212. for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
  2213. if (v:IsA("Decal")) then
  2214. v.Transparency = 1
  2215. end
  2216. end
  2217. end})
  2218.  
  2219. section1:button({name = "Korblox",callback = function()
  2220. local ply = game.Players.LocalPlayer
  2221. local chr = ply.Character
  2222. chr.RightLowerLeg.MeshId = "902942093"
  2223. chr.RightLowerLeg.Transparency = "1"
  2224. chr.RightUpperLeg.MeshId = "http://www.roblox.com/asset/?id=902942096"
  2225. chr.RightUpperLeg.TextureID = "http://roblox.com/asset/?id=902843398"
  2226. chr.RightFoot.MeshId = "902942089"
  2227. chr.RightFoot.Transparency = "1"
  2228. end})
  2229.  
  2230.  
  2231. section1:button({name = "Beast Mode",callback = function()
  2232. local L_412_ = game.Players.LocalPlayer.Character
  2233. local L_413_ = L_412_:WaitForChild("Head")
  2234. local L_414_ = L_413_:WaitForChild("face")
  2235. L_414_.Texture = "rbxassetid://127959433"
  2236. end})
  2237.  
  2238. section1:button({name = "Playful Vampire",callback = function()
  2239. local L_415_ = game.Players.LocalPlayer.Character
  2240. local L_416_ = L_415_:WaitForChild("Head")
  2241. local L_417_ = L_416_:WaitForChild("face")
  2242. L_417_.Texture = "rbxassetid://2409281591"
  2243. end})
  2244.  
  2245.  
  2246. local section1 = tab3:section({name = "FE",side = "left",size = 75})
  2247.  
  2248. section1:button({name = "Headless",callback = function()
  2249. local L_418_ = game.Players.LocalPlayer
  2250. L_418_.Character.Head:BreakJoints()
  2251. L_418_.Character.Head.Position = Vector3.new(0, 999999999999, 0)
  2252. end})
  2253.  
  2254. section1:button({name = "Korblox",callback = function()
  2255. game.Players.LocalPlayer.Character.RightUpperLeg:Destroy()
  2256. end})
  2257.  
  2258.  
  2259.  
  2260.  
  2261. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/trendyylol/roblox/main/Libraries/ESP/Pikahub"))()
  2262. local library = loadstring(game:HttpGet("https://pastebin.com/raw/U2HwmEyF"))()
  2263.  
  2264.  
  2265.  
  2266.  
  2267. -- Esp
  2268.  
  2269. local section1 = tab2:section({name = "ESP",side = "left",size = 105})
  2270.  
  2271. section1:toggle({name = "Boxes", callback = function(bool)
  2272. getgenv().PikaESPSettings.Box = bool
  2273. end})
  2274.  
  2275. section1:toggle({name = "Name",callback = function(bool)
  2276. getgenv().PikaESPSettings.Name = bool
  2277. end})
  2278.  
  2279.  
  2280. section1:toggle({name = "Tracers", callback = function(bool)
  2281. getgenv().PikaESPSettings.Tracers = bool
  2282. end})
  2283.  
  2284. section1:toggle({name = "Unlock Tracers", callback = function(bool)
  2285. getgenv().PikaESPSettings.UnlockTracers = bool
  2286. end})
  2287.  
  2288.  
  2289.  
  2290. local section1 = tab2:section({name = "Visuals Settings",side = "right",size = 165})
  2291.  
  2292.  
  2293.  
  2294.  
  2295. section1:slider({name = "Saturation ",def = 0.1, max = 100,min = 0,rounding = false,ticking = false,measuring = "",callback = function(value)
  2296. Light.ColorCorrection.Saturation = value
  2297. end})
  2298.  
  2299. section1:slider({name = "Fog",def = 500, max = 2000,min = 0,rounding = false,ticking = false,measuring = "",callback = function(value)
  2300. game.Lighting.FogEnd = value
  2301. end})
  2302.  
  2303.  
  2304. section1:slider({name = "Brightness",def = 1, max = 100,min = 0,rounding = false,ticking = false,measuring = "",callback = function(value)
  2305. Light.Brightness = value
  2306. end})
  2307.  
  2308. section1:slider({name = "Stars",def = 500, max = 5000,min = 0,rounding = false,ticking = false,measuring = "",callback = function(value)
  2309. Light.Sky.StarCount = value
  2310. end})
  2311.  
  2312. section1:colorpicker({name = "World Color",cpname = nil,def = Color3.fromRGB(255,255,255),callback = function(color)
  2313. Light.Ambient = color
  2314. Light.OutdoorAmbient = color
  2315. end})
  2316.  
  2317.  
  2318.  
  2319.  
  2320.  
  2321. local custom_theme = {} --soon
  2322.  
  2323. local function CreateInstance(cls,props)
  2324. local inst = Instance.new(cls)
  2325. for i,v in pairs(props) do
  2326. inst[i] = v
  2327. end
  2328. return inst
  2329. end
  2330.  
  2331. local section1 = tab2:section({name = "Client Visuals",side = "left",size = 105})
  2332.  
  2333. section1:toggle({name = "Gun Cham",def = false, callback = function(callback)
  2334. if callback then
  2335. local Client = game.GetService(game, "Players").LocalPlayer
  2336. Client.Character:FindFirstChildOfClass("Tool").Default.Material = Enum.Material.ForceField
  2337. Client.Character:FindFirstChildOfClass("Tool").Default.BrickColor = BrickColor.new(255, 255, 255)
  2338. else
  2339. local Client = game.GetService(game, "Players").LocalPlayer
  2340. Client.Character:FindFirstChildOfClass("Tool").Default.Material = Enum.Material.Plastic
  2341. end
  2342. end})
  2343.  
  2344. section1:colorpicker({name = "Gun Cham Color",cpname = nil,def = Color3.fromRGB(255,255,255),callback = function(color)
  2345. LocalPlayer.Character:FindFirstChildOfClass("Tool").Default.BrickColor = BrickColor.new(color)
  2346. end})
  2347.  
  2348.  
  2349. section1:toggle({name = "Body Cham",def = false, callback = function(callback)
  2350. if callback then
  2351. game.Players.LocalPlayer.Character.LeftHand.Material = "ForceField"
  2352. game.Players.LocalPlayer.Character.RightHand.Material = "ForceField"
  2353. game.Players.LocalPlayer.Character.LeftLowerArm.Material = "ForceField"
  2354. game.Players.LocalPlayer.Character.RightLowerArm.Material = "ForceField"
  2355. game.Players.LocalPlayer.Character.LeftUpperArm.Material = "ForceField"
  2356. game.Players.LocalPlayer.Character.RightUpperArm.Material = "ForceField"
  2357. game.Players.LocalPlayer.Character.LeftFoot.Material = "ForceField"
  2358. game.Players.LocalPlayer.Character.RightFoot.Material = "ForceField"
  2359. game.Players.LocalPlayer.Character.LeftLowerLeg.Material = "ForceField"
  2360. game.Players.LocalPlayer.Character.RightLowerLeg.Material = "ForceField"
  2361. game.Players.LocalPlayer.Character.UpperTorso.Material = "ForceField"
  2362. game.Players.LocalPlayer.Character.LowerTorso.Material = "ForceField"
  2363. game.Players.LocalPlayer.Character.LeftUpperLeg.Material = "ForceField"
  2364. game.Players.LocalPlayer.Character.RightUpperLeg.Material = "ForceField"
  2365. game.Players.LocalPlayer.Character.Head.Material = "ForceField"
  2366. else
  2367. game.Players.LocalPlayer.Character.LeftHand.Material = "Plastic"
  2368. game.Players.LocalPlayer.Character.RightHand.Material = "Plastic"
  2369. game.Players.LocalPlayer.Character.LeftLowerArm.Material = "Plastic"
  2370. game.Players.LocalPlayer.Character.RightLowerArm.Material = "Plastic"
  2371. game.Players.LocalPlayer.Character.LeftUpperArm.Material = "Plastic"
  2372. game.Players.LocalPlayer.Character.RightUpperArm.Material = "Plastic"
  2373. game.Players.LocalPlayer.Character.LeftFoot.Material = "Plastic"
  2374. game.Players.LocalPlayer.Character.RightFoot.Material = "Plastic"
  2375. game.Players.LocalPlayer.Character.LeftLowerLeg.Material = "Plastic"
  2376. game.Players.LocalPlayer.Character.RightLowerLeg.Material = "Plastic"
  2377. game.Players.LocalPlayer.Character.UpperTorso.Material = "Plastic"
  2378. game.Players.LocalPlayer.Character.LowerTorso.Material = "Plastic"
  2379. game.Players.LocalPlayer.Character.LeftUpperLeg.Material = "Plastic"
  2380. game.Players.LocalPlayer.Character.RightUpperLeg.Material = "Plastic"
  2381. game.Players.LocalPlayer.Character.Head.Material = "Plastic"
  2382. end
  2383. end})
  2384.  
  2385. section1:colorpicker({name = "Body Color",cpname = nil,def = Color3.fromRGB(255,255,255),callback = function(color)
  2386. LocalPlayer.Character.LeftHand.Color = color
  2387. LocalPlayer.Character.RightHand.Color = color
  2388. LocalPlayer.Character.LeftLowerArm.Color = color
  2389. LocalPlayer.Character.RightLowerArm.Color = color
  2390. LocalPlayer.Character.LeftUpperArm.Color = color
  2391. LocalPlayer.Character.RightUpperArm.Color = color
  2392. LocalPlayer.Character.LeftFoot.Color = color
  2393. LocalPlayer.Character.RightFoot.Color = color
  2394. LocalPlayer.Character.LeftLowerLeg.Color = color
  2395. LocalPlayer.Character.RightLowerLeg.Color = color
  2396. LocalPlayer.Character.UpperTorso.Color = color
  2397. LocalPlayer.Character.LowerTorso.Color = color
  2398. LocalPlayer.Character.LeftUpperLeg.Color = color
  2399. LocalPlayer.Character.RightUpperLeg.Color = color
  2400. LocalPlayer.Character.Head.Color = color
  2401. end})
  2402.  
  2403.  
  2404.  
  2405.  
  2406.  
  2407. local section1 = tab4:section({name = "Locations",side = "left",size = 300})
  2408. section1:button({name = "Admin Base",def = false,callback = function()
  2409. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-874.903992, -32.6492004, -525.215698)
  2410. end})
  2411.  
  2412. section1:button({name = "Food",def = false,callback = function()
  2413. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2414. CFrame.new(-788.39318847656, -39.649200439453, -935.27795410156)
  2415. end})
  2416.  
  2417. section1:button({name = "High-Medium Armor",def = false,callback = function()
  2418. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2419. CFrame.new(-934.73651123047, -28.492471694946, 565.99884033203)
  2420. end})
  2421.  
  2422. section1:button({name = "Double Barrel",def = false,callback = function()
  2423. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1039.59985, 18.8513641, -256.449951, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2424. end})
  2425.  
  2426. section1:button({name = "Revolver",def = false,callback = function()
  2427. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-638.75, 18.8500004, -118.175011, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2428. end})
  2429.  
  2430. section1:button({name = "Shotgun",def = false,callback = function()
  2431. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-578.623657, 5.47212696, -725.131531, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2432. end})
  2433.  
  2434. section1:button({name = "Tac",def = false,callback = function()
  2435. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(470.877533, 45.1272316, -620.630676, 0.999999821, 0.000604254019, -2.60802135e-08, -0.000604254019, 0.999999821, -8.63220048e-05, -2.60802135e-08, 8.63220048e-05, 1)
  2436. end})
  2437.  
  2438. section1:button({name = "Smg",def = false,callback = function()
  2439. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-577.123413, 5.47666788, -718.031433, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2440. end})
  2441.  
  2442.  
  2443. section1:button({name = "Rpg",def = false,callback = function()
  2444. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-794.814697, -42.5468521, -932.97998, 5.96046448e-08, 2.91038305e-11, 1, -0.000610388815, 0.999999821, 2.91038305e-11, -0.999999762, -0.000610388815, 5.96046448e-08)
  2445. end})
  2446.  
  2447.  
  2448. section1:button({name = "Casino",def = false,callback = function()
  2449. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-962.72345, 21.2549973, -186.814987, -0.0274876002, 2.91178949e-05, 0.999621451, -5.5798846e-06, 1, -2.92823333e-05, -0.999621451, -6.38268148e-06, -0.0274876002)
  2450. end})
  2451.  
  2452.  
  2453. section1:button({name = "Bank",def = false,callback = function()
  2454. getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-402.123718, 21.75, -283.988617, 0.0159681588, -0.000121377925, -0.999872446, -2.60148026e-05, 1, -0.000121808866, 0.999872506, 2.79565484e-05, 0.0159681737)
  2455. end})
  2456.  
  2457.  
  2458.  
  2459.  
  2460. local section1 = tab4:section({name = "Weapons",side = "Right",size = 250})
  2461. section1:button({name = "Revolver",def = false,callback = function()
  2462. LocalPlayer = game:GetService "Players".LocalPlayer
  2463. local gunName = "[Revolver] - $1300"
  2464. local k = game.Workspace.Ignored.Shop[gunName]
  2465. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2466. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2467. wait(0.5)
  2468. fireclickdetector(game.Workspace.Ignored.Shop[gunName].ClickDetector)
  2469. fireclickdetector(game.Workspace.Ignored.Shop[gunName].ClickDetector)
  2470. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2471. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2472. end})
  2473.  
  2474.  
  2475.  
  2476. section1:button({name = "DB",def = false,callback = function()
  2477.  
  2478. LocalPlayer = game:GetService "Players".LocalPlayer
  2479. local k = game.Workspace.Ignored.Shop["[Double-Barrel SG] - $1400"]
  2480. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2481. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2482. wait(0.5)
  2483. fireclickdetector(game.Workspace.Ignored.Shop["[Double-Barrel SG] - $1400"].ClickDetector)
  2484. fireclickdetector(game.Workspace.Ignored.Shop["[Double-Barrel SG] - $1400"].ClickDetector)
  2485. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2486. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2487. end})
  2488.  
  2489.  
  2490.  
  2491. section1:button({name = "SMG",def = false,callback = function()
  2492. LocalPlayer = game:GetService "Players".LocalPlayer
  2493. local k = game.Workspace.Ignored.Shop["[SMG] - $750"]
  2494. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2495. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2496. wait(0.5)
  2497. fireclickdetector(game.Workspace.Ignored.Shop["[SMG] - $750"].ClickDetector)
  2498. fireclickdetector(game.Workspace.Ignored.Shop["[SMG] - $750"].ClickDetector)
  2499. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2500. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2501. end})
  2502.  
  2503.  
  2504. section1:button({name = "AK47",def = false,callback = function()
  2505. LocalPlayer = game:GetService "Players".LocalPlayer
  2506. local k = game.Workspace.Ignored.Shop["[AK47] - $2250"]
  2507. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2508. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2509. wait(0.5)
  2510. fireclickdetector(game.Workspace.Ignored.Shop["[AK47] - $2250"].ClickDetector)
  2511. fireclickdetector(game.Workspace.Ignored.Shop["[AK47] - $2250"].ClickDetector)
  2512. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2513. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2514. end})
  2515.  
  2516.  
  2517.  
  2518. section1:button({name = "LMG",def = false,callback = function()
  2519. LocalPlayer = game:GetService "Players".LocalPlayer
  2520. local k = game.Workspace.Ignored.Shop["[LMG] - $3750"]
  2521. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2522. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2523. wait(0.5)
  2524. fireclickdetector(game.Workspace.Ignored.Shop["[LMG] - $3750"].ClickDetector)
  2525. fireclickdetector(game.Workspace.Ignored.Shop["[LMG] - $3750"].ClickDetector)
  2526. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2527. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2528. end})
  2529.  
  2530.  
  2531. section1:button({name = "Glock",def = false,callback = function()
  2532. LocalPlayer = game:GetService "Players".LocalPlayer
  2533. local k = game.Workspace.Ignored.Shop["[Glock] - $500"]
  2534. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2535. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2536. wait(0.5)
  2537. fireclickdetector(game.Workspace.Ignored.Shop["[Glock] - $500"].ClickDetector)
  2538. fireclickdetector(game.Workspace.Ignored.Shop["[Glock] - $500"].ClickDetector)
  2539. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2540. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2541. end})
  2542.  
  2543.  
  2544. section1:button({name = "Silencer",def = false,callback = function()
  2545. LocalPlayer = game:GetService "Players".LocalPlayer
  2546. local k = game.Workspace.Ignored.Shop["[Silencer] - $550"]
  2547. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2548. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2549. wait(0.5)
  2550. fireclickdetector(game.Workspace.Ignored.Shop["[Silencer] - $550"].ClickDetector)
  2551. fireclickdetector(game.Workspace.Ignored.Shop["[Silencer] - $550"].ClickDetector)
  2552. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2553. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2554. end})
  2555.  
  2556. section1:button({name = "RPG",def = false,callback = function()
  2557. LocalPlayer = game:GetService "Players".LocalPlayer
  2558. local k = game.Workspace.Ignored.Shop["[RPG] - $6000"]
  2559. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2560. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2561. wait(0.5)
  2562. fireclickdetector(game.Workspace.Ignored.Shop["[RPG] - $6000"].ClickDetector)
  2563. fireclickdetector(game.Workspace.Ignored.Shop["[RPG] - $6000"].ClickDetector)
  2564. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2565. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2566. end})
  2567.  
  2568. section1:button({name = "Flamethrower",def = false,callback = function()
  2569. LocalPlayer = game:GetService "Players".LocalPlayer
  2570. local k = game.Workspace.Ignored.Shop["[Flamethrower] - $25000"]
  2571. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2572. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2573. wait(0.5)
  2574. fireclickdetector(game.Workspace.Ignored.Shop["[Flamethrower] - $25000"].ClickDetector)
  2575. fireclickdetector(game.Workspace.Ignored.Shop["[Flamethrower] - $25000"].ClickDetector)
  2576.  
  2577. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2578. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2579. end})
  2580.  
  2581.  
  2582. local section1 = tab4:section({name = "Ammo",side = "Right",size = 250})
  2583.  
  2584. section1:button({name = "Revolver Ammo",def = false,callback = function()
  2585. local LocalPlayer = game:GetService "Players".LocalPlayer
  2586. local gunName = "12 [Revolver Ammo] - $75"
  2587. local k = game.Workspace.Ignored.Shop[gunName]
  2588. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2589. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2590. wait(0.5)
  2591. fireclickdetector(game.Workspace.Ignored.Shop[gunName].ClickDetector)
  2592. fireclickdetector(game.Workspace.Ignored.Shop[gunName].ClickDetector)
  2593. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2594. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2595. end})
  2596.  
  2597. section1:button({name = "DB Ammo",def = false,callback = function()
  2598. local LocalPlayer = game:GetService "Players".LocalPlayer
  2599. local k = game.Workspace.Ignored.Shop["18 [Double-Barrel SG Ammo] - $60"]
  2600. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2601. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2602. wait(0.5)
  2603. fireclickdetector(game.Workspace.Ignored.Shop["18 [Double-Barrel SG Ammo] - $60"].ClickDetector)
  2604. fireclickdetector(game.Workspace.Ignored.Shop["18 [Double-Barrel SG Ammo] - $60"].ClickDetector)
  2605. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2606. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2607. end})
  2608.  
  2609. section1:button({name = "SMG Ammo",def = false,callback = function()
  2610. LocalPlayer = game:GetService "Players".LocalPlayer
  2611. local k = game.Workspace.Ignored.Shop["80 [SMG Ammo] - $60"]
  2612. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2613. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2614. wait(0.5)
  2615. fireclickdetector(game.Workspace.Ignored.Shop["80 [SMG Ammo] - $60"].ClickDetector)
  2616. fireclickdetector(game.Workspace.Ignored.Shop["80 [SMG Ammo] - $60"].ClickDetector)
  2617. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2618. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2619. end})
  2620.  
  2621. section1:button({name = "AK47 Ammo",def = false,callback = function()
  2622. LocalPlayer = game:GetService "Players".LocalPlayer
  2623. local k = game.Workspace.Ignored.Shop["90 [AK47 Ammo] - $80"]
  2624. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2625. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2626. wait(0.5)
  2627. fireclickdetector(game.Workspace.Ignored.Shop["90 [AK47 Ammo] - $80"].ClickDetector)
  2628. fireclickdetector(game.Workspace.Ignored.Shop["90 [AK47 Ammo] - $80"].ClickDetector)
  2629. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2630. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2631. end})
  2632.  
  2633. section1:button({name = "LMG Ammo",def = false,callback = function()
  2634. local LocalPlayer = game:GetService "Players".LocalPlayer
  2635. local k = game.Workspace.Ignored.Shop["200 [LMG Ammo] - $300"]
  2636. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2637. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2638. wait(0.5)
  2639. fireclickdetector(game.Workspace.Ignored.Shop["200 [LMG Ammo] - $300"].ClickDetector)
  2640. fireclickdetector(game.Workspace.Ignored.Shop["200 [LMG Ammo] - $300"].ClickDetector)
  2641. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2642. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2643. end})
  2644.  
  2645. section1:button({name = "Glock Ammo",def = false,callback = function()
  2646. local LocalPlayer = game:GetService "Players".LocalPlayer
  2647. local k = game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"]
  2648. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2649. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2650. wait(0.5)
  2651. fireclickdetector(game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"].ClickDetector)
  2652. fireclickdetector(game.Workspace.Ignored.Shop["25 [Glock Ammo] - $60"].ClickDetector)
  2653. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2654. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2655. end})
  2656.  
  2657. section1:button({name = "Silencer Ammo",def = false,callback = function()
  2658. local LocalPlayer = game:GetService "Players".LocalPlayer
  2659. local k = game.Workspace.Ignored.Shop["25 [Silencer Ammo] - $50"]
  2660. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2661. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2662. wait(0.5)
  2663. fireclickdetector(game.Workspace.Ignored.Shop["25 [Silencer Ammo] - $50"].ClickDetector)
  2664. fireclickdetector(game.Workspace.Ignored.Shop["25 [Silencer Ammo] - $50"].ClickDetector)
  2665. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2666. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2667. end})
  2668.  
  2669. section1:button({name = "RPG Ammo",def = false,callback = function()
  2670. local LocalPlayer = game:GetService "Players".LocalPlayer
  2671. local k = game.Workspace.Ignored.Shop["5 [RPG Ammo] - $1000"]
  2672. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2673. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2674. wait(0.5)
  2675. fireclickdetector(game.Workspace.Ignored.Shop["5 [RPG Ammo] - $1000"].ClickDetector)
  2676. fireclickdetector(game.Workspace.Ignored.Shop["5 [RPG Ammo] - $1000"].ClickDetector)
  2677. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2678. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2679. end})
  2680.  
  2681. section1:button({name = "Flamethrower Ammo",def = false,callback = function()
  2682. local LocalPlayer = game:GetService "Players".LocalPlayer
  2683. local k = game.Workspace.Ignored.Shop["140 [Flamethrower Ammo] - $1550"]
  2684. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2685. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2686. wait(0.5)
  2687. fireclickdetector(game.Workspace.Ignored.Shop["140 [Flamethrower Ammo] - $1550"].ClickDetector)
  2688. fireclickdetector(game.Workspace.Ignored.Shop["140 [Flamethrower Ammo] - $1550"].ClickDetector)
  2689.  
  2690. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2691. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2692. end})
  2693.  
  2694.  
  2695. local section1 = tab4:section({name = "Food",side = "Left",size = 220})
  2696. section1:button({name = "Pizza",def = false,callback = function()
  2697. local LocalPlayer = game:GetService "Players".LocalPlayer
  2698. local k = game.Workspace.Ignored.Shop["[Pizza] - $5"]
  2699. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2700. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2701. wait(0.5)
  2702. fireclickdetector(game.Workspace.Ignored.Shop["[Pizza] - $5"].ClickDetector)
  2703. fireclickdetector(game.Workspace.Ignored.Shop["[Pizza] - $5"].ClickDetector)
  2704. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2705. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2706. end})
  2707.  
  2708.  
  2709. section1:button({name = "Chicken",def = false,callback = function()
  2710. local LocalPlayer = game:GetService "Players".LocalPlayer
  2711. local k = game.Workspace.Ignored.Shop["[Chicken] - $7"]
  2712. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2713. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2714. wait(0.5)
  2715. fireclickdetector(game.Workspace.Ignored.Shop["[Chicken] - $7"].ClickDetector)
  2716. fireclickdetector(game.Workspace.Ignored.Shop["[Chicken] - $7"].ClickDetector)
  2717.  
  2718. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2719. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2720.  
  2721. end})
  2722.  
  2723. section1:button({name = "Taco",def = false,callback = function()
  2724. local LocalPlayer = game:GetService "Players".LocalPlayer
  2725. local k = game.Workspace.Ignored.Shop["[Taco] - $2"]
  2726. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2727. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2728. wait(0.5)
  2729. fireclickdetector(game.Workspace.Ignored.Shop["[Taco] - $2"].ClickDetector)
  2730. fireclickdetector(game.Workspace.Ignored.Shop["[Taco] - $2"].ClickDetector)
  2731. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2732. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2733. end})
  2734.  
  2735. section1:button({name = "Hot Dog",def = false,callback = function()
  2736. local LocalPlayer = game:GetService "Players".LocalPlayer
  2737. local k = game.Workspace.Ignored.Shop["[HotDog] - $8"]
  2738. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2739. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2740. wait(0.5)
  2741. fireclickdetector(game.Workspace.Ignored.Shop["[HotDog] - $8"].ClickDetector)
  2742. fireclickdetector(game.Workspace.Ignored.Shop["[HotDog] - $8"].ClickDetector)
  2743. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2744. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2745. end})
  2746.  
  2747. section1:button({name = "Hamburger",def = false,callback = function()
  2748. local LocalPlayer = game:GetService "Players".LocalPlayer
  2749. local k = game.Workspace.Ignored.Shop["[Hamburger] - $5"]
  2750. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2751. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2752. wait(0.5)
  2753. fireclickdetector(game.Workspace.Ignored.Shop["[Hamburger] - $5"].ClickDetector)
  2754. fireclickdetector(game.Workspace.Ignored.Shop["[Hamburger] - $5"].ClickDetector)
  2755. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2756. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2757. end})
  2758.  
  2759.  
  2760. section1:button({name = "Lettuce",def = false,callback = function()
  2761. local LocalPlayer = game:GetService "Players".LocalPlayer
  2762. local k = game.Workspace.Ignored.Shop["[Lettuce] - $5"]
  2763. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2764. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2765. wait(0.5)
  2766. fireclickdetector(game.Workspace.Ignored.Shop["[Lettuce] - $5"].ClickDetector)
  2767. fireclickdetector(game.Workspace.Ignored.Shop["[Lettuce] - $5"].ClickDetector)
  2768. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2769. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2770. end})
  2771.  
  2772.  
  2773. section1:button({name = "Donut",def = false,callback = function()
  2774. local LocalPlayer = game:GetService "Players".LocalPlayer
  2775. local k = game.Workspace.Ignored.Shop["[Donut] - $5"]
  2776. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2777. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2778. wait(0.5)
  2779. fireclickdetector(game.Workspace.Ignored.Shop["[Donut] - $5"].ClickDetector)
  2780. fireclickdetector(game.Workspace.Ignored.Shop["[Donut] - $5"].ClickDetector)
  2781. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2782. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2783. end})
  2784.  
  2785.  
  2786. section1:button({name = "Popcorn",def = false,callback = function()
  2787. local LocalPlayer = game:GetService "Players".LocalPlayer
  2788. local k = game.Workspace.Ignored.Shop["[Popcorn] - $7"]
  2789. local savedsilencerpos = LocalPlayer.Character.HumanoidRootPart.Position
  2790. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = k.Head.CFrame + Vector3.new(0, 3, 0)
  2791. wait(0.5)
  2792. fireclickdetector(game.Workspace.Ignored.Shop["[Popcorn] - $7"].ClickDetector)
  2793. fireclickdetector(game.Workspace.Ignored.Shop["[Popcorn] - $7"].ClickDetector)
  2794. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2795. LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(savedsilencerpos)
  2796. end})
  2797.  
  2798.  
  2799.  
  2800.  
  2801. game:GetService("RunService").Heartbeat:Connect(
  2802. function()
  2803. if cframespeedtoggle == true then
  2804. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2805. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
  2806. game.Players.LocalPlayer.Character.Humanoid.MoveDirection * speedvalue
  2807. end
  2808. if Spinbot then
  2809. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2810. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad((positive1)), 0)
  2811. end
  2812. if Jitter then
  2813. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2814. CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Position) *
  2815. CFrame.Angles(0, math.rad(Angle) + math.rad((math.random(1, 2) == 1 and Jit or -Jit)), 0)
  2816. end
  2817.  
  2818. if AntiAim1 then
  2819. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity =
  2820. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * -250
  2821. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2822. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(555), 0)
  2823. end
  2824. if AntiAim2 then
  2825. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2826. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, 1.333, 0)
  2827. wait(0.2)
  2828. end
  2829. if getgenv().antilock then
  2830. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  2831. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
  2832. -game.Players.LocalPlayer.Character.Humanoid.MoveDirection * getgenv().antilockspeed
  2833. end
  2834. if getgenv().DesyncEnabled then
  2835. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Velocity = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * getgenv().DesyncVelocity
  2836. game:GetService("RunService").Heartbeat:Wait()
  2837. end
  2838. if getgenv().antistomplo then
  2839. if game.Players.LocalPlayer.Character.Humanoid.Health <= 5 then
  2840. for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  2841. if v:IsA("BasePart") then
  2842. v:Destroy()
  2843. end
  2844. end
  2845. end
  2846. end
  2847. if getgenv().AutoReloadx then
  2848. if game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool") then
  2849. if
  2850. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  2851. "Ammo"
  2852. )
  2853. then
  2854. if
  2855. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool"):FindFirstChild(
  2856. "Ammo"
  2857. ).Value <= 0
  2858. then
  2859. game:GetService("ReplicatedStorage").MainEvent:FireServer(
  2860. "Reload",
  2861. game:GetService("Players").LocalPlayer.Character:FindFirstChildWhichIsA("Tool")
  2862. )
  2863. end
  2864. end
  2865. end
  2866. end
  2867. if getgenv().autostomp then
  2868. game.ReplicatedStorage.MainEvent:FireServer("Stomp")
  2869. end
  2870. if getgenv().antibag then
  2871. game.Players.LocalPlayer.Character["Christmas_Sock"]:Destroy()
  2872. end
  2873. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement