The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Muscle Legends script pastebin roblox
By Muscle Legends on 2024-09-19 08:00 am | Syntax: LUA | Views: 13



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local part = Instance.new('Part', workspace)
  2. part.Size = Vector3.new(500, 20, 530.1)
  3. part.Position = Vector3.new(0, 1000, 133.15)
  4. part.CanCollide = true
  5. part.Anchored = true
  6.  
  7. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = part.CFrame + Vector3.new(0, 15, 0)
  8.  
  9. local a = true
  10. local rs = game:GetService("RunService").RenderStepped
  11. if a == true then
  12. while rs:wait() do
  13. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  14. if v.ClassName == "Tool" and v.Name == "Weight" then
  15. v.Parent = game.Players.LocalPlayer.Character
  16. end
  17. end
  18. game:GetService("Players").LocalPlayer.muscleEvent:FireServer("rep")
  19. end
  20. end