Advertisement
avigeo

Untitled

May 31st, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. --Overhead Gui made by Avigeo
  2.  
  3. wait(1)
  4. local plr = game.Players.LocalPlayer
  5. local char = plr.Character
  6. local head = char.Head
  7. local gui = Instance.new("BillboardGui", head)
  8. gui.StudsOffset = Vector3.new(0,2,0)
  9. gui.Size = UDim2.new(100,0,100,0)
  10. local text = Instance.new("TextLabel", gui)
  11. text.Size = UDim2.new(1,0,1,0)
  12. text.Font = "Legacy"
  13. text.FontSize = 10
  14. text.BackgroundTransparency = 1
  15. text.BorderSizePixel = 1
  16. text.Text = "Chill"
  17. local sound = Instance.new("Sound", game.Workspace)
  18. sound.SoundId = "http://www.roblox.com/asset/?id=1165378418"
  19. sound:Play()
  20. sound.Volume = 10
  21. while true do
  22. wait(0.1)
  23. text.TextColor3 = Color3.new(255,0,0)
  24. wait(0.1)
  25. text.TextColor3 = Color3.new(0,255,0)
  26. wait(0.1)
  27. text.TextColor3 = Color3.new(0,0,255)
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement