Advertisement
Roblox_Xploits

hi

Mar 30th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.  
  3. a = Instance.new("BillboardGui", player.Character:FindFirstChild("Head"))
  4. a.ExtentsOffset = Vector3.new(1,0,0)
  5. a.Size = UDim2.new(1,0,1,0)
  6. a.AlwaysOnTop = true
  7. a.Enabled = true
  8. b = Instance.new("ImageLabel", a)
  9. b.BackgroundTransparency = 1
  10. b.BorderSizePixel = 0
  11. b.Image = "http://www.roblox.com/asset/?id=243503908"
  12. b.ImageTransparency = 0.1
  13. b.Position = UDim2.new(0.2,0,0.05,0)
  14. b.Size = UDim2.new(5,0,1.2,0)
  15. b.Visible = false
  16. c = Instance.new("TextLabel", b)
  17. c.BackgroundTransparency = 1
  18. c.BorderSizePixel = 0
  19. c.Position = UDim2.new(0.1,0,0)
  20. c.Size = UDim2.new(0.5,0,0.4,0)
  21. c.ZIndex = 2
  22. c.Font = "SourceSans"
  23. c.FontSize = "Size18"
  24. c.Text = player.Name..":"
  25. c.TextColor3 = Color3.new(255/255,255/255,255/255)
  26. c.TextXAlignment = "Left"
  27. c.TextYAlignment = "Center"
  28. d = Instance.new("TextLabel", b)
  29. d.BackgroundTransparency = 1
  30. d.BorderSizePixel = 0
  31. d.Position = UDim2.new(0.1,0,0.4,0)
  32. d.Size = UDim2.new(0.9,0,0.6,0)
  33. d.ZIndex = 2
  34. d.Font = "SourceSans"
  35. d.FontSize = "Size18"
  36. d.Text = ""
  37. d.TextColor3 = Color3.new(255/255,255/255,255/255)
  38. d.TextXAlignment = "Left"
  39. d.TextYAlignment = "Top"
  40. d.TextWrapped = true
  41.  
  42.  
  43. function message(message)
  44. repeat wait() until chatted == false
  45. chatted = true
  46. b.Visible = true
  47. if string.find(message,"-r") ~=nil then
  48. for i=1,string.len(message),1 do
  49. d.TextColor3 = Color3.new(math.random(1,255)/255,math.random(1,255)/255,math.random(1,255)/255)
  50. d.Text = string.sub(message,1,i)
  51. wait(0.1)
  52. end
  53. elseif string.find(message,"-b") ~=nil then
  54. for i=1,string.len(message),1 do
  55. d.Text = string.sub(string.byte(message),1,i)
  56. wait(0.05)
  57. end
  58. else
  59. for i=1,string.len(message),1 do
  60. d.Text = string.sub(message,1,i)
  61. wait(0.05)
  62. end
  63. end
  64. wait(2)
  65. if string.find(message,"-t") ~=nil then
  66. b.Visible = true
  67. else
  68. b.Visible = false
  69. d.TextColor3 = Color3.new(255/255,255/255,255/255)
  70. end
  71. chatted = false
  72. end
  73.  
  74.  
  75.  
  76.  
  77. player.Chatted:connect(message)
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement