Advertisement
suramraja1

bonk

May 17th, 2024 (edited)
1,117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.12 KB | None | 0 0
  1. repeat
  2.     task.wait()
  3. until game:IsLoaded()
  4.  
  5. repeat
  6.     task.wait()
  7. until game.PlaceId ~= nil
  8.  
  9. repeat
  10.     task.wait()
  11. until game:GetService("Players").LocalPlayer and game:GetService("Players").LocalPlayer.Character and game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  12.  
  13. repeat
  14.     task.wait()
  15. until game:GetService("Workspace"):FindFirstChild("Map") or game:GetService("Workspace"):FindFirstChild("Map2")
  16.  
  17. repeat
  18.     task.wait()
  19. until game:GetService("Workspace").__THINGS and game:GetService("Workspace").__DEBRIS
  20.  
  21. print("[CLIENT] Loaded Game")
  22.  
  23. -- // Globals
  24. local ReS = game:GetService("ReplicatedStorage")
  25. local RuS = game:GetService("RunService")
  26. local TeS = game:GetService("TeleportService")
  27. local Http = game:GetService("HttpService")
  28. local Plyrs = game:GetService("Players")
  29. -- // Locals
  30. local Plyr ; local Lib
  31. repeat RuS.Heartbeat:Wait()
  32.     Plyr = Plyrs.LocalPlayer
  33.     Lib = require(ReS.Library)
  34. until (Plyr and Lib) ~= nil
  35.  
  36. local Active ; local Entrance
  37. repeat RuS.Heartbeat:Wait()
  38.     Active = workspace.__THINGS.__INSTANCE_CONTAINER.Active
  39.     Entrance = workspace.__THINGS.Instances.Backrooms.Teleports.Enter
  40. until (Active and Entrance) ~= nil and Entrance.BrickColor == BrickColor.new("Sand blue metallic")
  41.  
  42. local Hrp = Plyr.Character.HumanoidRootPart ; Hrp.CFrame = Entrance.CFrame ; local Spawn
  43. repeat RuS.Heartbeat:Wait()
  44.     pcall(function() Spawn = Active.Backrooms.GeneratedBackrooms.SpawnRoom end)
  45. until Spawn ~= nil
  46.  
  47. local function CariBank()
  48.     pcall(function()
  49.         for _, v in pairs(game:GetService("Workspace").__THINGS.__INSTANCE_CONTAINER.Active.Backrooms.GeneratedBackrooms:GetDescendants()) do
  50.             if v.Name == ("RandomReward") then
  51.                 local part = v
  52.                 game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = part.Main.CFrame
  53.                 task.wait(0.1)
  54.             end
  55.         end
  56.     end)
  57. end
  58.  
  59. loadstring(game:HttpGet("https://raw.githubusercontent.com/fdvll/pet-simulator-99/main/cpuReducer.lua"))()
  60.  
  61. coroutine.wrap(function()
  62.     task.wait(60*8)
  63.     local Serverhop = loadstring(game:HttpGet("https://pastebin.com/raw/ZPub9qqv"))();
  64.     Serverhop:Dynamic(false, nil)
  65. end)()
  66.  
  67. while task.wait() do
  68.     pcall(function()
  69.         if workspace.__THINGS.__INSTANCE_CONTAINER.Active.Backrooms.GeneratedBackrooms:FindFirstChild("BankHeistRoom") then
  70.             game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = workspace.__THINGS.__INSTANCE_CONTAINER.Active.Backrooms.GeneratedBackrooms.BankHeistRoom.Bank.Pad.CFrame
  71.             print("Found")
  72.             task.wait(60*6)
  73.             print("Found")
  74.             local Serverhop = loadstring(game:HttpGet("https://pastebin.com/raw/ZPub9qqv"))();
  75.             Serverhop:Dynamic(false, nil)
  76.         elseif not workspace.__THINGS.__INSTANCE_CONTAINER.Active.Backrooms.GeneratedBackrooms:FindFirstChild("BankHeistRoom") then
  77.             repeat task.wait(0.5)
  78.                 CariBank()
  79.             until workspace.__THINGS.__INSTANCE_CONTAINER.Active.Backrooms.GeneratedBackrooms:FindFirstChild("BankHeistRoom")
  80.         end
  81.     end)
  82. end
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement