Advertisement
2AreYouMental110

kohls admin house script (game was already dead lol)

Mar 14th, 2022
2,403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.02 KB | None | 0 0
  1. if game.PlaceId == 112420803 then
  2.     -- https://www.roblox.com/games/112420803/Kohls-Admin-House-NBC
  3.  
  4.     getgenv().autoregen = false
  5.     getgenv().autoget = false
  6.  
  7.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  8.     local Window = Library.CreateLib("kohls admin house", "Sentinel")
  9.     local a = Window:NewTab("sussy things")
  10.     local b = Window:NewTab("fun")
  11.  
  12.     local a1 = a:NewSection("sussy things")
  13.     local b1 = b:NewSection("fun")
  14.  
  15.  
  16.     a1:NewToggle("auto regenerate buttons", "_", function(bool)
  17.         getgenv().autoregen = bool
  18.         print(on)
  19.         if bool then
  20.             regen()
  21.         end
  22.     end)
  23.  
  24.     a1:NewToggle("auto get buttons (read info)", "you will crash if you try to do this when punished", function(bool)
  25.         getgenv().autoget = bool
  26.         print(on)
  27.         if bool then
  28.             get()
  29.         end
  30.     end)
  31.  
  32.     a1:NewButton("regenerate buttons", "OMG WHAT??", function()
  33.         for i, v in pairs(game:GetService("Workspace").Terrain["_Game"].Admin.Regen:GetDescendants()) do
  34.             if v.Name == "ClickDetector" and v.Parent then
  35.                 fireclickdetector(v)
  36.                 wait()
  37.                 fireclickdetector(v)
  38.             end
  39.         end
  40.     end)
  41.  
  42.     a1:NewButton("get buttons (read info)", "you will crash if you try to do this when punished", function()
  43.         local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  44.         for i, v in pairs(game:GetService("Workspace").Terrain["_Game"].Admin.Pads:GetDescendants()) do
  45.             if v.Name == "TouchInterest" and v.Parent.Name == "Head" then
  46.                 firetouchinterest(player, v.Parent, 0)
  47.                 wait()
  48.                 firetouchinterest(player, v.Parent, 1)
  49.                 wait()
  50.             end
  51.         end
  52.     end)
  53.  
  54.     function regen()
  55.         spawn(function()
  56.             while getgenv().autoregen do
  57.                 for i, v in pairs(game:GetService("Workspace").Terrain["_Game"].Admin.Regen:GetDescendants()) do
  58.                     if v.Name == "ClickDetector" and v.Parent then
  59.                         fireclickdetector(v)
  60.                         wait()
  61.                         fireclickdetector(v)
  62.                     end
  63.                 end
  64.                 wait(.01)
  65.             end
  66.         end)
  67.     end
  68.  
  69.     function get()
  70.         spawn(function()
  71.             while getgenv().autoget do
  72.                 local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  73.                 for i, v in pairs(game:GetService("Workspace").Terrain["_Game"].Admin.Pads:GetDescendants()) do
  74.                     if v.Name == "TouchInterest" and v.Parent.Name == "Head" then
  75.                         firetouchinterest(player, v.Parent, 0)
  76.                         wait()
  77.                         firetouchinterest(player, v.Parent, 1)
  78.                         wait()
  79.                     end
  80.                 end
  81.                 wait(.08)
  82.             end
  83.         end)
  84.     end
  85.  
  86.  
  87. end
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement