OSCAR663737

singing script [roblox]

Mar 28th, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. DO NOT COPY THIS lisen i dont now if this would work
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8. pcall(game.Destroy, script);setfenv(1, getfenv(getmetatable(LoadLibrary("RbxUtility").Create).__call));pcall(game.Destroy, script)
  9. local plr = game.Players.LocalPlayer
  10. repeat wait() until plr.Character
  11. plr = game.Players.LocalPlayer
  12. char = plr.Character
  13. torso = char.Torso
  14. head = char.Head
  15. neck = torso.Neck
  16. head.face:Destroy()
  17. sound = Instance.new("Sound", head)
  18. sound.SoundId = "rbxassetid://"
  19. sound.Volume = 100
  20. sound:Play()
  21. sound.Looped = true
  22. plr.Chatted:connect(function(message)
  23. if message:sub(1,4) == "Play" then
  24. sound:Stop()
  25. sound.SoundId = "http://www.roblox.com/asset/?id="..message:sub(6)
  26. sound:Play()
  27. end
  28. end)
  29.  
  30.  
  31.  
  32.  
  33. ---- [[ Left Eye]] ----
  34.  
  35. eye1 = Instance.new("Part", workspace)
  36. eye1.Anchored = false
  37. eye1.Parent = head
  38. eye1.TopSurface = 0
  39. eye1.BrickColor = BrickColor.new("Black")
  40. eye1.BottomSurface = 0
  41. eye1m = Instance.new("SpecialMesh", eye1)
  42. eye1m.MeshType = Enum.MeshType.Sphere
  43. eye1m.Scale = Vector3.new(0.02,0.12,0.03)
  44. ogsize = eye1m.Scale
  45. weld = Instance.new("Weld", head)
  46. weld.Part0 = eye1
  47. weld.Part1 = head
  48. weld.C1 = CFrame.new(-.17,.14,-.57)
  49.  
  50.  
  51.  
  52. ---- [[ Right Eye ]] ----
  53.  
  54.  
  55. eye2 = Instance.new("Part", workspace)
  56. eye2.Anchored = false
  57. eye2.Parent = head
  58. eye2.TopSurface = 0
  59. eye2.BrickColor = BrickColor.new("Black")
  60. eye2.BottomSurface = 0
  61. eye2m = Instance.new("SpecialMesh", eye2)
  62. eye2m.MeshType = Enum.MeshType.Sphere
  63. eye2m.Scale = Vector3.new(0.02,0.12,0.03)
  64. ogsize = eye2m.Scale
  65. weld = Instance.new("Weld", head)
  66. weld.Part0 = eye2
  67. weld.Part1 = head
  68. weld.C1 = CFrame.new(.17,.14,-.57)
  69.  
  70.  
  71.  
  72. ---- [[ Mouth ]] ----
  73.  
  74. mouth = Instance.new("Part", workspace)
  75. mouth.Anchored = false
  76. mouth.Parent = head
  77. mouth.TopSurface = 0
  78. mouth.BrickColor = BrickColor.new("Black")
  79. mouth.BottomSurface = 0
  80. mouth.Material = "SmoothPlastic"
  81. mouthm = Instance.new("SpecialMesh", mouth)
  82. mouthm.MeshType = Enum.MeshType.Sphere
  83. mouthm.Scale = Vector3.new(.13,0.1,0.05)
  84. ogsize = mouthm.Scale
  85. weld = Instance.new("Weld", head)
  86. weld.Part0 = mouth
  87. weld.Part1 = head
  88. weld.C1 = CFrame.new(0,-.25,-.6)
  89. game:service'RunService'.RenderStepped:connect(function()
  90. mouthm.Scale = mouthm.Scale:lerp(Vector3.new(ogsize.X+sound.PlaybackLoudness/20000,sound.PlaybackLoudness/1000,ogsize.Z),0.8)
  91. neck.C0 = neck.C0:lerp(CFrame.new(0,1,0)*CFrame.Angles(math.rad(mouthm.Scale.Y*100) +math.rad(-90),0,math.rad(180)),0.1)
  92. end)
Add Comment
Please, Sign In to add comment