Advertisement
NettTaken

Forsaken Script

Feb 4th, 2025 (edited)
2,468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 72.46 KB | None | 0 0
  1. local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua"))()
  2.  
  3.  
  4. local isHighlightActive = false
  5.  
  6. local toolhighlightactive = false
  7.  
  8. local hawktuahactive = false
  9.  
  10. local isCorruptNatureEspActive = false
  11.  
  12. local isSurvivorUtilEspActive = false
  13.  
  14. local run = false
  15.  
  16. local delay
  17.  
  18. local isSurvivorHighlightActive = false
  19.  
  20. local givepizza = false
  21.  
  22. local connections = {}
  23.  
  24. local isKillerHighlightActive = false
  25.  
  26. local hideplayerbar = false
  27.  
  28. local VirtualBallsManager = game:GetService('VirtualInputManager')
  29.  
  30. local jumppowerenabled = false
  31.  
  32. local survivorutil = {
  33. "007n7",
  34. "BuildermanSentry",
  35. "BuildermanDispenser",
  36. "Pizza",
  37. "BuildermanSentryEffectRange"
  38. }
  39.  
  40.  
  41.  
  42.  
  43.  
  44. local aimbot1x1sounds = {
  45. "rbxassetid://79782181585087",
  46. "rbxassetid://128711903717226"
  47. }
  48.  
  49. local chanceaimbotsounds = {
  50. "rbxassetid://201858045",
  51. "rbxassetid://139012439429121"
  52. }
  53.  
  54. local johnaimbotsounds = {
  55. "rbxassetid://109525294317144"
  56. }
  57.  
  58. local jasonaimbotsounds = {
  59. "rbxassetid://112809109188560",
  60. "rbxassetid://102228729296384"
  61. }
  62.  
  63. local shedaimbotsounds = {
  64. "rbxassetid://12222225",
  65. "rbxassetid://83851356262523"
  66. }
  67.  
  68. local guestsounds = {
  69. "rbxassetid://609342351"
  70. }
  71.  
  72. local hawktuahactivatesound = {
  73. "rbxassetid://110759725172567"
  74. }
  75.  
  76. local hakariactive = false
  77.  
  78. local quietactive = false
  79.  
  80. local stam = false
  81.  
  82. local connection
  83.  
  84. local chanceaim = false
  85.  
  86. local chanceaimbotLoop
  87.  
  88. local jasonaimbotloop
  89.  
  90. local genshouldloop = false
  91.  
  92. local genactive = false
  93.  
  94. local aimbot1x1loop
  95.  
  96. local johnloop
  97.  
  98. local guestloop
  99.  
  100. local shedloop
  101.  
  102. local player = game.Players.LocalPlayer
  103.  
  104. local aimbot1x1 = false
  105.  
  106. local johnaim = false
  107.  
  108. local connection
  109.  
  110. local jasonaim = false
  111.  
  112. local shedaim = false
  113.  
  114. local guestaim = false
  115.  
  116.  
  117.  
  118.  
  119. local function initialize()
  120. local GUI = Mercury:Create{
  121. Name = "Appleware",
  122. Size = UDim2.fromOffset(600, 400),
  123. Theme = Mercury.Themes.Dark,
  124. Link = "https://GOAPPLENATION!/appleman"
  125. }
  126.  
  127. local function button1() -- creds to ivan
  128. local visible = true
  129. local sausageHolder = game:GetService("CoreGui").TopBarApp.UnibarLeftFrame.UnibarMenu["2"]
  130. local originalSize = sausageHolder.Size.X.Offset
  131.  
  132. sausageHolder.Size = UDim2.new(0, originalSize + 48, 0, sausageHolder.Size.Y.Offset)
  133.  
  134. local buttonFrame = Instance.new("Frame", sausageHolder)
  135. buttonFrame.Size = UDim2.new(0, 44, 0, 44)
  136. buttonFrame.BackgroundTransparency = 1
  137. buttonFrame.BorderSizePixel = 0
  138. buttonFrame.Position = UDim2.new(0, sausageHolder.Size.X.Offset - 48, 0, 0)
  139.  
  140. local imageButton = Instance.new("ImageButton", buttonFrame)
  141. imageButton.BackgroundTransparency = 1
  142. imageButton.BorderSizePixel = 0
  143. imageButton.Size = UDim2.new(0, 36, 0, 36)
  144. imageButton.AnchorPoint = Vector2.new(0.5, 0.5)
  145. imageButton.Position = UDim2.new(0.5, 0, 0.5, 0)
  146. imageButton.Image = "http://www.roblox.com/asset/?id=99937635381008"
  147.  
  148. local function toggleGUI()
  149. visible = not visible
  150. GUI:show(visible)
  151. sausageHolder.Size = UDim2.new(0, originalSize + (visible and 48 or 0), 0, sausageHolder.Size.Y.Offset)
  152. end
  153.  
  154. imageButton.Activated:Connect(toggleGUI)
  155.  
  156. sausageHolder:GetPropertyChangedSignal("Size"):Connect(function()
  157. if sausageHolder.Size.X.Offset == originalSize then
  158. sausageHolder.Size = UDim2.new(0, originalSize + 48, 0, sausageHolder.Size.Y.Offset)
  159. end
  160. end)
  161. end
  162.  
  163. local function button2() -- creds to ivan
  164. local visible = true
  165. local topBarApp = game:GetService("CoreGui"):WaitForChild("TopBarApp")
  166. local leftFrame = topBarApp:WaitForChild("TopBarFrame"):WaitForChild("LeftFrame")
  167.  
  168. local sigmaFrame = Instance.new("Frame", leftFrame)
  169. sigmaFrame.Name = "SigmaFrame"
  170. sigmaFrame.Size = UDim2.new(0, 32, 0, 32)
  171. sigmaFrame.Position = UDim2.new(0, 0, 1, 0)
  172. sigmaFrame.BackgroundTransparency = 1
  173. sigmaFrame.LayoutOrder = 5
  174.  
  175. local background = Instance.new("ImageLabel", sigmaFrame)
  176. background.Name = "Background"
  177. background.Size = UDim2.new(0, 32, 0, 32)
  178. background.Position = UDim2.new(0, 0, 0, 0)
  179. background.Image = "rbxasset://textures/ui/TopBar/iconBase.png"
  180. background.BackgroundTransparency = 1
  181.  
  182. local icon = Instance.new("ImageButton", background)
  183. icon.Name = "Icon"
  184. icon.Size = UDim2.new(0, 36, 0, 36)
  185. icon.Position = UDim2.new(0.5, 0, 0.5, 0)
  186. icon.AnchorPoint = Vector2.new(0.5, 0.5)
  187. icon.Image = "http://www.roblox.com/asset/?id=99937635381008"
  188. icon.BackgroundTransparency = 1
  189.  
  190. local function toggleGUI()
  191. visible = not visible
  192. GUI:show(visible)
  193. end
  194. icon.Activated:Connect(toggleGUI)
  195. end
  196.  
  197. local function init() -- creds to ivan
  198. if game:GetService("CoreGui"):FindFirstChild("TopBarApp"):FindFirstChild("UnibarLeftFrame") then
  199. button1()
  200. else
  201. button2()
  202. end
  203. end
  204.  
  205. init()
  206.  
  207.  
  208.  
  209.  
  210. local function toggleHighlightGen(state)
  211. isHighlightActive = state
  212.  
  213. local function applyGeneratorHighlight(generator)
  214. if generator.Name == "Generator" then
  215. local existingHighlight = generator:FindFirstChild("GeneratorHighlight")
  216. local progress = generator:FindFirstChild("Progress")
  217.  
  218. if isHighlightActive then
  219. if not existingHighlight then
  220. local genhighlight = Instance.new("Highlight")
  221. genhighlight.Parent = generator
  222. genhighlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  223. genhighlight.Name = "GeneratorHighlight"
  224. end
  225. else
  226. if existingHighlight then
  227. existingHighlight:Destroy()
  228. end
  229. return
  230. end
  231.  
  232. if progress then
  233. if progress.Value == 100 then
  234. local highlight = generator:FindFirstChild("GeneratorHighlight")
  235. if highlight then
  236. highlight:Destroy()
  237. end
  238. return
  239. end
  240.  
  241. progress:GetPropertyChangedSignal("Value"):Connect(function()
  242. if progress.Value == 100 then
  243. local highlight = generator:FindFirstChild("GeneratorHighlight")
  244. if highlight then
  245. highlight:Destroy()
  246. end
  247. elseif isHighlightActive and not generator:FindFirstChild("GeneratorHighlight") then
  248. local genhighlight = Instance.new("Highlight")
  249. genhighlight.Parent = generator
  250. genhighlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  251. genhighlight.Name = "GeneratorHighlight"
  252. end
  253. end)
  254. end
  255. end
  256. end
  257.  
  258. for _, v in pairs(game.Workspace.Map.Ingame.Map:GetChildren()) do
  259. applyGeneratorHighlight(v)
  260. end
  261.  
  262. game.Workspace.Map.Ingame.Map.ChildAdded:Connect(function(child)
  263. applyGeneratorHighlight(child)
  264. end)
  265. end
  266.  
  267.  
  268.  
  269. local function togglehidebar(state)
  270. hideplayerbar = state
  271. local playergui = player.PlayerGui
  272. local playerinfo = playergui.TemporaryUI.PlayerInfo
  273.  
  274. if hideplayerbar then
  275. playerinfo.CurrentSurvivors.Visible = false
  276. playerinfo.PlayerIcon.Image = "rbxassetid://12549056837"
  277. else
  278. playerinfo.CurrentSurvivors.Visible = true
  279. end
  280. end
  281.  
  282.  
  283. local function hawktuahmode(state)
  284. if player.Character.Name ~= "c00lkidd" then
  285. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't COolkid, this POSSIBLY can bug out, so untoggle unless you're on Coolkidd!", Duration = 5}
  286. return end
  287. local TS = game:GetService("TweenService")
  288. hawktuahactive = state
  289. if state then
  290. GUI:Notification{Title = "DM", Text = "hawk tuah mode", Duration = 10}
  291. end
  292.  
  293. game.DescendantAdded:Connect(function(descendant)
  294. for _, v in pairs(hawktuahactivatesound) do
  295. if descendant.Name == v then
  296. if hawktuahactive then
  297. local propout = {
  298. ImageTransparency = 1
  299. }
  300.  
  301. local propin = {
  302. ImageTransparency = 0
  303. }
  304.  
  305. local screengui = Instance.new("ScreenGui")
  306. local frame = Instance.new("Frame")
  307. local image = Instance.new("ImageLabel")
  308. local sound = Instance.new("Sound")
  309. sound.Parent = game.Workspace
  310. sound.SoundId = "rbxassetid://17787027130"
  311. sound:Play()
  312.  
  313. screengui.Parent = game.Players.LocalPlayer.PlayerGui
  314. screengui.IgnoreGuiInset = true
  315. frame.Parent = screengui
  316. image.Parent = frame
  317.  
  318. frame.Size = UDim2.new(1,0,1,0)
  319. frame.Position = UDim2.new(0, 0, 0, 0)
  320. frame.BackgroundTransparency = 1
  321.  
  322. image.Size = UDim2.new(1,0,1,0)
  323. image.Position = UDim2.new(0, 0, 0, 0)
  324. image.BackgroundTransparency = 1
  325.  
  326. image.Image = "http://www.roblox.com/asset/?id=100505038126957"
  327.  
  328. local tweeninfoI = TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.In)
  329. local tween = TS:Create(image,tweeninfoI, propout)
  330. tween:play()
  331.  
  332.  
  333. wait(1)
  334.  
  335. local tweeninfoII = TweenInfo.new(0.6, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
  336. local tweenI = TS:Create(image,tweeninfoII, propin)
  337. tweenI:play()
  338. screengui:Destroy()
  339. end
  340. end
  341. end
  342. end)
  343. end
  344.  
  345.  
  346.  
  347. local function Do1x1x1x1Popups() -- creds to ivan
  348. while true do
  349. if Do1x1PopupsLoop then
  350. local player = game:GetService("Players").LocalPlayer
  351. local popups = player.PlayerGui.TemporaryUI:GetChildren()
  352.  
  353. for _, i in ipairs(popups) do
  354. if i.Name == "1x1x1x1Popup" then
  355. local centerX = i.AbsolutePosition.X + (i.AbsoluteSize.X / 2)
  356. local centerY = i.AbsolutePosition.Y + (i.AbsoluteSize.Y / 2)
  357. if DebugNotifications then GUI:Notification{Title = "1x1x1x1 Popup Closed", Text = (pcall(function() return i:GetFullName() end) and i:GetFullName() or "Closed"), Duration = 3} else end
  358. VirtualBallsManager:SendMouseButtonEvent(centerX, centerY, Enum.UserInputType.MouseButton1.Value, true, player.PlayerGui, 1)
  359. VirtualBallsManager:SendMouseButtonEvent(centerX, centerY, Enum.UserInputType.MouseButton1.Value, false, player.PlayerGui, 1)
  360. end
  361. end
  362. end
  363. task.wait(0.1)
  364. end
  365. end
  366.  
  367.  
  368. local function instantsolvegen()
  369. for i, v in pairs(game.Workspace.Map.Ingame.Map:GetChildren()) do
  370. if v.name == "Generator" then
  371. local num = 0
  372. repeat
  373. num += 1
  374. v:WaitForChild("Remotes"):WaitForChild("RE"):FireServer()
  375. until num == 4
  376. end
  377. end
  378. end
  379.  
  380. local function solvegen()
  381. for i, v in pairs(game.Workspace.Map.Ingame.Map:GetChildren()) do
  382. if v.name == "Generator" then
  383. v:WaitForChild("Remotes"):WaitForChild("RE"):FireServer()
  384. end
  385. end
  386. end
  387.  
  388.  
  389. local function instantsolvegenhell()
  390. for i, v in pairs(game.Workspace.Map.Ingame.Map.Generators:GetChildren()) do
  391. if v:IsA("Model") then
  392. local num = 0
  393. repeat
  394. num += 1
  395. v:WaitForChild("Remotes"):WaitForChild("RE"):FireServer()
  396. until num == 4
  397. end
  398. end
  399. end
  400.  
  401. local function highlighttools(state)
  402. toolhighlightActive = state
  403.  
  404. local function applyHighlight(tool)
  405. if toolhighlightActive then
  406. local existinghighlight = tool:FindFirstChild("ToolHighlight")
  407. if not existinghighlight then
  408. local toolhighlight = Instance.new("Highlight")
  409. toolhighlight.Name = "ToolHighlight"
  410. toolhighlight.Parent = tool
  411. toolhighlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  412.  
  413. if tool.Name == "Medkit" then
  414. toolhighlight.FillColor = Color3.fromRGB(0, 255, 0)
  415. elseif tool.Name == "BloxyCola" then
  416. toolhighlight.FillColor = Color3.fromRGB(88, 57, 39)
  417. end
  418. end
  419. else
  420. local existinghighlight = tool:FindFirstChild("ToolHighlight")
  421. if existinghighlight then
  422. existinghighlight:Destroy()
  423. end
  424. end
  425. end
  426.  
  427. for _, v in pairs(game.Workspace.Map.Ingame:GetChildren()) do
  428. if v:IsA("Tool") then
  429. applyHighlight(v)
  430. end
  431. end
  432.  
  433. game.Workspace.Map.Ingame.ChildAdded:Connect(function(child)
  434. if child:IsA("Tool") then
  435. applyHighlight(child)
  436. end
  437. end)
  438. end
  439.  
  440.  
  441.  
  442.  
  443. local function givemesomepizza(state)
  444. if not state then
  445.  
  446. for _, v in pairs(connections) do
  447. v:Disconnect()
  448. end
  449. table.clear(connections)
  450. return
  451. end
  452.  
  453.  
  454. local function tp(child)
  455. if child:IsA("BasePart") and child.Name == "Pizza" then
  456. local player = game.Players.LocalPlayer
  457. if player and player.Character then
  458. local hrp = player.Character:FindFirstChild("HumanoidRootPart")
  459. if hrp then
  460. child.CFrame = hrp.CFrame
  461. end
  462. end
  463. end
  464. end
  465.  
  466.  
  467. local function watchtower()
  468. local map = workspace:FindFirstChild("Map")
  469. local insession = map and map:FindFirstChild("Ingame")
  470.  
  471. if insession then
  472.  
  473. for _, child in pairs(insession:GetChildren()) do
  474. tp(child)
  475. end
  476.  
  477. table.insert(connections, insession.ChildAdded:Connect(tp))
  478. end
  479. end
  480.  
  481.  
  482. watchtower()
  483. end
  484.  
  485. local function setdelay(value)
  486. delay = value
  487.  
  488. end
  489.  
  490.  
  491.  
  492. local function autogen(state)
  493. run = state
  494.  
  495. local debounce = {}
  496.  
  497.  
  498.  
  499. while run do
  500. task.wait()
  501. for _, v in pairs(game.Workspace.Map.Ingame.Map:GetChildren()) do
  502. if v.Name == "Generator" then
  503.  
  504. if not debounce[v] then
  505. debounce[v] = true
  506. v:WaitForChild("Remotes"):WaitForChild("RE"):FireServer()
  507. task.delay(delay, function() debounce[v] = nil end)
  508. end
  509. end
  510. end
  511. end
  512. end
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520. local function corruptnatureesp(state)
  521. isCorruptNatureEspActive = state
  522. for i, v in pairs(game.Workspace.Map.Ingame:GetChildren()) do
  523. if v:IsA("Model") then
  524. local existingHighlight = v:FindFirstChild("CorruptNatureHighlight")
  525. if isCorruptNatureEspActive then
  526. if not existingHighlight then
  527. if v.Name == "HumanoidRootProjectile" or v.Name == "PizzaDeliveryRig" or v.Name == "Bunny" or v.Name == "Mafiaso1" or v.Name == "Mafiaso2" or v.Name == "Mafiaso3" then
  528. local highlight = Instance.new("Highlight")
  529. highlight.Name = "CorruptNatureHighlight"
  530. highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  531. highlight.Parent = v
  532. end
  533. end
  534. else
  535. if existingHighlight then
  536. existingHighlight:Destroy()
  537. end
  538. end
  539. end
  540. end
  541. end
  542.  
  543.  
  544. local function survivorutilesp(state)
  545. isSurvivorUtilEspActive = state
  546.  
  547. local function applySurvivorUtilHighlight(model)
  548. local existingHighlight = model:FindFirstChild("SurvivorUtilHighlight")
  549. if isSurvivorUtilEspActive then
  550. if not existingHighlight then
  551. for _, util in pairs(survivorutil) do
  552. if model.Name == util then
  553. local highlight = Instance.new("Highlight")
  554. highlight.Name = "SurvivorUtilHighlight"
  555. highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  556. highlight.FillColor = Color3.fromRGB(255,255,255)
  557. highlight.FillTransparency = 0.5
  558. highlight.Parent = model
  559. end
  560. end
  561. end
  562. else
  563. if existingHighlight then
  564. existingHighlight:Destroy()
  565. end
  566. end
  567. end
  568.  
  569. for _, v in pairs(game.Workspace.Map.Ingame:GetChildren()) do
  570. if v:IsA("Model") or v:IsA("Part") then
  571. applySurvivorUtilHighlight(v)
  572. end
  573. end
  574.  
  575. game.Workspace.Map.Ingame.ChildAdded:Connect(function(child)
  576. if child:IsA("Model") or child:IsA("Part") then
  577. applySurvivorUtilHighlight(child)
  578. end
  579. end)
  580. end
  581.  
  582.  
  583. local function activatethehakari(state)
  584. local char = player.Character or player.CharacterAdded:Wait()
  585. local humanoid = char:WaitForChild("Humanoid")
  586. local rootPart = char:WaitForChild("HumanoidRootPart")
  587.  
  588. hakariactive = state
  589.  
  590. if hakariactive then
  591. humanoid.PlatformStand = true
  592. humanoid.JumpPower = 0
  593.  
  594. local bodyVelocity = Instance.new("BodyVelocity")
  595. bodyVelocity.MaxForce = Vector3.new(100000, 100000, 100000)
  596. bodyVelocity.Velocity = Vector3.zero
  597. bodyVelocity.Parent = rootPart
  598.  
  599. local animation = Instance.new("Animation")
  600. animation.AnimationId = "rbxassetid://138019937280193"
  601. local animationTrack = humanoid:LoadAnimation(animation)
  602. animationTrack:Play()
  603.  
  604. local sound = Instance.new("Sound")
  605. sound.SoundId = "rbxassetid://87166578676888"
  606. sound.Parent = rootPart
  607. sound.Volume = 0.5
  608. sound.Looped = true
  609. sound:Play()
  610.  
  611. local effect = game.ReplicatedStorage.Assets.Emotes.HakariDance.HakariBeamEffect:Clone()
  612. effect.Name = "PlayerEmoteVFX"
  613. effect.CFrame = char.PrimaryPart.CFrame * CFrame.new(0, -1, -0.3)
  614. effect.WeldConstraint.Part0 = char.PrimaryPart
  615. effect.WeldConstraint.Part1 = effect
  616. effect.Parent = char
  617. effect.CanCollide = false
  618.  
  619. local args = {
  620. [1] = "PlayEmote",
  621. [2] = "Animations",
  622. [3] = "HakariDance"
  623. }
  624. game:GetService("ReplicatedStorage"):WaitForChild("Modules"):WaitForChild("Network"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  625.  
  626. animationTrack.Stopped:Connect(function()
  627. humanoid.PlatformStand = false
  628. if bodyVelocity and bodyVelocity.Parent then
  629. bodyVelocity:Destroy()
  630. end
  631. end)
  632. else
  633. humanoid.PlatformStand = false
  634. humanoid.JumpPower = 0
  635.  
  636. local bodyVelocity = rootPart:FindFirstChildOfClass("BodyVelocity")
  637. if bodyVelocity then
  638. bodyVelocity:Destroy()
  639. end
  640.  
  641. local sound = rootPart:FindFirstChildOfClass("Sound")
  642. if sound then
  643. sound:Stop()
  644. sound:Destroy()
  645. end
  646.  
  647. local effect = char:FindFirstChild("PlayerEmoteVFX")
  648. if effect then
  649. effect:Destroy()
  650. end
  651.  
  652. for _, track in ipairs(humanoid:GetPlayingAnimationTracks()) do
  653. if track.Animation.AnimationId == "rbxassetid://138019937280193" then
  654. track:Stop()
  655. end
  656. end
  657. end
  658. end
  659.  
  660.  
  661. local function activatethesilly(state)
  662.  
  663. local char = player.Character or player.CharacterAdded:Wait()
  664. local humanoid = char:WaitForChild("Humanoid")
  665. local rootPart = char:WaitForChild("HumanoidRootPart")
  666. sillyactive = state
  667.  
  668. if sillyactive then
  669. humanoid.PlatformStand = true
  670. humanoid.JumpPower = 0
  671.  
  672. local bodyVelocity = Instance.new("BodyVelocity")
  673. bodyVelocity.MaxForce = Vector3.new(100000, 100000, 100000)
  674. bodyVelocity.Velocity = Vector3.zero
  675. bodyVelocity.Parent = rootPart
  676.  
  677.  
  678. local emoteScript = require(game:GetService("ReplicatedStorage").Assets.Emotes.Shucks)
  679. emoteScript.Created({Character = char})
  680.  
  681. local animation = Instance.new("Animation")
  682. animation.AnimationId = "rbxassetid://74238051754912"
  683. local animationTrack = humanoid:LoadAnimation(animation)
  684. animationTrack:Play()
  685.  
  686. local sound = Instance.new("Sound")
  687. sound.SoundId = "rbxassetid://123236721947419"
  688. sound.Parent = rootPart
  689. sound.Volume = 0.5
  690. sound.Looped = false
  691. sound:Play()
  692.  
  693. local args = {
  694. [1] = "PlayEmote",
  695. [2] = "Animations",
  696. [3] = "Shucks"
  697. }
  698. game:GetService("ReplicatedStorage"):WaitForChild("Modules"):WaitForChild("Network"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  699.  
  700. animationTrack.Stopped:Connect(function()
  701. humanoid.PlatformStand = false
  702. if bodyVelocity and bodyVelocity.Parent then
  703. bodyVelocity:Destroy()
  704. end
  705.  
  706.  
  707. local saw = char:FindFirstChild("Saw")
  708. if saw then saw:Destroy() end
  709.  
  710. local playerHand = char:FindFirstChild("PlayerEmoteHand")
  711. if playerHand then playerHand:Destroy() end
  712. end)
  713. else
  714.  
  715. humanoid.PlatformStand = false
  716. humanoid.JumpPower = 0
  717.  
  718. local saw = char:FindFirstChild("Saw")
  719. if saw then saw:Destroy() end
  720.  
  721. local playerHand = char:FindFirstChild("PlayerEmoteHand")
  722. if playerHand then playerHand:Destroy() end
  723.  
  724. local bodyVelocity = rootPart:FindFirstChildOfClass("BodyVelocity")
  725. if bodyVelocity then
  726. bodyVelocity:Destroy()
  727. end
  728.  
  729. local sound = rootPart:FindFirstChildOfClass("Sound")
  730. if sound then
  731. sound:Stop()
  732. sound:Destroy()
  733. end
  734.  
  735. for _, track in ipairs(humanoid:GetPlayingAnimationTracks()) do
  736. if track.Animation.AnimationId == "rbxassetid://74238051754912" then
  737. track:Stop()
  738. end
  739. end
  740. end
  741. end
  742.  
  743.  
  744. local function activatethequiet(state)
  745. local char = player.Character or player.CharacterAdded:Wait()
  746. local humanoid = char:WaitForChild("Humanoid")
  747. local rootPart = char:WaitForChild("HumanoidRootPart")
  748. sillyactive = state
  749.  
  750. if sillyactive then
  751. humanoid.PlatformStand = true
  752. humanoid.JumpPower = 0
  753.  
  754. local bodyVelocity = Instance.new("BodyVelocity")
  755. bodyVelocity.MaxForce = Vector3.new(100000, 100000, 100000)
  756. bodyVelocity.Velocity = Vector3.zero
  757. bodyVelocity.Parent = rootPart
  758.  
  759. local emoteScript = require(game:GetService("ReplicatedStorage").Assets.Emotes.MissTheQuiet)
  760. emoteScript.Created({Character = char})
  761.  
  762. local animation = Instance.new("Animation")
  763. animation.AnimationId = "rbxassetid://100986631322204"
  764. local animationTrack = humanoid:LoadAnimation(animation)
  765. animationTrack:Play()
  766.  
  767. local sound = Instance.new("Sound")
  768. sound.SoundId = "rbxassetid://131936418953291"
  769. sound.Parent = rootPart
  770. sound.Volume = 0.5
  771. sound.Looped = false
  772. sound:Play()
  773.  
  774. local args = {
  775. [1] = "PlayEmote",
  776. [2] = "Animations",
  777. [3] = "MissTheQuiet"
  778. }
  779. game:GetService("ReplicatedStorage"):WaitForChild("Modules"):WaitForChild("Network"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  780.  
  781. animationTrack.Stopped:Connect(function()
  782. humanoid.PlatformStand = false
  783. if bodyVelocity and bodyVelocity.Parent then
  784. bodyVelocity:Destroy()
  785. end
  786.  
  787. local assetsToDestroy = {"EmoteHatAsset", "EmoteLighting", "PlayerEmoteHand"}
  788. for _, assetName in ipairs(assetsToDestroy) do
  789. local asset = char:FindFirstChild(assetName)
  790. if asset then asset:Destroy() end
  791. end
  792. end)
  793. else
  794. humanoid.PlatformStand = false
  795. humanoid.JumpPower = 0
  796.  
  797. local assetsToDestroy = {"EmoteHatAsset", "EmoteLighting", "PlayerEmoteHand"}
  798. for _, assetName in ipairs(assetsToDestroy) do
  799. local asset = char:FindFirstChild(assetName)
  800. if asset then asset:Destroy() end
  801. end
  802.  
  803. local bodyVelocity = rootPart:FindFirstChildOfClass("BodyVelocity")
  804. if bodyVelocity then
  805. bodyVelocity:Destroy()
  806. end
  807.  
  808. local sound = rootPart:FindFirstChildOfClass("Sound")
  809. if sound then
  810. sound:Stop()
  811. sound:Destroy()
  812. end
  813.  
  814. for _, track in ipairs(humanoid:GetPlayingAnimationTracks()) do
  815. if track.Animation.AnimationId == "rbxassetid://100986631322204" then
  816. track:Stop()
  817. end
  818. end
  819. end
  820. end
  821.  
  822.  
  823. local function activatethesilly2(state)
  824. local char = player.Character or player.CharacterAdded:Wait()
  825. local humanoid = char:WaitForChild("Humanoid")
  826. local rootPart = char:WaitForChild("HumanoidRootPart")
  827.  
  828. sillyactive = state
  829.  
  830. if sillyactive then
  831. humanoid.PlatformStand = true
  832. humanoid.JumpPower = 0
  833.  
  834. local bodyVelocity = Instance.new("BodyVelocity")
  835. bodyVelocity.MaxForce = Vector3.new(100000, 100000, 100000)
  836. bodyVelocity.Velocity = Vector3.zero
  837. bodyVelocity.Parent = rootPart
  838.  
  839.  
  840. local animation = Instance.new("Animation")
  841. animation.AnimationId = "rbxassetid://74238051754912"
  842. local animationTrack = humanoid:LoadAnimation(animation)
  843. animationTrack:Play()
  844.  
  845. local sound = Instance.new("Sound")
  846. sound.SoundId = "rbxassetid://123236721947419"
  847. sound.Parent = rootPart
  848. sound.Volume = 0.5
  849. sound.Looped = false
  850. sound:Play()
  851.  
  852. local args = {
  853. [1] = "PlayEmote",
  854. [2] = "Animations",
  855. [3] = "Shucks"
  856. }
  857. game:GetService("ReplicatedStorage"):WaitForChild("Modules"):WaitForChild("Network"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  858.  
  859. animationTrack.Stopped:Connect(function()
  860. humanoid.PlatformStand = false
  861. if bodyVelocity and bodyVelocity.Parent then
  862. bodyVelocity:Destroy()
  863. end
  864. end)
  865. else
  866. humanoid.PlatformStand = false
  867. humanoid.JumpPower = 0
  868.  
  869. local bodyVelocity = rootPart:FindFirstChildOfClass("BodyVelocity")
  870. if bodyVelocity then
  871. bodyVelocity:Destroy()
  872. end
  873.  
  874. local sound = rootPart:FindFirstChildOfClass("Sound")
  875. if sound then
  876. sound:Stop()
  877. sound:Destroy()
  878. end
  879.  
  880. for _, track in ipairs(humanoid:GetPlayingAnimationTracks()) do
  881. if track.Animation.AnimationId == "rbxassetid://74238051754912" then
  882. track:Stop()
  883. end
  884. end
  885. end
  886. end
  887.  
  888.  
  889.  
  890.  
  891. local function survivorHighlighter(state)
  892. isSurvivorHighlightActive = state
  893.  
  894. local function applySurvivorHighlight(model)
  895. if model:IsA("Model") and model:FindFirstChild("Head") then
  896. local existingBillboard = model.Head:FindFirstChild("billboard")
  897. local existingHighlight = model:FindFirstChild("HiThere")
  898.  
  899. if isSurvivorHighlightActive then
  900. if not existingBillboard then
  901. local billboard = Instance.new("BillboardGui")
  902. billboard.Name = "billboard"
  903. billboard.Size = UDim2.new(0, 100, 0, 50)
  904. billboard.StudsOffset = Vector3.new(0, 2, 0)
  905. billboard.AlwaysOnTop = true
  906. billboard.Parent = model.Head
  907.  
  908. local textLabel = Instance.new("TextLabel", billboard)
  909. textLabel.Size = UDim2.new(1, 0, 1, 0)
  910. textLabel.Text = model.Name
  911. textLabel.TextColor3 = Color3.new(1, 1, 1)
  912. textLabel.TextStrokeTransparency = 0
  913. textLabel.TextStrokeColor3 = Color3.new(0, 0, 0)
  914. textLabel.BackgroundTransparency = 1
  915. end
  916.  
  917. if not existingHighlight then
  918. local highlight = Instance.new("Highlight")
  919. highlight.Name = "HiThere"
  920. highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  921. highlight.FillColor = Color3.fromRGB(0, 255, 0)
  922. highlight.Parent = model
  923. end
  924. else
  925. if existingBillboard then
  926. existingBillboard:Destroy()
  927. end
  928. if existingHighlight then
  929. existingHighlight:Destroy()
  930. end
  931. end
  932. end
  933. end
  934.  
  935. for _, v in pairs(game.Workspace.Players.Survivors:GetChildren()) do
  936. applySurvivorHighlight(v)
  937. end
  938.  
  939. game.Workspace.Players.Survivors.ChildAdded:Connect(function(child)
  940. applySurvivorHighlight(child)
  941. end)
  942. end
  943.  
  944.  
  945.  
  946. local function killerHighlighter(state)
  947. isKillerHighlightActive = state
  948.  
  949. local function applyKillerHighlight(model)
  950. if model:IsA("Model") and model:FindFirstChild("Head") then
  951. local existingBillboard = model.Head:FindFirstChild("billboard")
  952. local existingHighlight = model:FindFirstChild("HiThere")
  953.  
  954. if isKillerHighlightActive then
  955. if not existingBillboard then
  956. local billboard = Instance.new("BillboardGui")
  957. billboard.Name = "billboard"
  958. billboard.Size = UDim2.new(0, 100, 0, 50)
  959. billboard.StudsOffset = Vector3.new(0, 2, 0)
  960. billboard.AlwaysOnTop = true
  961. billboard.Parent = model.Head
  962.  
  963. local textLabel = Instance.new("TextLabel", billboard)
  964. textLabel.Size = UDim2.new(1, 0, 1, 0)
  965. textLabel.Text = model.Name
  966. textLabel.TextColor3 = Color3.new(1, 0, 0)
  967. textLabel.TextStrokeTransparency = 0
  968. textLabel.TextStrokeColor3 = Color3.new(0, 0, 0)
  969. textLabel.BackgroundTransparency = 1
  970. end
  971.  
  972. if not existingHighlight then
  973. local highlight = Instance.new("Highlight")
  974. highlight.Name = "HiThere"
  975. highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  976. highlight.FillColor = Color3.fromRGB(255, 0, 0)
  977. highlight.Parent = model
  978. end
  979. else
  980. if existingBillboard then
  981. existingBillboard:Destroy()
  982. end
  983. if existingHighlight then
  984. existingHighlight:Destroy()
  985. end
  986. end
  987. end
  988. end
  989.  
  990. for _, v in pairs(game.Workspace.Players.Killers:GetChildren()) do
  991. applyKillerHighlight(v)
  992. end
  993.  
  994. game.Workspace.Players.Killers.ChildAdded:Connect(function(child)
  995. applyKillerHighlight(child)
  996. end)
  997. end
  998.  
  999. local function bringbackjumppower(state)
  1000. jumppowerenabled = state
  1001.  
  1002. if jumppowerenabled then
  1003. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  1004. else
  1005. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 0
  1006. end
  1007.  
  1008. end
  1009.  
  1010. local function speedmulti(value)
  1011. game.Players.LocalPlayer.Character.SpeedMultipliers.Sprinting.Value = value
  1012. end
  1013.  
  1014. local function bringbackjumppowerslider(value)
  1015.  
  1016. if jumppowerenabled then
  1017. game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
  1018. else
  1019. return
  1020. end
  1021.  
  1022. end
  1023.  
  1024. local function FOVmulti(value)
  1025. game.Players.LocalPlayer.Character.FOVMultipliers.FOVSetting.Value = value
  1026. end
  1027.  
  1028. local function kaiguyskin()
  1029. if player.Character.Name ~= "Guest1337" then
  1030. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't Guest, this POSSIBLY can bug out, so untoggle unless you're on Guest!", Duration = 5}
  1031. return end
  1032. for _, v in pairs(player.Character:GetChildren()) do
  1033. if v:IsA("Shirt") then
  1034. v:Destroy()
  1035. end
  1036.  
  1037. if v:IsA("Pants") then
  1038. v:Destroy()
  1039. end
  1040.  
  1041. local headband = Instance.new("Accessory")
  1042. local scarf = Instance.new("Accessory")
  1043. local shirt = Instance.new("Shirt")
  1044. local pants = Instance.new("Pants")
  1045. --
  1046. local headbandhandle = Instance.new("Part")
  1047. local scarfhandle = Instance.new("Part")
  1048. local headbandhandleattach = Instance.new("Attachment")
  1049. local scarfhandleattach = Instance.new("Attachment")
  1050. local headbandweld = Instance.new("Weld")
  1051. local scarfweld = Instance.new("Weld")
  1052. scarfhandle.Name = "Handle"
  1053. headbandhandle.Name = "Handle"
  1054. scarfhandle.CanCollide = false
  1055. headbandhandle.CanCollide = false
  1056. --
  1057. local headbandmesh = Instance.new("SpecialMesh")
  1058. local scarfmesh = Instance.new("SpecialMesh")
  1059. --
  1060. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=836903658"
  1061. pants.PantsTemplate = "http://www.roblox.com/asset/?id=731578592"
  1062. shirt.Parent = player.Character
  1063. pants.Parent = player.Character
  1064. --
  1065. headband.Parent = player.Character
  1066. scarf.Parent = player.Character
  1067. scarfhandle.Parent = scarf
  1068. headbandhandle.Parent = headband
  1069. headbandhandleattach.Parent = headbandhandle
  1070. scarfhandleattach.Parent = scarfhandle
  1071. headbandmesh.Parent = headbandhandle
  1072. scarfmesh.Parent = scarfhandle
  1073. headbandhandle.Color = Color3.fromRGB(27, 42, 53)
  1074. scarfhandle.Color = Color3.fromRGB(27, 42, 53)
  1075. --
  1076. headbandweld.Parent = headbandhandle
  1077. headbandweld.Name = "AccessoryWeld"
  1078. headbandweld.Part0 = headbandhandle
  1079. headbandweld.Part1 = player.Character.Head
  1080. headbandweld.C0 = CFrame.new(0, 0, 0)
  1081. headbandweld.C1 = CFrame.new(0, 0, 0)
  1082. --
  1083. scarfweld.Parent = scarfhandle
  1084. scarfweld.Name = "AccessoryWeld"
  1085. scarfweld.Part0 = scarfhandle
  1086. scarfweld.Part1 = player.Character.Torso
  1087. scarfweld.C0 = CFrame.new(0, -0.4, 0)
  1088. scarfweld.C1 = CFrame.new(0, 0, 0)
  1089. --
  1090. headbandmesh.MeshId = "http://www.roblox.com/asset/?id=20407184"
  1091. headbandmesh.Scale = Vector3.new(1.103, 1.071, 1.103)
  1092. scarfmesh.MeshId = "http://www.roblox.com/asset/?id=99856331"
  1093. scarfmesh.Scale = Vector3.new(1.071, 1.071, 1.071)
  1094. scarfmesh.VertexColor = Vector3.new(1, 2, 1)
  1095. --
  1096. headbandhandleattach.Name = "HatAttachment"
  1097. headbandhandleattach.CFrame = CFrame.new(0, 0.557, 0)
  1098. scarfhandleattach.Name = "NeckAttachment"
  1099. scarfhandleattach.CFrame = CFrame.new(0, 0.519, 0)
  1100.  
  1101. local playergui = player.PlayerGui
  1102. local playerinfo = playergui.TemporaryUI.PlayerInfo
  1103.  
  1104.  
  1105. playerinfo.PlayerIcon.Image = "http://www.roblox.com/asset/?id=97047410245118"
  1106.  
  1107.  
  1108. end
  1109. end
  1110.  
  1111. local function doomskin()
  1112. if player.Character.Name ~= "Shedletsky" then
  1113. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't Shedletsky, this POSSIBLY can bug out, so untoggle unless you're on Shedletsky!", Duration = 5}
  1114. return end
  1115. for _, v in pairs(player.Character:GetChildren()) do
  1116. if v:IsA("Shirt") then
  1117. v:Destroy()
  1118. end
  1119.  
  1120. if v:IsA("Pants") then
  1121. v:Destroy()
  1122. end
  1123.  
  1124. local headband = Instance.new("Accessory")
  1125.  
  1126. local shirt = Instance.new("Shirt")
  1127. local pants = Instance.new("Pants")
  1128. local tshirt = Instance.new("ShirtGraphic")
  1129. --
  1130. local headbandhandle = Instance.new("Part")
  1131.  
  1132. local headbandhandleattach = Instance.new("Attachment")
  1133.  
  1134. local headbandweld = Instance.new("Weld")
  1135.  
  1136.  
  1137. headbandhandle.Name = "Handle"
  1138.  
  1139. headbandhandle.CanCollide = false
  1140. --
  1141. local headbandmesh = Instance.new("SpecialMesh")
  1142.  
  1143. --
  1144. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=1808496"
  1145. pants.PantsTemplate = "http://www.roblox.com/asset/?id=1809861"
  1146. tshirt.Graphic = "http://www.roblox.com/asset/?id=2426992"
  1147. shirt.Parent = player.Character
  1148. pants.Parent = player.Character
  1149. tshirt.Parent = player.Character
  1150. --
  1151. headband.Parent = player.Character
  1152.  
  1153. headbandhandle.Parent = headband
  1154. headbandhandleattach.Parent = headbandhandle
  1155.  
  1156. headbandmesh.Parent = headbandhandle
  1157.  
  1158. headbandhandle.Color = Color3.fromRGB(27, 42, 53)
  1159.  
  1160. --
  1161. headbandweld.Parent = headbandhandle
  1162. headbandweld.Name = "AccessoryWeld"
  1163. headbandweld.Part0 = headbandhandle
  1164. headbandweld.Part1 = player.Character.Head
  1165. headbandweld.C0 = CFrame.new(0, -0.5, 0)
  1166. headbandweld.C1 = CFrame.new(0, 0, 0)
  1167. --
  1168. --
  1169. headbandmesh.MeshId = "http://www.roblox.com/asset/?id=1286103"
  1170. headbandmesh.TextureId = "rbxassetid://6858319251"
  1171. headbandmesh.Scale = Vector3.new(0.992, 0.994, 0.992)
  1172. if player.Character:FindFirstChild("ShedHair") then
  1173. player.Character:FindFirstChild("ShedHair"):Destroy()
  1174. end
  1175. --
  1176. headbandhandleattach.Name = "HatAttachment"
  1177. headbandhandleattach.CFrame = CFrame.new(0, 0.557, 0)
  1178.  
  1179. local playergui = player.PlayerGui
  1180. local playerinfo = playergui.TemporaryUI.PlayerInfo
  1181.  
  1182.  
  1183. playerinfo.PlayerIcon.Image = "http://www.roblox.com/asset/?id=118308385507069"
  1184.  
  1185.  
  1186. end
  1187. end
  1188.  
  1189.  
  1190.  
  1191. local function chanceaimbot(state)
  1192. chanceaim = state
  1193. if game.Players.LocalPlayer.Character.Name ~= "Chance" and state then
  1194. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't Chance, this POSSIBLY can bug out, so untoggle unless you're on Chance!", Duration = 5}
  1195. return
  1196. end
  1197. if state then
  1198. chanceaimbotLoop = game.Players.LocalPlayer.Character.HumanoidRootPart.ChildAdded:Connect(function(child)
  1199. if not chanceaim then return end
  1200. for _, v in pairs(chanceaimbotsounds) do
  1201. if child.Name == v then
  1202. local killer = game.Workspace.Players:FindFirstChild("Killers"):FindFirstChildOfClass("Model")
  1203. if killer and killer:FindFirstChild("HumanoidRootPart") then
  1204. local killerHRP = killer.HumanoidRootPart
  1205. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1206. if playerHRP then
  1207. local direction = (killerHRP.Position - playerHRP.Position).Unit
  1208. local num = 1
  1209. local maxIterations = 100
  1210.  
  1211.  
  1212. while num <= maxIterations do
  1213. task.wait(0.01)
  1214. num = num + 1
  1215. workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, killerHRP.Position)
  1216. playerHRP.CFrame = CFrame.lookAt(playerHRP.Position, Vector3.new(killerHRP.Position.X, killerHRP.Position.Y, killerHRP.Position.Z))
  1217. end
  1218.  
  1219.  
  1220. end
  1221. end
  1222. end
  1223. end
  1224. end)
  1225. else
  1226. if chanceaimbotLoop then
  1227. chanceaimbotLoop:Disconnect()
  1228. chanceaimbotLoop = nil
  1229. end
  1230. end
  1231. end
  1232.  
  1233. local function shedaimbot(state)
  1234. shedaim = state
  1235. if game.Players.LocalPlayer.Character.Name ~= "Shedletsky" and state then
  1236. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't Shedletsky, this POSSIBLY can bug out, so untoggle unless you're on Shedletsky!", Duration = 5}
  1237. return
  1238. end
  1239. if state then
  1240. shedloop = game.Players.LocalPlayer.Character.Sword.ChildAdded:Connect(function(child)
  1241. if not shedaim then return end
  1242. for _, v in pairs(shedaimbotsounds) do
  1243. if child.Name == v then
  1244. local killersFolder = game.Workspace.Players:FindFirstChild("Killers")
  1245. if killersFolder then
  1246. local killer = killersFolder:FindFirstChildOfClass("Model")
  1247. if killer and killer:FindFirstChild("HumanoidRootPart") then
  1248. local killerHRP = killer.HumanoidRootPart
  1249. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1250. if playerHRP then
  1251. local num = 1
  1252. local maxIterations = 100
  1253.  
  1254. while num <= maxIterations do
  1255. task.wait(0.01)
  1256. num = num + 1
  1257. workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, killerHRP.Position)
  1258. playerHRP.CFrame = CFrame.lookAt(playerHRP.Position, killerHRP.Position)
  1259. end
  1260. end
  1261. end
  1262. end
  1263. end
  1264. end
  1265. end)
  1266. else
  1267. if shedloop then
  1268. shedloop:Disconnect()
  1269. shedloop = nil
  1270. end
  1271. end
  1272. end
  1273.  
  1274. local function guestaimbot(state)
  1275. shedaim = state
  1276. if game.Players.LocalPlayer.Character.Name ~= "Guest1337" and state then
  1277. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't Guest, this POSSIBLY can bug out, so untoggle unless you're on Guest!", Duration = 5}
  1278. return
  1279. end
  1280. if state then
  1281. shedloop = game.Players.LocalPlayer.Character.HumanoidRootPart.ChildAdded:Connect(function(child)
  1282. if not shedaim then return end
  1283. for _, v in pairs(guestsounds) do
  1284. if child.Name == v then
  1285. local killersFolder = game.Workspace.Players:FindFirstChild("Killers")
  1286. if killersFolder then
  1287. local killer = killersFolder:FindFirstChildOfClass("Model")
  1288. if killer and killer:FindFirstChild("HumanoidRootPart") then
  1289. local killerHRP = killer.HumanoidRootPart
  1290. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1291. if playerHRP then
  1292. local num = 1
  1293. local maxIterations = 100
  1294.  
  1295. while num <= maxIterations do
  1296. task.wait(0.01)
  1297. num = num + 1
  1298. workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, killerHRP.Position)
  1299. playerHRP.CFrame = CFrame.lookAt(playerHRP.Position, killerHRP.Position)
  1300. end
  1301. end
  1302. end
  1303. end
  1304. end
  1305. end
  1306. end)
  1307. else
  1308. if guestloop then
  1309. guestloop:Disconnect()
  1310. guestloop = nil
  1311. end
  1312. end
  1313. end
  1314.  
  1315. local function aimbot1x1x1x1(state)
  1316. aimbot1x1 = state
  1317.  
  1318. if game.Players.LocalPlayer.Character.Name ~= "1x1x1x1" and state then
  1319. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't 1x, this POSSIBLY can bug out, so untoggle unless you're on 1x!", Duration = 5}
  1320. return
  1321. end
  1322.  
  1323. if state then
  1324. aimbot1x1loop = game.Players.LocalPlayer.Character.HumanoidRootPart.ChildAdded:Connect(function(child)
  1325. if not aimbot1x1 then return end
  1326. for _, v in pairs(aimbot1x1sounds) do
  1327. if child.Name == v then
  1328. local survivors = {}
  1329. for _, player in pairs(game.Players:GetPlayers()) do
  1330. if player ~= game.Players.LocalPlayer then
  1331. local character = player.Character
  1332. if character and character:FindFirstChild("HumanoidRootPart") then
  1333. table.insert(survivors, character)
  1334. end
  1335. end
  1336. end
  1337.  
  1338. local nearestSurvivor = nil
  1339. local shortestDistance = math.huge
  1340.  
  1341. for _, survivor in pairs(survivors) do
  1342. local survivorHRP = survivor.HumanoidRootPart
  1343. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1344.  
  1345. if playerHRP then
  1346. local distance = (survivorHRP.Position - playerHRP.Position).Magnitude
  1347. if distance < shortestDistance then
  1348. shortestDistance = distance
  1349. nearestSurvivor = survivor
  1350. end
  1351. end
  1352. end
  1353.  
  1354. if nearestSurvivor then
  1355. local nearestHRP = nearestSurvivor.HumanoidRootPart
  1356. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1357.  
  1358. if playerHRP then
  1359. local direction = (nearestHRP.Position - playerHRP.Position).Unit
  1360. local num = 1
  1361. local maxIterations = 100
  1362.  
  1363.  
  1364. if child.Name == "rbxassetid://79782181585087" then
  1365. maxIterations = 220
  1366. end
  1367.  
  1368. while num <= maxIterations do
  1369. task.wait(0.01)
  1370. num = num + 1
  1371. workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, nearestHRP.Position)
  1372. playerHRP.CFrame = CFrame.lookAt(playerHRP.Position, Vector3.new(nearestHRP.Position.X, nearestHRP.Position.Y, nearestHRP.Position.Z))
  1373. end
  1374.  
  1375. end
  1376. end
  1377. end
  1378. end
  1379. end)
  1380. else
  1381. if aimbot1x1loop then
  1382. aimbot1x1loop:Disconnect()
  1383. aimbot1x1loop = nil
  1384. end
  1385. end
  1386. end
  1387.  
  1388. local function johnaimbot(state)
  1389. johnaim = state
  1390. if game.Players.LocalPlayer.Character.Name ~= "JohnDoe" and state then
  1391. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't John Doe, this POSSIBLY can bug out, so untoggle unless you're on John!", Duration = 5}
  1392. return
  1393. end
  1394. if state then
  1395. johnloop = game.Players.LocalPlayer.Character.HumanoidRootPart.ChildAdded:Connect(function(child)
  1396. if not johnaim then return end
  1397. for _, v in pairs(johnaimbotsounds) do
  1398. if child.Name == v then
  1399.  
  1400. local survivors = {}
  1401. for _, player in pairs(game.Players:GetPlayers()) do
  1402. if player ~= game.Players.LocalPlayer then
  1403. local character = player.Character
  1404. if character and character:FindFirstChild("HumanoidRootPart") then
  1405. table.insert(survivors, character)
  1406. end
  1407. end
  1408. end
  1409.  
  1410.  
  1411. local nearestSurvivor = nil
  1412. local shortestDistance = math.huge
  1413.  
  1414. for _, survivor in pairs(survivors) do
  1415. local survivorHRP = survivor.HumanoidRootPart
  1416. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1417.  
  1418. if playerHRP then
  1419. local distance = (survivorHRP.Position - playerHRP.Position).Magnitude
  1420. if distance < shortestDistance then
  1421. shortestDistance = distance
  1422. nearestSurvivor = survivor
  1423. end
  1424. end
  1425. end
  1426.  
  1427.  
  1428. if nearestSurvivor then
  1429. local nearestHRP = nearestSurvivor.HumanoidRootPart
  1430. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1431. local maxIterations = 330
  1432. if playerHRP then
  1433. local direction = (nearestHRP.Position - playerHRP.Position).Unit
  1434. local num = 1
  1435.  
  1436.  
  1437. while num <= maxIterations do
  1438. task.wait(0.01)
  1439. num = num + 1
  1440. workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, nearestHRP.Position)
  1441. playerHRP.CFrame = CFrame.lookAt(playerHRP.Position, Vector3.new(nearestHRP.Position.X, nearestHRP.Position.Y, nearestHRP.Position.Z))
  1442.  
  1443. end
  1444. end
  1445. end
  1446. end
  1447. end
  1448. end)
  1449. else
  1450. if johnloop then
  1451. johnloop:Disconnect()
  1452. johnloop = nil
  1453. end
  1454. end
  1455. end
  1456.  
  1457. local function jasonaimbot(state)
  1458. jasonaim = state
  1459. if game.Players.LocalPlayer.Character.Name ~= "Jason" and state then
  1460. GUI:Notification{Title = "Wrong Character", Text = "Oops, your current character isn't Jason, this POSSIBLY can bug out, so untoggle unless you're on Jason. Also this is buggy asf lmao", Duration = 5}
  1461. return
  1462. end
  1463. if state then
  1464. jasonaimbotloop = game.Players.LocalPlayer.Character.HumanoidRootPart.ChildAdded:Connect(function(child)
  1465. if not jasonaim then return end
  1466. for _, v in pairs(jasonaimbotsounds) do
  1467. if child.Name == v then
  1468.  
  1469. local survivors = {}
  1470. for _, player in pairs(game.Players:GetPlayers()) do
  1471. if player ~= game.Players.LocalPlayer then
  1472. local character = player.Character
  1473. if character and character:FindFirstChild("HumanoidRootPart") then
  1474. table.insert(survivors, character)
  1475. end
  1476. end
  1477. end
  1478.  
  1479.  
  1480. local nearestSurvivor = nil
  1481. local shortestDistance = math.huge
  1482.  
  1483. for _, survivor in pairs(survivors) do
  1484. local survivorHRP = survivor.HumanoidRootPart
  1485. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1486.  
  1487. if playerHRP then
  1488. local distance = (survivorHRP.Position - playerHRP.Position).Magnitude
  1489. if distance < shortestDistance then
  1490. shortestDistance = distance
  1491. nearestSurvivor = survivor
  1492. end
  1493. end
  1494. end
  1495.  
  1496.  
  1497. if nearestSurvivor then
  1498. local nearestHRP = nearestSurvivor.HumanoidRootPart
  1499. local playerHRP = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  1500. local maxIterations = 70
  1501. if playerHRP then
  1502. local direction = (nearestHRP.Position - playerHRP.Position).Unit
  1503. local num = 1
  1504.  
  1505.  
  1506. while num <= maxIterations do
  1507. task.wait(0.01)
  1508. num = num + 1
  1509.  
  1510. playerHRP.CFrame = CFrame.lookAt(playerHRP.Position, Vector3.new(nearestHRP.Position.X, nearestHRP.Position.Y, nearestHRP.Position.Z))
  1511.  
  1512. end
  1513. end
  1514. end
  1515. end
  1516. end
  1517. end)
  1518. else
  1519. if jasonaimbotloop then
  1520. jasonaimbotloop:Disconnect()
  1521. jasonaimbotloop = nil
  1522. end
  1523. end
  1524. end
  1525.  
  1526.  
  1527. local function staminadrainono(state)
  1528. stam = state
  1529. local stamscript = require(game.ReplicatedStorage.Systems.Character.Game.Sprinting)
  1530.  
  1531. while stam do
  1532. stamscript.StaminaLossDisabled = true
  1533. task.wait(1)
  1534. end
  1535.  
  1536.  
  1537. stamscript.StaminaLossDisabled = nil
  1538. end
  1539.  
  1540.  
  1541.  
  1542. local function unlockclientcharacters()
  1543. local clone = game.Players.LocalPlayer.PlayerData.Equipped.Skins:Clone()
  1544. clone.Parent = game.Players.LocalPlayer.PlayerData.Purchased.Killers
  1545. for i, v in pairs(clone:GetChildren()) do
  1546. v.Parent = game.Players.LocalPlayer.PlayerData.Purchased.Killers
  1547. end
  1548. local clone2 = game.Players.LocalPlayer.PlayerData.Equipped.Skins:Clone()
  1549. clone2.Parent = game.Players.LocalPlayer.PlayerData.Purchased.Survivors
  1550.  
  1551. for i, v in pairs(clone2:GetChildren()) do
  1552. v.Parent = game.Players.LocalPlayer.PlayerData.Purchased.Survivors
  1553. end
  1554. end
  1555.  
  1556.  
  1557.  
  1558.  
  1559.  
  1560. GUI:Notification{Title = "Property of AppleWare", Text = "please vrooo pleaaaase, we liek made this for youu we apple nation yes", Duration = 60}
  1561. GUI:Notification{Title = "ALL SCRIPTS ARE OURS!!!", Text = "All scripts are original.", Duration = 10}
  1562.  
  1563.  
  1564. local VisualTab = GUI:Tab{
  1565. Name = "Visuals",
  1566. Icon = "http://www.roblox.com/asset/?id=13527523584"
  1567. }
  1568.  
  1569. local gentab = GUI:Tab{
  1570. Name = "Generators",
  1571. Icon = "http://www.roblox.com/asset/?id=9777958075"
  1572. }
  1573.  
  1574. local chartab = GUI:Tab{
  1575. Name = "Killers",
  1576. Icon = "http://www.roblox.com/asset/?id=17231565188"
  1577. }
  1578.  
  1579. local survivortab = GUI:Tab{
  1580. Name = "Survivors",
  1581. Icon = "http://www.roblox.com/asset/?id=17469537718"
  1582. }
  1583.  
  1584. local blatanttab = GUI:Tab{
  1585. Name = "Blatant",
  1586. Icon = "http://www.roblox.com/asset/?id=1553599662"
  1587. }
  1588.  
  1589. local misctab = GUI:Tab{
  1590. Name = "Misc",
  1591. Icon = "http://www.roblox.com/asset/?id=6391152597"
  1592. }
  1593.  
  1594.  
  1595.  
  1596.  
  1597. gentab:Button{
  1598. Name = "Instant Solver",
  1599. Description = "Instantly solve a FULL generator with the click of this button.",
  1600. Callback = function()
  1601. instantsolvegen()
  1602. end
  1603. }
  1604.  
  1605. gentab:Button{
  1606. Name = "Gen Hell 2 Instant Solver",
  1607. Description = "Instantly solve a FULL generator on gen hell 2 with the click of this button.",
  1608. Callback = function()
  1609. instantsolvegenhell()
  1610. end
  1611. }
  1612.  
  1613.  
  1614. gentab:Button{
  1615. Name = "Solve 1 Puzzle",
  1616. Description = "Instantly solve a quarter of the generator with the click of this button.",
  1617. Callback = function()
  1618. solvegen()
  1619. end
  1620. }
  1621.  
  1622.  
  1623. gentab:Toggle{
  1624. Name = "Instant Solver",
  1625. StartingState = false,
  1626. Description = "Instantly solve generators when prompted.",
  1627. Callback = function(state)
  1628. autogen(state)
  1629. end
  1630. }
  1631.  
  1632.  
  1633. gentab:Toggle{
  1634. Name = "Generator Highlight",
  1635. StartingState = false,
  1636. Description = "Shows generators all around the map.",
  1637. Callback = function(state)
  1638. toggleHighlightGen(state)
  1639. end
  1640. }
  1641.  
  1642. gentab:Slider{
  1643. Name = "Auto Generator Delay",
  1644. Default = 0.1,
  1645. Min = 0.1,
  1646. Max = 10,
  1647. Callback = function(value)
  1648. setdelay(value)
  1649. end
  1650. }
  1651.  
  1652. --
  1653. VisualTab:Toggle{
  1654. Name = "Tool Highlight",
  1655. StartingState = false,
  1656. Description = "Shows all items on the map.",
  1657. Callback = function(state)
  1658. highlighttools(state)
  1659. end
  1660. }
  1661.  
  1662. VisualTab:Toggle{
  1663. Name = "Survivor Highlight",
  1664. StartingState = false,
  1665. Description = "Shows all survivors on the map.",
  1666. Callback = function(state)
  1667. survivorHighlighter(state)
  1668. end
  1669. }
  1670.  
  1671. VisualTab:Toggle{
  1672. Name = "Killer Highlight",
  1673. StartingState = false,
  1674. Description = "Shows all killer(s) on the map.",
  1675. Callback = function(state)
  1676. killerHighlighter(state)
  1677. end
  1678. }
  1679.  
  1680. VisualTab:Toggle{
  1681. Name = "C00lKidd ESP",
  1682. StartingState = false,
  1683. Description = "Shows Corrupt Nature and Pizza Delivery.",
  1684. Callback = function(state)
  1685. corruptnatureesp(state)
  1686. end
  1687. }
  1688.  
  1689. VisualTab:Toggle{
  1690. Name = "Survivor Util ESP",
  1691. StartingState = false,
  1692. Description = "007n7 Clones, Builderman Sentry, Sentry Range, Dispenser, and Elliot Pizza.",
  1693. Callback = function(state)
  1694. survivorutilesp(state)
  1695. end
  1696. }
  1697. --
  1698.  
  1699. misctab:Button{
  1700. Name = "unlock characters [CLIENT]",
  1701. Description = "self explanatory.",
  1702. Callback = function()
  1703. unlockclientcharacters()
  1704. end
  1705. }
  1706.  
  1707.  
  1708.  
  1709. misctab:Toggle{
  1710. Name = "Play Hakari Emote",
  1711. StartingState = false,
  1712. Description = "funny xd",
  1713. Callback = function(state)
  1714. activatethehakari(state)
  1715. end
  1716. }
  1717.  
  1718. misctab:Toggle{
  1719. Name = "Play Shucks Emote [NON-AWP]",
  1720. StartingState = false,
  1721. Description = "gas",
  1722. Callback = function(state)
  1723. activatethesilly2(state)
  1724. end
  1725. }
  1726.  
  1727. misctab:Toggle{
  1728. Name = "Play Shucks Emote [AWP/MACSPLOIT]",
  1729. StartingState = false,
  1730. Description = "gas",
  1731. Callback = function(state)
  1732. activatethesilly(state)
  1733. end
  1734. }
  1735.  
  1736. misctab:Toggle{
  1737. Name = "Play Mr. Quiet [AWP/MACSPLOIT]",
  1738. StartingState = false,
  1739. Description = "gas",
  1740. Callback = function(state)
  1741. activatethequiet(state)
  1742. end
  1743. }
  1744.  
  1745.  
  1746. misctab:Toggle{
  1747. Name = "Hide Player Bar",
  1748. StartingState = false,
  1749. Description = "dont get caught in clips!",
  1750. Callback = function(state)
  1751. togglehidebar(state)
  1752. end
  1753. }
  1754.  
  1755.  
  1756. misctab:Slider{
  1757. Name = "FOV",
  1758. Default = 1,
  1759. Min = 1,
  1760. Max = 2,
  1761. Callback = function(value)
  1762. FOVmulti(value)
  1763. end
  1764. }
  1765.  
  1766. --
  1767.  
  1768. --
  1769.  
  1770. survivortab:Button{
  1771. Name = "Kai 1337",
  1772. Description = "The legionare. Use default Guest. [GUEST SKIN]",
  1773. Callback = function()
  1774. kaiguyskin()
  1775. end
  1776. }
  1777.  
  1778. survivortab:Button{
  1779. Name = "Doom Shed",
  1780. Description = "Banned. Use default Shed. [SHED SKIN]",
  1781. Callback = function()
  1782. doomskin()
  1783. end
  1784. }
  1785.  
  1786. survivortab:Toggle{
  1787. Name = "Chance Aimbot",
  1788. Description = "Flicks to the killer. will be blatant if you be absolutely stupid with it.",
  1789. StartingState = false,
  1790. Callback = function(state)
  1791. chanceaimbot(state)
  1792. end
  1793. }
  1794.  
  1795. survivortab:Toggle{
  1796. Name = "Shed Aimbot",
  1797. Description = "Flicks to the killer. will be blatant if you be absolutely stupid with it.",
  1798. StartingState = false,
  1799. Callback = function(state)
  1800. shedaimbot(state)
  1801. end
  1802. }
  1803.  
  1804. survivortab:Toggle{
  1805. Name = "Guest Aimbot",
  1806. Description = "Flicks to the killer when punch. blatant if you be absolutely stupid with it.",
  1807. StartingState = false,
  1808. Callback = function(state)
  1809. guestaimbot(state)
  1810. end
  1811. }
  1812.  
  1813. survivortab:Toggle{
  1814. Name = "Pizza TP",
  1815. Description = "Instantly TP any pizzas spawned, and all current pizzas on the map.",
  1816. StartingState = false,
  1817. Callback = function(state)
  1818. givemesomepizza(state)
  1819. end
  1820. }
  1821. --
  1822. chartab:Toggle{
  1823. Name = "C00lkid Aimbot",
  1824. Description = "Tell the game that ur on mobile so u get aimbot for free ",
  1825. StartingState = false,
  1826. Callback = function(state) running = state game:GetService("ReplicatedStorage").Modules.Network.RemoteEvent:FireServer("SetDevice", state and "Mobile" or "PC") end
  1827. }
  1828.  
  1829.  
  1830. --
  1831. chartab:Toggle{
  1832. Name = "1X1X1 Aimbot",
  1833. Description = "Flicks to the nearest survivor. Not very blatant, but it will be blatant if you be absolutely stupid with it.",
  1834. StartingState = false,
  1835. Callback = function(state)
  1836. aimbot1x1x1x1(state)
  1837. end
  1838. }
  1839.  
  1840.  
  1841.  
  1842.  
  1843. chartab:Toggle{
  1844. Name = "Do 1x1x1x1 Popups",
  1845. Description = "Does popups on its own. [CREDS TO FARTHUB]",
  1846. StartingState = false,
  1847. Callback = function(state) Do1x1PopupsLoop = state if state then task.spawn(Do1x1x1x1Popups) end end
  1848. }
  1849.  
  1850.  
  1851.  
  1852.  
  1853. blatanttab:Toggle{
  1854. Name = "John Aimbot",
  1855. Description = "Tracks to the nearest survivor when using spikes",
  1856. StartingState = false,
  1857. Callback = function(state)
  1858. johnaimbot(state)
  1859. end
  1860. }
  1861.  
  1862. blatanttab:Toggle{
  1863. Name = "Jason Aimbot",
  1864. Description = "Flicks to the nearest survivor when using Behead, M1s, and Gashing Wound",
  1865. StartingState = false,
  1866. Callback = function(state)
  1867. jasonaimbot(state)
  1868. end
  1869. }
  1870.  
  1871. blatanttab:Toggle{
  1872. Name = "No Stamina Loss",
  1873. StartingState = false,
  1874. Description = "pretty serious..",
  1875. Callback = function(state)
  1876. staminadrainono(state)
  1877. end
  1878. }
  1879.  
  1880.  
  1881. blatanttab:Toggle{
  1882. Name = "Bring Back Jump Power",
  1883. StartingState = false,
  1884. Description = "funny xd",
  1885. Callback = function(state)
  1886. bringbackjumppower(state)
  1887. end
  1888. }
  1889.  
  1890. blatanttab:Toggle{
  1891. Name = "Hawk Tuah Mode",
  1892. StartingState = false,
  1893. Description = "Coolkidd how could you do this",
  1894. Callback = function(state)
  1895. hawktuahmode(state)
  1896. end
  1897. }
  1898.  
  1899. blatanttab:Slider{
  1900. Name = "Walkspeed",
  1901. Default = 1,
  1902. Min = 1,
  1903. Max = 100,
  1904. Callback = function(value)
  1905. speedmulti(value)
  1906. end
  1907. }
  1908.  
  1909. blatanttab:Slider{
  1910. Name = "JumpPower",
  1911. Default = 50,
  1912. Min = 1,
  1913. Max = 1000,
  1914. Callback = function(value)
  1915. bringbackjumppowerslider(value)
  1916. end
  1917. }
  1918. end
  1919.  
  1920.  
  1921. local function key()
  1922. local SG = Instance.new("ScreenGui")
  1923. local TB = Instance.new("TextBox")
  1924. local TL1 = Instance.new("TextLabel")
  1925. local TL2 = Instance.new("TextLabel")
  1926. local success = Instance.new("Sound")
  1927. local failure = Instance.new("Sound")
  1928.  
  1929. SG.IgnoreGuiInset = true
  1930. SG.Parent = player.PlayerGui
  1931. success.Parent = workspace
  1932. failure.Parent = workspace
  1933. success.SoundId = "rbxassetid://12222253"
  1934. failure.SoundId = "rbxassetid://8090403894"
  1935.  
  1936. TB.Parent = SG
  1937. TB.TextSize = 90
  1938. TB.Size = UDim2.new(0.4, 0, 0.3, 0)
  1939. TB.AnchorPoint = Vector2.new(0.5, 0.5)
  1940. TB.Position = UDim2.new(0.5, 0, 0.4, 0)
  1941. TB.BackgroundTransparency = 0.2
  1942. TB.BackgroundColor3 = Color3.fromRGB(62, 62, 62)
  1943. TB.Text = "Key Here"
  1944.  
  1945.  
  1946. TL1.Parent = SG
  1947. TL1.TextSize = 40
  1948. TL1.Size = UDim2.new(0.2, 0, 0.05, 0)
  1949. TL1.AnchorPoint = Vector2.new(0.5, 0.5)
  1950. TL1.Position = UDim2.new(0.5, 0, 0.7, 0)
  1951. TL1.BackgroundTransparency = 1
  1952. TL1.Text = "nil"
  1953.  
  1954.  
  1955. TL2.Parent = SG
  1956. TL2.TextSize = 40
  1957. TL2.Size = UDim2.new(0.4, 0, 0.05, 0)
  1958. TL2.AnchorPoint = Vector2.new(0.5, 0.5)
  1959. TL2.Position = UDim2.new(0.5, 0, 0.2, 0)
  1960. TL2.BackgroundTransparency = 1
  1961. TL2.Text = "join server for key it's free"
  1962.  
  1963.  
  1964. TB.FocusLost:Connect(function(enterPressed)
  1965. if enterPressed then
  1966. if TB.Text == "Apple" then
  1967. TL1.Text = "Success!"
  1968. TL1.TextColor3 = Color3.fromRGB(0, 255, 0)
  1969. success:Play()
  1970. task.delay(1, function()
  1971. initialize()
  1972. SG:Destroy()
  1973. end)
  1974. else
  1975. TL1.Text = "womp womp"
  1976. failure:Play()
  1977. TL1.TextColor3 = Color3.fromRGB(255, 0, 0)
  1978. end
  1979. end
  1980. end)
  1981. end
  1982.  
  1983. --key()
  1984. initialize()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement