Advertisement
HenloMyDude

sansss

Jul 2nd, 2019
751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. torsomsh = "rbxassetid://430072717"
  2. torsotxt = "rbxassetid://430072723"
  3. leg1msh = "rbxassetid://430070587"
  4. leg1txt = "rbxassetid://430070605"
  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.  
  22. mright = Instance.new("SpecialMesh",right)
  23. mright.MeshId = leg1msh
  24. mright.TextureId = leg1txt
  25. mright.Offset = Vector3.new(0.15, 0, 0)
  26.  
  27. mtorso = Instance.new("SpecialMesh",torso)
  28. mtorso.MeshId = torsomsh
  29. mtorso.TextureId = torsotxt
  30. mtorso.Offset = Vector3.new(0, -0.25, 0)
  31.  
  32. mhed = Instance.new("SpecialMesh",head)
  33. mhed.MeshId = hedmsh
  34. mhed.TextureId = hedtxt
  35. mhed.Offset = Vector3.new(0, -0.35, 0)
  36.  
  37. char["Right Arm"].Transparency = 1
  38. char["Left Arm"].Transparency = 1
  39. head.face.Transparency = 1
  40.  
  41. chatt = false
  42.  
  43. plr.Chatted:connect(function(msg)
  44. if chatt == false then
  45. chatt = true
  46. local sur = Instance.new("BillboardGui", head)
  47. sur.Name = "Billboard"
  48. sur.Adornee = head
  49. sur.Size = UDim2.new(10, 0, 5, 0)
  50. sur.StudsOffset = Vector3.new(0, 6, 0)
  51. local text = Instance.new("TextLabel", sur)
  52. text.Text = "* " ..msg
  53. text.Size = UDim2.new(1, 0, 1, 0)
  54. text.TextScaled = true
  55. text.BackgroundTransparency = 0
  56. text.BackgroundColor3 = Color3.new(0, 0, 0)
  57. text.BorderColor3 = Color3.new(255, 255, 255)
  58. text.BorderSizePixel = 3
  59. text.Font = Enum.Font.Arcade
  60. text.TextColor3 = Color3.new(255, 255, 255)
  61. text.TextStrokeTransparency = 1
  62. wait(3)
  63. text:Destroy()
  64. sur:Destroy()
  65. chatt = false
  66. end
  67. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement