Advertisement
SJ1231s

rrr

Nov 12th, 2021
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. local movers = {}
  2. local tog = true
  3. local Player = game:GetService("Players").LocalPlayer
  4. local Character = Player.Character
  5. local move = false
  6. local mov = {};
  7. local mov2 = {};
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. local Hats = {Ex1 = Character:WaitForChild("CloneBack_AccAccessory"),
  16. }
  17.  
  18.  
  19.  
  20. for i,v in next, Hats do
  21. v.Handle.Weld:Remove()
  22. end
  23.  
  24.  
  25.  
  26. local function align(i,v)
  27. local att0 = Instance.new("Attachment", i)
  28. att0.Position = Vector3.new(0,0,0)
  29. local att1 = Instance.new("Attachment", v)
  30. att1.Position = Vector3.new(0,0,0)
  31. local AP = Instance.new("AlignPosition", i)
  32. AP.Attachment0 = att0
  33. AP.Attachment1 = att1
  34. AP.RigidityEnabled = false
  35. AP.ReactionForceEnabled = false
  36. AP.ApplyAtCenterOfMass = false
  37. AP.MaxForce = 9999999
  38. AP.MaxVelocity = math.huge
  39. AP.Responsiveness = 200
  40. local AO = Instance.new("AlignOrientation", i)
  41. AO.Attachment0 = att0
  42. AO.Attachment1 = att1
  43. AO.ReactionTorqueEnabled = false
  44. AO.PrimaryAxisOnly = false
  45. AO.MaxTorque = 9999999
  46. AO.MaxAngularVelocity = math.huge
  47. AO.Responsiveness = 200
  48. end
  49.  
  50.  
  51.  
  52.  
  53. align(Hats.Ex1.Handle, Character.Adds.Handle)
  54.  
  55.  
  56.  
  57. ---------------------------------------------------
  58.  
  59.  
  60.  
  61.  
  62. Character.Adds.Handle.Attachment.Position = Vector3.new(0, 0, 0)
  63.  
  64.  
  65.  
  66.  
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement