Advertisement
Stiwen133

code for funny

Jun 16th, 2021
1,312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. local CurrentPlayer = "MrRobloxTutorialsGo"
  2.  
  3. --get player that executed the script code here
  4.  
  5. local Mouth = Instance.new("Part", game.Workspace)
  6. Mouth.Anchored = true
  7. Mouth.CanCollide = false
  8. Mouth.Name = "FakeMouth"
  9. Mouth.Shape = Enum.PartType.Cylinder
  10. Mouth.Size = Vector3.new(0.05, 3, 3)
  11. Mouth.BrickColor = BrickColor.Black()
  12. Mouth.Orientation = Vector3.new(0, 90, 0)
  13. Mouth.Material = Enum.Material.SmoothPlastic
  14.  
  15. local Decal = Instance.new("Decal", Mouth)
  16. Decal.Face = "Right"
  17. Decal.Texture = "rbxassetid://857060810"
  18.  
  19. local Sound = Instance.new("Sound", Mouth)
  20. Sound.Looped = true
  21. Sound.SoundId = "rbxassetid://6554649622"
  22. Sound:Play()
  23.  
  24. local PlayerCharacter = game.Workspace:WaitForChild(CurrentPlayer, 100)
  25.  
  26. while wait() do
  27.     Mouth.CFrame = PlayerCharacter.Head.CFrame * CFrame.new(0, 0, -1)
  28.     Mouth.Orientation = PlayerCharacter.Head.Orientation + Vector3.new(0, 90, 0)
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement