Advertisement
avigeo

Untitled

May 31st, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 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 sound = Instance.new("Sound", head)
  8. sound.SongId = "http://www.roblox.com/asset/?id=1165378418"
  9. sound:Play()
  10. local gui = Instance.new("BillboardGui", head)
  11. gui.StudsOffset = Vector3.new(0,2,0)
  12. gui.Size = UDim2.new(100,0,100,0)
  13. local text = Instance.new("TextLabel", gui)
  14. text.Size = UDim2.new(1,0,1,0)
  15. text.Font = "Legacy"
  16. text.FontSize = 10
  17. text.BackgroundTransparency = 1
  18. text.BorderSizePixel = 1
  19. text.Text = "Chill"
  20. while true do
  21. wait(0.1)
  22. text.TextColor3 = Color3.new(255,0,0)
  23. wait(0.1)
  24. text.TextColor3 = Color3.new(0,255,0)
  25. wait(0.1)
  26. text.TextColor3 = Color3.new(0,0,255)
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement