Advertisement
idkwhatiam

tickets store

May 6th, 2019
705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.19 KB | None | 0 0
  1. plr = owner
  2. char = plr.Character
  3. hum = char.Humanoid
  4. torso = char.Torso
  5.  
  6. root = Instance.new("Weld")
  7. root.Parent = char["HumanoidRootPart"]
  8. root.Part0 = char["HumanoidRootPart"]
  9. root.Part1 = torso
  10. root.C1  = CFrame.Angles(0, 0, 0)
  11.  
  12. leftarm = Instance.new("Weld")
  13. leftarm.Parent = char["Left Arm"]
  14. leftarm.Part0 = char["Left Arm"]
  15. leftarm.Part1 = torso
  16. leftarm.C1 = CFrame.Angles(1, 0, 0.25)
  17. leftarm.C0 = CFrame.new(-1.5, 0.5, 0)
  18.  
  19. rightarm = Instance.new("Weld")
  20. rightarm.Parent = char["Right Arm"]
  21. rightarm.Part0 = char["Right Arm"]
  22. rightarm.Part1 = torso
  23. rightarm.C1 = CFrame.Angles(1, 0, -0.25)
  24. rightarm.C0 = CFrame.new(1.5, 0.5, 0)
  25.  
  26. model = Instance.new("Model")
  27. model.Name = "tx_stand"
  28. model.Parent = char
  29.  
  30. bottom = Instance.new("Part")
  31. bottom.Parent = model
  32. bottom.Locked = true
  33. bottom.Anchored = false
  34. bottom.CanCollide = true
  35. bottom.Size = Vector3.new(12, 2.5, 2.5)
  36. bottom.Material = "WoodPlanks"
  37. bottom.BrickColor = BrickColor.new("Dark orange")
  38. wbottom = Instance.new("Weld")
  39. wbottom.Parent = bottom
  40. wbottom.Part0 = bottom
  41. wbottom.Part1 = torso
  42. wbottom.C0 = CFrame.new(0, 1.75, 1.75)
  43.  
  44. left = Instance.new("Part")
  45. left.Parent = model
  46. left.Locked = true
  47. left.Anchored = false
  48. left.CanCollide = false
  49. left.Size = Vector3.new(1, 8.5, 1)
  50. left.Material = "WoodPlanks"
  51. left.BrickColor = BrickColor.new("Dark orange")
  52. wleft = Instance.new("Weld")
  53. wleft.Parent = left
  54. wleft.Part0 = left
  55. wleft.Part1 = torso
  56. wleft.C0 = CFrame.new(5.25, -2.75, 1.75)
  57.  
  58. right = Instance.new("Part")
  59. right.Parent = model
  60. right.Locked = true
  61. right.Anchored = false
  62. right.CanCollide = false
  63. right.Size = Vector3.new(1, 8.5, 1)
  64. right.Material = "WoodPlanks"
  65. right.BrickColor = BrickColor.new("Dark orange")
  66. wright = Instance.new("Weld")
  67. wright.Parent = right
  68. wright.Part0 = right
  69. wright.Part1 = torso
  70. wright.C0 = CFrame.new(-5.25, -2.75, 1.75)
  71.  
  72. top = Instance.new("Part")
  73. top.Parent = model
  74. top.Locked = true
  75. top.Anchored = false
  76. top.CanCollide = true
  77. top.Size = Vector3.new(12, 2.5, 2)
  78. top.Material = "WoodPlanks"
  79. top.BrickColor = BrickColor.new("Dark orange")
  80. wtop = Instance.new("Weld")
  81. wtop.Parent = top
  82. wtop.Part0 = top
  83. wtop.Part1 = torso
  84. wtop.C0 = CFrame.new(0, -7.25, 1.75)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement