Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. local player = game.Players.Pseudorandomness
  2. local deathNote = Instance.new("Part")
  3. deathNote.Name = "DeathNote"
  4. deathNote.Anchored = true
  5. deathNote.CanCollide = false
  6.  
  7. local mesh = Instance.new("SpecialMesh")
  8. mesh.MeshId = 'http://www.roblox.com/asset/?id=1136139'
  9. mesh.Scale = Vector3.new(0.8, 0.2, 0.8)
  10. mesh.Parent = part
  11.  
  12. local decal = Instance.new("Decal")
  13. decal.Texture = "http://www.roblox.com/asset/?id=92001007"
  14. decal.Parent = part
  15.  
  16. deathNote.Parent = workspace
  17.  
  18. local eyeball = Instance.new("Part")
  19. eyeball.FormFactor = "Symmetric"
  20. eyeball.CanCollide = false
  21. eyeball.BottomSurface = "Smooth"
  22. eyeball.TopSurface = "Smooth"
  23. eyeball.Material = "Metal"
  24. eyeball.Size = Vector3.new(1, 1, 1)
  25. eyeball.Anchored = true
  26. eyeball.Rotation = Vector3.new(0, 0, -89.989998)
  27. eyeball.Name = "eyeball"
  28. eyeball.Shape = "Ball"
  29. eyeball.Parent = workspace
  30.  
  31. local Mesh = Instance.new("SpecialMesh")
  32. Mesh.TextureId = "http://www.roblox.com/asset/?id=78646688"
  33. Mesh.MeshType = "FileMesh"
  34. Mesh.VertexColor = Vector3.new(2, 1.25, 1.25)
  35. Mesh.MeshId = "http://www.roblox.com/asset/?id=1185246"
  36. Mesh.Scale = Vector3.new(5, 5, 5)
  37. Mesh.Parent = eyeball
  38.  
  39.  
  40. while true do
  41. part.CFrame = player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  42. part.CFrame = player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 6, 0)
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement