Advertisement
Mr-Shadow_Cat

Another nametag

Nov 7th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. local nametag = Instance.new("BillboardGui",Character.Head)
  2. nametag.StudsOffset = Vector3.new(0,2,0)
  3. nametag.Adornee = Character.Head
  4. nametag.Size = UDim2.new(0,200,0,50)
  5.  
  6. local text = Instance.new("TextLabel",nametag)
  7. text.Size = UDim2.new(0,200,0,50)
  8. text.BackgroundTransparency = 1
  9. text.Text = "Mr.Shadow Cat"
  10. text.TextColor3 = Color3.new(255,255,255)
  11. text.TextStrokeColor3 = Color3.new(0,0,0)
  12. text.Font = Enum.Font.Fantasy
  13. text.TextScaled = true
  14. text.TextStrokeTransparency = 0
  15. coroutine.wrap(function()
  16. while wait() do
  17. wait(3)
  18. text.Text = "No you can't have my edits"
  19. wait(1)
  20. text.Text = "Mr.Shadow Cat";
  21. wait(2)
  22. local str = ""
  23. for i = 1, math.random(3,25) do
  24. str = str..string.char(math.random(65,122))
  25. end
  26. text.Text = str
  27. wait()
  28. str = ""
  29. for i = 1, math.random(12,25) do
  30. str = str..string.char(math.random(48,122))
  31. end
  32. wait()
  33. text.Text = str
  34. wait()
  35. text.Text = "Mr.Shadow Cat";
  36. wait(1)
  37. text.Text = "SHUT UP"
  38. wait()
  39. text.Text = "What ya want?"
  40. wait(1)
  41. text.Text = "Mr.Shadow Cat";
  42. wait(2)
  43. text.Text = "You made me do this.";
  44. wait()
  45. text.Text = ":3";
  46. wait(1)
  47. for i = 1, math.random(12,25) do
  48. str = str..string.char(math.random(48,57))
  49. end
  50. text.Text = str
  51. wait()
  52. text.Text = "Mr.Shadow Cat";
  53. wait(2)
  54. end
  55. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement