Advertisement
HenloMyDude

bendy

Jul 22nd, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. torsomsh = "rbxassetid://862497341"
  2. torsotxt = "rbxassetid://862497354"
  3. leg1msh = "rbxassetid://1023882425"
  4. leg1txt = "rbxassetid://0"
  5. leg2msh = "rbxassetid://430069778"
  6. leg2txt = "rbxassetid://430069795"
  7. hedmsh = "rbxassetid://430073345"
  8. hedtxt = "rbxassetid://430073362"
  9.  
  10. plr = owner
  11. char = owner.Character
  12. torso = char.Torso
  13. left = char["Left Leg"]
  14. right = char["Right Leg"]
  15. head = char.Head
  16. hum = char.Humanoid
  17.  
  18. mleft = Instance.new("SpecialMesh",left)
  19. mleft.MeshId = leg2msh
  20. mleft.TextureId = leg2txt
  21. mleft.Scale = Vector3.new(0, 0, 0)
  22. mleft.Offset = Vector3.new(0,0,0)
  23.  
  24. mright = Instance.new("SpecialMesh",right)
  25. mright.MeshId = leg1msh
  26. mright.TextureId = leg1txt
  27. mright.Offset = Vector3.new(0.15, 0, 0)
  28. mright.Scale = Vector3.new(0.1, 0.13, 0.1)
  29. mright.Offset = Vector3.new(0, 0.45, 0)
  30.  
  31. mtorso = Instance.new("SpecialMesh",torso)
  32. mtorso.MeshId = torsomsh
  33. mtorso.TextureId = torsotxt
  34. mtorso.Offset = Vector3.new(0, 4, 0)
  35. mtorso.Scale = Vector3.new(0.05,0.06,0.05)
  36.  
  37. mhed = Instance.new("SpecialMesh",head)
  38. mhed.MeshId = "rbxassetid://0"
  39. mhed.TextureId = "rbxassetid://0"
  40. mhed.Offset = Vector3.new(0, -0.35, 0)
  41.  
  42. char["Right Arm"].Transparency = 0
  43. char["Left Arm"].Transparency = 0
  44. head.face.Transparency = 1
  45.  
  46. chatt = false
  47.  
  48. plr.Chatted:connect(function(msg)
  49. if chatt == false then
  50. chatt = true
  51. local sur = Instance.new("BillboardGui", head)
  52. sur.Name = "Billboard"
  53. sur.Adornee = head
  54. sur.Size = UDim2.new(10, 0, 5, 0)
  55. sur.StudsOffset = Vector3.new(0, 6, 0)
  56. local text = Instance.new("TextLabel", sur)
  57. text.Text = "* " ..msg
  58. text.Size = UDim2.new(1, 0, 1, 0)
  59. text.TextScaled = true
  60. text.BackgroundTransparency = 0
  61. text.BackgroundColor3 = Color3.new(0, 0, 0)
  62. text.BorderColor3 = Color3.new(255, 255, 255)
  63. text.BorderSizePixel = 3
  64. text.Font = Enum.Font.Arcade
  65. text.TextColor3 = Color3.new(255, 255, 255)
  66. text.TextStrokeTransparency = 1
  67. wait(3)
  68. text:Destroy()
  69. sur:Destroy()
  70. chatt = false
  71. end
  72. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement