Advertisement
Shocker130000

title

Apr 27th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. Player=game:GetService("Players").LocalPlayer
  2. -----------------------------------------------------------------
  3. local p = game.Players.LocalPlayer
  4. local char = p.Character
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. z = Instance.new("Sound", torso)
  13. z.SoundId = "rbxassetid://885996042" -- Put Music ID Here.
  14. z.Looped = true
  15. z.Pitch = 1
  16. z.Volume = 10
  17. wait(.1)
  18. z:Play()
  19. local txt = Instance.new("BillboardGui", char)
  20. txt.Adornee = char.Head
  21. txt.Name = "Name"
  22. txt.Size = UDim2.new(2, 0, 1.2, 0)
  23. txt.StudsOffset = Vector3.new(-9, 8, 0)
  24. local text = Instance.new("TextLabel", txt)
  25. text.Size = UDim2.new(10, 0, 7, 0)
  26. text.FontSize = "Size24"
  27. text.TextScaled = true
  28. text.TextTransparency = 0
  29. text.BackgroundTransparency = 1
  30. text.TextTransparency = 0
  31. text.TextStrokeTransparency = 0
  32. text.Font = "Arcade"
  33. text.TextStrokeColor3 = Color3.new(0, 0, 0)
  34. text.Text = "Fighter"
  35. v = Instance.new("Part")
  36. v.Name = "ColorBrick"
  37. v.Parent = Character
  38. v.FormFactor = "Symmetric"
  39. v.Anchored = true
  40. v.CanCollide = false
  41. v.BottomSurface = "Smooth"
  42. v.TopSurface = "Smooth"
  43. v.Size = Vector3.new(10, 5, 3)
  44. v.Transparency = 1
  45. v.CFrame = char.Torso.CFrame
  46. v.BrickColor = BrickColor.new("Really black")
  47. v.Transparency = 1
  48. spawn(function()
  49. TweenService = game:GetService("TweenService")
  50. Colours = {Color3.fromRGB(0,100,200),Color3.fromRGB(4, 175, 236)}
  51. Int = 0
  52. while wait(2) do
  53. if Int == #Colours then Int = 0 end
  54. Int = Int+1
  55. TweenService:Create(text,TweenInfo.new(1),{TextColor3 = Colours[Int]}):Play()
  56. end
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement