Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. --//=================================\\
  2. --|| SOME TAG EDIT
  3. --\\=================================//
  4.  
  5. m = game.Players.LocalPlayer
  6. char = m.Character
  7. local txt = Instance.new("BillboardGui", char)
  8. txt.Adornee = char.Head
  9. txt.Name = "_status"
  10. txt.Size = UDim2.new(2, 0, 1.2, 0)
  11. txt.StudsOffset = Vector3.new(-9, 8, 0)
  12. local text = Instance.new("TextLabel", txt)
  13. text.Size = UDim2.new(10, 0, 7, 0)
  14. text.FontSize = "Size24"
  15. text.TextScaled = true
  16. text.TextTransparency = 0
  17. text.BackgroundTransparency = 1
  18. text.TextTransparency = 0
  19. text.TextStrokeTransparency = 0
  20. text.Font = "Bodoni"
  21. text.TextStrokeColor3 = Color3.new(0/255, 255/255, 125/255)
  22. v = Instance.new("Part")
  23. v.Name = "ColorBrick"
  24. v.Parent = m.Character
  25. v.FormFactor = "Symmetric"
  26. v.Anchored = true
  27. v.CanCollide = false
  28. v.BottomSurface = "Smooth"
  29. v.TopSurface = "Smooth"
  30. v.Size = Vector3.new(10, 5, 3)
  31. v.Transparency = 1
  32. v.CFrame = char.Torso.CFrame
  33. v.BrickColor = BrickColor.new("Really black")
  34. v.Transparency = 1
  35. v.Shape = "Block"
  36. spawn(function()
  37. local TweenService = game:GetService("TweenService")
  38. local Colours = {Color3.fromRGB(0,255,255),Color3.fromRGB(0,255,200),Color3.fromRGB(0,100,165),Color3.fromRGB(0,255,135),Color3.fromRGB(0,255,110),Color3.fromRGB(0,255,95),Color3.fromRGB(0,255,80),Color3.fromRGB(0,255,45)}
  39. local Int = 0
  40. while wait(0.5) do
  41. if Int == #Colours then Int = 0 end
  42. Int = Int+1
  43. TweenService:Create(text,TweenInfo.new(1),{TextColor3 = Colours[Int]}):Play()
  44. end
  45. end)
  46. text.Text = "Dreaming De-ku"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement