Advertisement
creepstu

🔊 FREE RADIO [BOOMBOX] VOICE CHAT! [roblox script]

May 2nd, 2023 (edited)
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.88 KB | None | 0 0
  1. --AUTO FARM YOW
  2. --Game Link: https://www.roblox.com/games/4597327782/FREE-RADIO-BOOMBOX-VOICE-CHAT
  3.  
  4. local path = game:GetService("Workspace")["New Map 2021 - 2022  Boombox"]["MINI GAME - HERE"]["Bloque Desaparecer y Recive Cash"]:GetChildren()
  5.  
  6. local function teleportTo(child)
  7.     if child:IsA("BasePart") then
  8.         local currentPosition = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  9.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = child.CFrame
  10.         if game.Players.LocalPlayer.Character.HumanoidRootPart.Position == currentPosition then
  11.             currentPosition = currentPosition + Vector3.new(0, 2.5, 0)
  12.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(currentPosition)
  13.         end
  14.     end
  15. end
  16.  
  17. while true do
  18.     for _, child in pairs(path) do
  19.         teleportTo(child)
  20.         wait()
  21.     end
  22. end
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement