Axolotleless

Smooth 1st person turning

Feb 11th, 2025
647
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. local character = script:FindFirstAncestorWhichIsA("Model")
  2.  
  3. local A1 = Instance.new("Weld")
  4. A1.Parent = character
  5. A1.Part0 = character:WaitForChild("HumanoidRootPart")
  6. local INSTANCE = Instance.new("Part")
  7. A1.Part1 = INSTANCE
  8. INSTANCE.CanCollide = false
  9. INSTANCE.Transparency = 1
  10. INSTANCE.Anchored = false
  11. INSTANCE.Size = Vector3.new(20, 20, 20)
  12. INSTANCE.CanTouch = true
  13. INSTANCE.CanQuery = true
  14. INSTANCE.CFrame = character:WaitForChild("HumanoidRootPart").CFrame
  15. INSTANCE.CustomPhysicalProperties = PhysicalProperties.new(2, 2, 1, 1, 1)
  16.  
  17. INSTANCE.Parent = character
  18.  
Advertisement
Add Comment
Please, Sign In to add comment