Advertisement
RyanDaCoder

Death Script By Ryanawesome222/RyanDaCoder

Oct 7th, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. local model = Instance.new("Model")
  2. model.Name = "Death"
  3. model.Parent = game.Workspace
  4.  
  5. local d = Instance.new("Part")
  6. d.Size = Vector3.new(4, 7, 2)
  7. d.CFrame = CFrame.new(8, 3.5, 12)
  8. d.Anchored = true
  9. d.Name = "Death"
  10. d.Orientation = Vector3.new(0, 0, 0)
  11. d.Parent = model
  12.  
  13. local mesh = Instance.new("SpecialMesh")
  14. mesh.MeshId = "http://www.roblox.com/asset/?id=42579239"
  15. mesh.Scale = Vector3.new(10, 10, 10)
  16. mesh.TextureId = "http://www.roblox.com/asset/?id=42578558"
  17.  
  18. local tool = Instance.new("Part")
  19. tool.Anchored = true
  20. tool.Size = Vector3.new(1, 0.4, 7)
  21. tool.CFrame = CFrame.new(9.9, 2, 10.9)
  22. tool.Orientation = Vector3.new(0, 180, 0)
  23. tool.Parent = model
  24.  
  25. local mesh1 = Instance.new("SpecialMesh")
  26. mesh1.MeshId = "rbxassetid://28140935"
  27. mesh1.Scale = Vector3.new(1, 1, 1)
  28. mesh1.TextureId = "http://www.roblox.com/asset/?id=48597153"
  29.  
  30. mesh.Parent = d
  31. mesh1.Parent = tool
  32.  
  33. local decal1 = Instance.new("Decal")
  34. local decal2 = Instance.new("Decal")
  35. local decal3 = Instance.new("Decal")
  36.  
  37. decal1.Face = "Top"
  38. decal2.Face = "Bottom"
  39. decal3.Face = "Back"
  40.  
  41. decal1.Texture = "http://www.roblox.com/asset/?id=48597153"
  42. decal2.Texture = "http://www.roblox.com/asset/?id=48597153"
  43. decal3.Texture = "http://www.roblox.com/asset/?id=48597153"
  44.  
  45. decal1.Parent = tool
  46. decal2.Parent = tool
  47. decal3.Parent = tool
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement