Advertisement
YT_PatricioTGN

Muscle

Apr 4th, 2021
1,674
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. local vu = game:GetService("VirtualUser")
  2. game:GetService("Players").LocalPlayer.Idled:connect(function()
  3. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  4. wait(1)
  5. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  6. end)
  7. local part = Instance.new('Part', workspace)
  8. part.Size = Vector3.new(500, 20, 530.1)
  9. part.Position = Vector3.new(0, 1000, 133.15)
  10. part.CanCollide = true
  11. part.Anchored = true
  12.  
  13. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = part.CFrame + Vector3.new(0, 15, 0)
  14.  
  15. local a = true
  16. local rs = game:GetService("RunService").RenderStepped
  17. if a == true then
  18. while rs:wait() do
  19. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  20. if v.ClassName == "Tool" and v.Name == "Weight" then
  21. v.Parent = game.Players.LocalPlayer.Character
  22. end
  23. end
  24. game:GetService("Players").LocalPlayer.muscleEvent:FireServer("rep")
  25. end
  26. end
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement