Advertisement
trixade

Untitled

Oct 9th, 2021
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.23 KB | None | 0 0
  1. --locals
  2. local lp = game.Players.LocalPlayer
  3. local ps = game:GetService("Players")
  4.  
  5. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  6. local Window = Library.CreateLib("STK GUI By Asian", "BloodTheme")
  7. local Tab = Window:NewTab("Main")
  8. local Section = Tab:NewSection("Killer")
  9.  
  10. local pt = {}
  11. for i,v in pairs(ps:GetPlayers()) do
  12.    table.insert(pt,v.Name)
  13.    table.sort(pt)
  14. end
  15.  
  16. local dropdown = Section:NewDropdown("TP To ","Pick Player to Tp to", pt, function(player)
  17.   game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[player].Character.HumanoidRootPart.CFrame
  18. end)
  19.  
  20. game.Players.PlayerAdded:Connect(function(player)
  21.     local name = player.Name
  22.     table.insert(pt,name)
  23.     dropdown:Refresh(pt)
  24. end)
  25.  
  26. game.Players.PlayerRemoving:Connect(function(player)
  27.     local name = player.Name
  28.     for i,v in pairs(pt)do
  29.         if v == name then  
  30.             table.remove(pt,i)
  31.         end
  32.     end
  33.     dropdown:Refresh(pt)
  34. end)
  35.  
  36. Section:NewButton("Kiriot'Esp","esp", function()
  37.     local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
  38.     ESP:Toggle(true)
  39. end)
  40.  
  41. local sur = Tab:NewSection("Survivor")
  42.  
  43. sur:NewButton("Auto Fuel","Use it in 15 seconds of the killer loading", function()
  44.     local args = {
  45.         [1] = "JoinMatch"
  46.     }
  47.     game:GetService("ReplicatedStorage").PlayerChannel:FireServer(unpack(args))    
  48.         game.Workspace.RocketFuel["Happy Neighborhood Fuel"].RocketFuel.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  49.     wait()
  50.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").FuelDeposit.Generator.SecretCode.CFrame
  51.     wait(.3)
  52.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").CurrentMap.SurvivorSpawns.Spawn.CFrame
  53.         game.Players.LocalPlayer.Character.Humanoid.Jump = true
  54. end)
  55.  
  56. sur:NewButton("TP 2 Exit"," Use it when exit is open", function()
  57.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").CurrentMap.ExitDoor.Open.Door.CFrame
  58. end)
  59.  
  60. sur:NewButton("Fuel TP", "ok", function()
  61.     game.Workspace.RocketFuel["Happy Neighborhood Fuel"].RocketFuel.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  62. end)
  63.  
  64. game:GetService("RunService").Stepped:Connect(function()
  65.     if getgenv().getgenv().Noclip then
  66.             game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  67.     end
  68. end)
  69. sur:NewToggle("NoClip","ok", function(state)
  70.     getgenv().Noclip = state
  71. end)
  72.  
  73. local Tab2 = Window:NewTab("Rocket Map")
  74. local Section2 = Tab2:NewSection("Rocket Map")
  75.  
  76. Section2:NewButton("TP To Cell Power","Yes", function()
  77.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").CurrentMap.Puzzles.Safes.Safe2.Collider.CFrame
  78. end)
  79.  
  80. Section2:NewButton("Destroy Traps","Destroys Traps", function()
  81.     game:GetService("Workspace").CurrentMap.RatTraps:Destroy()
  82. end)
  83.  
  84. Section2:NewButton("TP 2 Exit"," Use it when exit is open", function()
  85.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").CurrentMap.ExitDoor.Open.Door.CFrame
  86. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement