Advertisement
2AreYouMental110

Sanic Chase (UPDATED)

Jul 7th, 2022 (edited)
1,829
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 19.78 KB | None | 0 0
  1. getgenv().autokillt = false
  2. getgenv().placeholder1 = false
  3. getgenv().autoopenandclose = false
  4.  
  5. local selectedoption
  6. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  7. local Window = Library.CreateLib("Sanic Chase", "Sentinel")
  8.  
  9. local M = Window:NewTab("Main")
  10. local M1 = M:NewSection("Main")
  11.  
  12. local A = Window:NewTab("Infection")
  13. local A1 = A:NewSection("Sanic")
  14. local A2 = A:NewSection("Human")
  15. local A3 = A:NewSection("Other")
  16.  
  17. A1:NewDropdown("select which sanic to become", "ok so super sanic, majin or normal", {"super", "majin", "normal"}, function(value1)
  18.     selectedoption = value1
  19.     print(value1)
  20. end)
  21.  
  22. A1:NewButton("become what sanic", "super sanic teleports you", function()
  23.     if selectedoption == "super" then
  24.         local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  25.         for i, v in pairs(game:GetService("Workspace").GameFolder.InfectionPart.Strong.TransfurPart:GetDescendants()) do
  26.             if v.Name == "TouchInterest" and v.Parent.Name == "TransfurPart" then
  27.                 firetouchinterest(player, v.Parent, 0)
  28.                 wait()
  29.                 firetouchinterest(player, v.Parent, 1)
  30.                 wait()
  31.             end
  32.         end
  33.     end
  34.     if selectedoption == "majin" then
  35.         local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  36.         for i, v in pairs(game:GetService("Workspace").GameFolder.InfectionPart.Medium.TransfurPart:GetDescendants()) do
  37.             if v.Name == "TouchInterest" and v.Parent.Name == "TransfurPart" then
  38.                 firetouchinterest(player, v.Parent, 0)
  39.                 wait()
  40.                 firetouchinterest(player, v.Parent, 1)
  41.                 wait()
  42.             end
  43.         end
  44.     end
  45.     if selectedoption == "normal" then
  46.         local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  47.         for i, v in pairs(game:GetService("Workspace").GameFolder.InfectionPart.Weak.TransfurPart:GetDescendants()) do
  48.             if v.Name == "TouchInterest" and v.Parent.Name == "TransfurPart" then
  49.                 firetouchinterest(player, v.Parent, 0)
  50.                 wait()
  51.                 firetouchinterest(player, v.Parent, 1)
  52.                 wait()
  53.             end
  54.         end
  55.     end
  56. end)
  57.  
  58. A1:NewButton("sanic killfields dont kill!!", "(permanent!!)", function()
  59.     for i, v in pairs(game:GetService("Workspace").GameFolder.KillFields:GetDescendants()) do
  60.         if v.Name == "Field" and v.Parent.Name == "KillField" then
  61.             local parent = v.Parent
  62.             local name = "FieldFake"
  63.             local material = v.Material
  64.             local shape = v.Shape
  65.             local size = v.Size
  66.             local transparency = v.Transparency
  67.             local color = v.Color
  68.             local cframe = v.CFrame
  69.             local part = Instance.new("Part")
  70.             part.Parent = parent
  71.             part.Name = name
  72.             part.Material = material
  73.             part.Shape = shape
  74.             part.Size = size
  75.             part.Transparency = transparency
  76.             part.Color = color
  77.             part.CFrame = cframe
  78.             part.Anchored = true
  79.             part.CanCollide = false
  80.             v.CFrame = CFrame.new(69420, 69420, 69420)
  81.         end
  82.     end
  83. end)
  84. A1:NewButton("sanic campbarriers dont poison!!", "(permanent!!)", function()
  85.     for i, v in pairs(game:GetService("Workspace"):GetDescendants()) do
  86.         if v.Name == "CampBarrier" and v.Parent.Name == "Workspace" then
  87.             local parent = v.Parent
  88.             local name = "CampBarrierFake"
  89.             local material = v.Material
  90.             local shape = v.Shape
  91.             local size = v.Size
  92.             local transparency = v.Transparency
  93.             local color = v.Color
  94.             local cframe = v.CFrame
  95.             local part = Instance.new("Part")
  96.             part.Parent = parent
  97.             part.Name = name
  98.             part.Material = material
  99.             part.Shape = shape
  100.             part.Size = size
  101.             part.Transparency = (0.5)
  102.             part.Color = color
  103.             part.CFrame = cframe
  104.             part.Anchored = true
  105.             part.CanCollide = false
  106.             v.CFrame = CFrame.new(69420, 69420, 69420)
  107.         end
  108.     end
  109. end)
  110. A1:NewButton("obby doesnt disappear!!", "(permanent!!)", function()
  111.     for i, v in pairs(game:GetService("Workspace").GameFolder.ObbyEnter:GetDescendants()) do
  112.         if v.Name == "TouchInterest" and v.Parent.Parent.Name == "ObbyEnter" then
  113.             local parent = v.Parent.Parent
  114.             local name = "ObbyPartFake"
  115.             local material = v.Parent.Material
  116.             local shape = v.Parent.Shape
  117.             local size = v.Parent.Size
  118.             local transparency = v.Parent.Transparency
  119.             local color = v.Parent.Color
  120.             local cframe = v.Parent.CFrame
  121.             local part = Instance.new("Part")
  122.             part.Parent = parent
  123.             part.Name = name
  124.             part.Material = material
  125.             part.Shape = shape
  126.             part.Size = size
  127.             part.Transparency = transparency
  128.             part.Color = color
  129.             part.CFrame = cframe
  130.             part.Anchored = true
  131.             part.CanCollide = true
  132.             v.Parent.CFrame = CFrame.new(69420, 69420, 69420)
  133.         end
  134.     end
  135. end)
  136.  
  137. A1:NewButton("big hitbox (buggy)", "(buggy!!)", function()
  138.     m = game:GetService("Workspace").CampBarrier.Size
  139.     game.Players.LocalPlayer.Character.Humanoid.HipHeight = -7
  140.     game.Players.LocalPlayer.Character.HumanoidRootPart.Size = m
  141.     game.Players.LocalPlayer.Character.HumanoidRootPart.Transparency = 0
  142. end)
  143.  
  144.  
  145.  
  146.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     local p22a0 = math.random(69420)
  147.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     local p22a1 = math.random(6969)
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162. --[[
  163. if p22a0 == p22a1 then
  164.     loadstring("\103\101\116\103\101\110\118\40\41\46\97\117\116\111\107\105\108\108\116\32\61\32\102\97\108\115\101\10\103\101\116\103\101\110\118\40\41\46\97\117\116\111\116\112\116\32\61\32\102\97\108\115\101\10\10\108\111\99\97\108\32\76\105\98\114\97\114\121\32\61\32\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\34\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\120\72\101\112\116\99\47\75\97\118\111\45\85\73\45\76\105\98\114\97\114\121\47\109\97\105\110\47\115\111\117\114\99\101\46\108\117\97\34\41\41\40\41\10\108\111\99\97\108\32\87\105\110\100\111\119\32\61\32\76\105\98\114\97\114\121\46\67\114\101\97\116\101\76\105\98\40\34\83\97\110\105\99\32\67\104\97\115\101\34\44\32\34\83\101\110\116\105\110\101\108\34\41\10\32\10\108\111\99\97\108\32\77\32\61\32\87\105\110\100\111\119\58\78\101\119\84\97\98\40\34\77\97\105\110\34\41\10\108\111\99\97\108\32\77\49\32\61\32\77\58\78\101\119\83\101\99\116\105\111\110\40\34\77\97\105\110\34\41\10\10\10\77\49\58\78\101\119\84\111\103\103\108\101\40\34\97\117\116\111\107\105\108\108\34\44\32\34\97\117\116\111\108\97\103\34\44\32\102\117\110\99\116\105\111\110\40\98\111\111\108\41\10\32\32\32\32\103\101\116\103\101\110\118\40\41\46\97\117\116\111\107\105\108\108\116\32\61\32\98\111\111\108\10\32\32\32\32\105\102\32\98\111\111\108\32\61\61\32\116\114\117\101\32\116\104\101\110\10\32\32\32\32\32\32\32\32\97\117\116\111\107\105\108\108\40\41\10\32\32\32\32\101\110\100\10\32\32\32\32\105\102\32\98\111\111\108\32\61\61\32\102\97\108\115\101\32\116\104\101\110\10\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\83\105\122\101\32\61\32\86\101\99\116\111\114\51\46\110\101\119\40\34\50\34\44\34\50\34\44\34\49\34\41\10\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\46\72\105\112\72\101\105\103\104\116\32\61\32\40\48\41\10\32\32\32\32\101\110\100\10\101\110\100\41\10\10\77\49\58\78\101\119\84\111\103\103\108\101\40\34\97\117\116\111\116\112\34\44\32\34\97\117\116\111\108\97\103\34\44\32\102\117\110\99\116\105\111\110\40\98\111\111\108\41\10\32\32\32\32\103\101\116\103\101\110\118\40\41\46\97\117\116\111\116\112\116\32\61\32\98\111\111\108\10\32\32\32\32\105\102\32\98\111\111\108\32\61\61\32\116\114\117\101\32\116\104\101\110\10\32\32\32\32\32\32\32\32\97\117\116\111\116\112\40\41\10\32\32\32\32\101\110\100\10\101\110\100\41\10\10\102\117\110\99\116\105\111\110\32\97\117\116\111\116\112\40\41\10\32\32\32\32\115\112\97\119\110\40\102\117\110\99\116\105\111\110\40\41\10\32\32\32\32\32\32\32\32\119\104\105\108\101\32\103\101\116\103\101\110\118\40\41\46\97\117\116\111\116\112\116\32\100\111\10\32\32\32\32\32\32\32\32\32\32\32\32\102\111\114\32\105\44\32\112\32\105\110\32\105\112\97\105\114\115\40\103\97\109\101\46\80\108\97\121\101\114\115\58\71\101\116\80\108\97\121\101\114\115\40\41\41\32\100\111\10\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\112\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\67\70\114\97\109\101\32\61\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\67\70\114\97\109\101\10\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\32\119\97\105\116\40\41\10\32\32\32\32\32\32\32\32\32\32\32\32\101\110\100\10\32\32\32\32\32\32\32\32\101\110\100\10\32\32\32\32\101\110\100\41\10\101\110\100\10\10\102\117\110\99\116\105\111\110\32\97\117\116\111\107\105\108\108\40\41\10\32\32\32\32\115\112\97\119\110\40\102\117\110\99\116\105\111\110\40\41\10\32\32\32\32\32\32\32\32\119\104\105\108\101\32\103\101\116\103\101\110\118\40\41\46\97\117\116\111\107\105\108\108\116\32\100\111\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\83\105\122\101\32\61\32\86\101\99\116\111\114\51\46\110\101\119\40\34\49\48\48\48\48\34\44\34\53\34\44\34\49\48\48\48\48\34\41\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\84\114\97\110\115\112\97\114\101\110\99\121\32\61\32\40\48\46\53\41\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\46\72\105\112\72\101\105\103\104\116\32\61\32\40\48\41\10\32\32\32\32\32\32\32\32\32\32\32\32\119\97\105\116\40\48\46\49\41\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\83\105\122\101\32\61\32\86\101\99\116\111\114\51\46\110\101\119\40\34\49\48\48\48\48\34\44\34\51\34\44\34\49\48\48\48\48\34\41\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\46\72\105\112\72\101\105\103\104\116\32\61\32\40\50\41\10\32\32\32\32\32\32\32\32\32\32\32\32\119\97\105\116\40\48\46\49\41\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\82\111\111\116\80\97\114\116\46\83\105\122\101\32\61\32\86\101\99\116\111\114\51\46\110\101\119\40\34\49\48\48\48\48\34\44\34\52\34\44\34\49\48\48\48\48\34\41\10\32\32\32\32\32\32\32\32\32\32\32\32\103\97\109\101\46\80\108\97\121\101\114\115\46\76\111\99\97\108\80\108\97\121\101\114\46\67\104\97\114\97\99\116\101\114\46\72\117\109\97\110\111\105\100\46\72\105\112\72\101\105\103\104\116\32\61\32\40\49\41\10\32\32\32\32\32\32\32\32\101\110\100\10\32\32\32\32\101\110\100\41\10\101\110\100\10\10")()
  165. end
  166. ]]
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179. A2:NewButton("sanic puddles dont infect!!", "(permanent!!)", function()
  180.     for i, v in pairs(game:GetService("Workspace").GameFolder.InfectionPart:GetDescendants()) do
  181.         if v.Name == "TransfurPart" and v.Parent.Parent.Name == "InfectionPart" then
  182.             local parent = v.Parent.Parent
  183.             local name = "TransfurPartFake"
  184.             local material = v.Material
  185.             local shape = v.Shape
  186.             local size = v.Size
  187.             local transparency = v.Transparency
  188.             local color = v.Color
  189.             local cframe = v.CFrame
  190.             local part = Instance.new("Part")
  191.             part.Parent = parent
  192.             part.Name = name
  193.             part.Material = material
  194.             part.Shape = shape
  195.             part.Size = size
  196.             part.Transparency = (0.5)
  197.             part.Color = color
  198.             part.CFrame = cframe
  199.             part.Anchored = true
  200.             part.CanCollide = false
  201.             v.CFrame = CFrame.new(69420, 69420, 69420)
  202.         end
  203.     end
  204. end)
  205.  
  206. A2:NewButton("bear traps dont hit!! (buggy)", "(permanent!!)", function()
  207.     for i, v in pairs(game:GetService("Workspace"):GetDescendants()) do
  208.         if v.Name == "Captured" and v.Parent.Name == "BearTrap" then
  209.             local parent = v.Parent.Parent
  210.             local name = "BearTrapFake"
  211.             local material = v.Parent.Material
  212.             local size = v.Parent.Size
  213.             local transparency = v.Parent.Transparency
  214.             local color = v.Parent.Color
  215.             local cframe = v.Parent.CFrame
  216.             local meshid = v.Parent.MeshId
  217.             local part = Instance.new("MeshPart")
  218.             part.Parent = parent
  219.             part.Name = name
  220.             part.Material = material
  221.             part.Size = size
  222.             part.Transparency = (0)
  223.             part.Color = color
  224.             part.CFrame = cframe
  225.             part.MeshId = meshid
  226.             part.Anchored = true
  227.             part.CanCollide = false
  228.             v.Parent.Anchored = true
  229.             v.Parent.CFrame = CFrame.new(69420, 69420, 69420)
  230.         end
  231.     end
  232. end)
  233.  
  234. A3:NewButton("play sounds", "(lasts long!!)", function()
  235.     for i, v in pairs(game:GetService("Workspace"):GetDescendants()) do
  236.         if v.ClassName == "Sound" then
  237.             v:Stop()
  238.             v.MaxDistance = math.huge
  239.             v.Looped = true
  240.             v:Play()
  241.             wait(0.5)
  242.             v.Looped = false
  243.         end
  244.     end
  245. end)
  246.  
  247. A3:NewToggle("go through lobby shop barrier", "go through the shop barrier", function(bool)
  248.     if bool == true then
  249.         game:GetService("Workspace").GameFolder.Shops.LobbyShops.MainShop.Border.CanCollide = false
  250.         game:GetService("Workspace").GameFolder.Shops.LobbyShops.MainShop.Border.Transparency = (0.5)
  251.     end
  252.     if bool == false then
  253.         game:GetService("Workspace").GameFolder.Shops.LobbyShops.MainShop.Border.CanCollide = true
  254.         game:GetService("Workspace").GameFolder.Shops.LobbyShops.MainShop.Border.Transparency = (1)
  255.     end
  256. end)
  257.  
  258. A3:NewToggle("show hitbox", "shows hitbox", function(bool)
  259.     if bool == true then
  260.         game.Players.LocalPlayer.Character.HumanoidRootPart.Transparency = (0)
  261.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Size = (fatsize)
  262.     end
  263.     if bool == false then
  264.         game.Players.LocalPlayer.Character.HumanoidRootPart.Transparency = (1)
  265.     end
  266. end)
  267.  
  268.  
  269. A3:NewToggle("open/close doors", "opens and closes doors", function(bool)
  270.     getgenv().autoopenandclose = bool
  271.     if bool == true then
  272.         autoopen()
  273.     end
  274.     if bool == false then
  275.         autoclose()
  276.     end
  277. end)
  278.  
  279. A3:NewKeybind("delete jumpcooldown", "deletes jumpcooldown", Enum.KeyCode.J, function()
  280.     game.Players.LocalPlayer.Character.JumpCooldown:Destroy()
  281. end)
  282.  
  283. function autokill()
  284.     spawn(function()
  285.         while getgenv().autokillt do
  286.             game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("10000","5","10000")
  287.             game.Players.LocalPlayer.Character.HumanoidRootPart.Transparency = (0.5)
  288.             game.Players.LocalPlayer.Character.Humanoid.HipHeight = (0)
  289.             wait(0.1)
  290.             game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("10000","3","10000")
  291.             game.Players.LocalPlayer.Character.Humanoid.HipHeight = (2)
  292.             wait(0.1)
  293.             game.Players.LocalPlayer.Character.HumanoidRootPart.Size = Vector3.new("10000","4","10000")
  294.             game.Players.LocalPlayer.Character.Humanoid.HipHeight = (1)
  295.         end
  296.     end)
  297. end
  298.  
  299. function autoopen()
  300.     spawn(function()
  301.         while getgenv().autoopent do
  302.             for i, v in pairs(game:GetService("Workspace").GameFolder.Map.Area51:GetDescendants()) do
  303.                 if v.ClassName == "ClickDetector" and v.Parent.Name == "Open" then
  304.                     v.MaxActivationDistance = math.huge
  305.                     fireclickdetector(v)
  306.                     wait()
  307.                 end
  308.             end
  309.         end
  310.     end)
  311. end
  312.  
  313. function autoclose()
  314.     spawn(function()
  315.         while getgenv().autocloset do
  316.             for i, v in pairs(game:GetService("Workspace").GameFolder.Map.Area51:GetDescendants()) do
  317.                 if v.ClassName == "ClickDetector" and v.Parent.Name == "Close" then
  318.                     v.MaxActivationDistance = math.huge
  319.                     fireclickdetector(v)
  320.                     wait()
  321.                 end
  322.             end
  323.         end
  324.     end)
  325. end
  326.  
  327. function placeholder1()
  328.     print("placeholder")
  329.     wait()
  330. end
  331.  
  332. M1:NewKeybind("toggleui", "toggleui", Enum.KeyCode.RightControl, function()
  333.     Library:ToggleUI()
  334. end)
  335.  
  336.  
  337.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement