The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Public Bathroom Simulator script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 23



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local LP = game.Players.LocalPlayer
  2. game.ReplicatedStorage.ToolEvents.TpRollEvent:FireServer()
  3. repeat wait() until LP.Character
  4. for i,v in pairs(LP.Backpack:GetChildren()) do
  5.    if v.Name == "TpRoll" then
  6.        v.Parent = LP.Character
  7.    end
  8. end
  9. while true do
  10.    wait()
  11.    for i,v in pairs (LP.Character:GetChildren()) do
  12.        if v.Name == "TpRoll" then
  13.            v:Activate()
  14.        end
  15.    end
  16. end