Advertisement
Kitty-Admin

Story

Jul 5th, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 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 c = w:CreateFolder("Teleport")
  15.  
  16. c:Button("Basement",function()
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)
  18. end)
  19.  
  20. c:Button("House",function()
  21. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36,3,-200)
  22. end)
  23.  
  24. c:Button("Attic",function()
  25. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16,35,-220)
  26. end)
  27.  
  28. c:Button("Store",function()
  29. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422,3,-121)
  30. end)
  31.  
  32. :Button("Sewer",function()
  33. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129,3,-125)
  34. end)
  35.  
  36. c:Button("Boss Room",function()
  37. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39,-287,-1480)
  38. end)
  39.  
  40. --Items
  41.  
  42. b:Button("Lolli Pop",function()
  43. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Lollipop")
  44. end)
  45.  
  46. b:Button("Plank",function()
  47. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Plank")
  48. end)
  49.  
  50. b:Button("Hammer",function()
  51. local A_1 = true
  52. local A_2 = "Hammer"
  53. local Event = game:GetService("ReplicatedStorage").RemoteEvents.BasementWeapon
  54. Event:FireServer(A_1, A_2)
  55. end)
  56.  
  57. b:Button("Cure",function()
  58. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cure")
  59. end)
  60.  
  61. b:Button("Apple",function()
  62. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  63. end)
  64.  
  65. b:Button("Cola",function()
  66. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  67. end)
  68.  
  69. b:Button("Medic Kit",function()
  70. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  71. end)
  72.  
  73. b:Button("Pizza",function()
  74. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza2")
  75. end)
  76.  
  77. b:Button("Cookie",function()
  78. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  79. end)
  80.  
  81. b:Button("Basment Key",function()
  82. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")
  83. end)
  84.  
  85. b:Button("Teddy",function()
  86. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  87. end)
  88.  
  89. b:Button("Sword",function()
  90. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("LinkedSword")
  91. end)
  92.  
  93.  
  94. --Player Scripts
  95.  
  96.  
  97. a:Toggle("Heal",function(bool)
  98. getgenv().HealYou = bool
  99. end)
  100.  
  101. a:Button("Instant Heal",function()
  102. for i = 1, 20 do
  103.  
  104. local args = {
  105. [1] = "Cat"
  106. }
  107.  
  108. game:GetService("ReplicatedStorage").RemoteEvents.Energy:FireServer(unpack(args))
  109.  
  110. end
  111. end)
  112.  
  113. --Checkers
  114.  
  115. while true do
  116. if getgenv().HealYou == true then
  117. local args = {
  118. [1] = "Cat"
  119. }
  120.  
  121. game:GetService("ReplicatedStorage").RemoteEvents.Energy:FireServer(unpack(args))
  122. wait(0.2)
  123. end
  124.  
  125. if getgenv().KillBad == true then
  126. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  127. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  128. end
  129. end
  130. wait(0.2)
  131. end
  132. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement