Advertisement
scriptingtales

Kick Brick

Mar 26th, 2021
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. -- Creating Instances
  2.  
  3. Weld = Instance.new("Weld")
  4. Part = Instance.new("Part")
  5. Weld_2 = Instance.new("Weld")
  6.  
  7. -- Adding Properites
  8.  
  9. Weld.Name = "Weld"
  10. Weld.Part0 = Part
  11. Weld.C0 = CFrame.new(0, -0.5, 0, 1, 0, 0, -0, -0, -1, 0, 1, 0)
  12. Weld.C1 = CFrame.new(-6, 10.000001, -11, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  13. Weld.Parent = Part
  14.  
  15. Part.Name = "Part"
  16. Part.Size = Vector3.new(4,1,2)
  17. Part.Position = Vector3.new(-6,0.50000095367432,-11)
  18. Part.Color = Color3.new(0.63921570777893,0.63529413938522,0.64705884456635)
  19. Part.Material = Enum.Material.Plastic
  20. Part.BackSurface = Enum.SurfaceType.Smooth
  21. Part.BottomSurface = Enum.SurfaceType.Smooth
  22. Part.FrontSurface = Enum.SurfaceType.Smooth
  23. Part.LeftSurface = Enum.SurfaceType.Smooth
  24. Part.RightSurface = Enum.SurfaceType.Smooth
  25. Part.TopSurface = Enum.SurfaceType.Smooth
  26. Part.Parent = workspace
  27.  
  28. Weld_2.Name = "Weld"
  29. Weld_2.Part0 = Part
  30. Weld_2.C0 = CFrame.new(0, -0.5, 0, 1, 0, 0, -0, -0, -1, 0, 1, 0)
  31. Weld_2.C1 = CFrame.new(-6, 10.000001, -11, 1, 0, 0, 0, 0, -1, 0, 1, 0)
  32. Weld_2.Parent = Part
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement