ssssdsd1213

Untitled

Feb 16th, 2023
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. for _, v in pairs(game.Players.LocalPlayer.Character:getChildren()) do
  2. if v.ClassName == "Accessory" then
  3. for i, k in pairs(v:GetDescendants()) do
  4. if k.ClassName == "Attachment" then
  5. s = Instance.new("RopeConstraint")
  6. k.Parent.CanCollide = true
  7. s.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  8. s.Attachment1 = k
  9. s.Attachment0 = game.Players.LocalPlayer.Character.Head.FaceCenterAttachment
  10. s.Visible = true
  11. s.Length = 10
  12. v.Handle.AccessoryWeld:Destroy()
  13. end
  14. end
  15. end
  16. end
Add Comment
Please, Sign In to add comment