SHOW:
|
|
- or go back to the newest paste.
1 | - | part = Instance.new("Seat", script) |
1 | + | local density = 0 |
2 | - | part.CFrame = owner.Character.Head.CFrame * CFrame.new(0,7.5,-10) |
2 | + | |
3 | - | part.Anchored = true |
3 | + | local elasticity = 1 |
4 | - | part2 = Instance.new("Part", script) |
4 | + | local frictionWeight = 0 |
5 | - | part3 = Instance.new("Part", script) |
5 | + | local elasticityWeight = 100000000000000000000 |
6 | - | part4 = Instance.new("Part", script) |
6 | + | |
7 | - | part5 = Instance.new("Part", script) |
7 | + | for i,v in pairs(owner.Character:GetDescendants()) do |
8 | - | part.Size = Vector3.new(5,1,5) |
8 | + | if v:IsA("BasePart") then |
9 | - | part2.Size = Vector3.new(5,3,1) |
9 | + | v.CustomPhysicalProperties = physProperties |
10 | - | part3.Size = Vector3.new(5,3,1) |
10 | + | end |
11 | - | part4.Size = Vector3.new(1,3,5) |
11 | + | end |