Kitty-Admin

Loader

Jul 12th, 2021 (edited)
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(143,111,191)
  2. _G.ButtonColor = Color3.fromRGB(143,111,191)
  3. _G.SliderColor = Color3.fromRGB(143,111,191)
  4.  
  5. game:GetService("ReplicatedStorage").RemoteEvents.Cattery:FireServer()
  6. getgenv().HealYou = false
  7. getgenv().KillBad = false
  8. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))() -- It's obfuscated, I won't let you see my ugly coding skills. =)
  9.  
  10. local w = library:CreateWindow("Break In - Game")
  11.  
  12. local a = w:CreateFolder("Player")
  13. local b = w:CreateFolder("Items")
  14. local d = w:CreateFolder("Misc")
  15. local c = w:CreateFolder("Teleport")
  16.  
  17. c:Button("Basement",function()
  18. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)
  19. end)
  20.  
  21. c:Button("House",function()
  22. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36,3,-200)
  23. end)
  24.  
  25. c:Button("Attic",function()
  26. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16,35,-220)
  27. end)
  28.  
  29. c:Button("Store",function()
  30. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422,3,-121)
  31. end)
  32.  
  33. c:Button("Sewer",function()
  34. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129,3,-125)
  35. end)
  36.  
  37. c:Button("Boss Room",function()
  38. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39,-287,-1480)
  39. end)
  40.  
  41. --Items
  42.  
  43. b:Button("Lolli Pop",function()
  44. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Lollipop")
  45. end)
  46.  
  47. b:Button("Plank",function()
  48. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Plank")
  49. end)
  50.  
  51. b:Button("Hammer",function()
  52. local A_1 = true
  53. local A_2 = "Hammer"
  54. local Event = game:GetService("ReplicatedStorage").RemoteEvents.BasementWeapon
  55. Event:FireServer(A_1, A_2)
  56. end)
  57.  
  58. b:Button("Cure",function()
  59. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cure")
  60. end)
  61.  
  62. b:Button("Apple",function()
  63. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  64. end)
  65.  
  66. b:Button("Cola",function()
  67. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  68. end)
  69.  
  70. b:Button("Medic Kit",function()
  71. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  72. end)
  73.  
  74. b:Button("Pizza",function()
  75. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza2")
  76. end)
  77.  
  78. b:Button("Cookie",function()
  79. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  80. end)
  81.  
  82. b:Button("Basment Key",function()
  83. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")
  84. end)
  85.  
  86. b:Button("Teddy",function()
  87. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  88. end)
  89.  
  90. b:Button("Sword",function()
  91. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("LinkedSword")
  92. end)
  93.  
  94. b:Button("Final",function()
  95. game.ReplicatedStorage.RemoteEvents.GetKeys:FireServer()
  96. end)
  97.  
  98.  
  99. --Player Scripts
  100.  
  101.  
  102. a:Toggle("Heal",function(bool)
  103. getgenv().HealYou = bool
  104. end)
  105.  
  106. a:Button("Instant Heal",function()
  107. for i = 1, 20 do
  108.  
  109. local args = {
  110. [1] = "Cat"
  111. }
  112.  
  113. game:GetService("ReplicatedStorage").RemoteEvents.Energy:FireServer(unpack(args))
  114.  
  115. end
  116. end)
  117.  
  118. --Checkers
  119.  
  120. while true do
  121. if getgenv().HealYou == true then
  122. local args = {
  123. [1] = "Cat"
  124. }
  125.  
  126. game:GetService("ReplicatedStorage").RemoteEvents.Energy:FireServer(unpack(args))
  127. wait(0.2)
  128. end
  129.  
  130. if getgenv().KillBad == true then
  131. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  132. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  133. end
  134. end
  135. wait(0.2)
  136. end
  137. end
Add Comment
Please, Sign In to add comment