Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Player=game:GetService("Players").LocalPlayer
- -----------------------------------------------------------------
- local p = game.Players.LocalPlayer
- local char = p.Character
- local mouse = p:GetMouse()
- local larm = char["Left Arm"]
- local rarm = char["Right Arm"]
- local lleg = char["Left Leg"]
- local rleg = char["Right Leg"]
- local hed = char.Head
- local torso = char.Torso
- z = Instance.new("Sound", torso)
- z.SoundId = "rbxassetid://885996042" -- Put Music ID Here.
- z.Looped = true
- z.Pitch = 1
- z.Volume = 10
- wait(.1)
- z:Play()
- local txt = Instance.new("BillboardGui", char)
- txt.Adornee = char.Head
- txt.Name = "Name"
- txt.Size = UDim2.new(2, 0, 1.2, 0)
- txt.StudsOffset = Vector3.new(-9, 8, 0)
- local text = Instance.new("TextLabel", txt)
- text.Size = UDim2.new(10, 0, 7, 0)
- text.FontSize = "Size24"
- text.TextScaled = true
- text.TextTransparency = 0
- text.BackgroundTransparency = 1
- text.TextTransparency = 0
- text.TextStrokeTransparency = 0
- text.Font = "Arcade"
- text.TextStrokeColor3 = Color3.new(0, 0, 0)
- text.Text = "Fighter"
- v = Instance.new("Part")
- v.Name = "ColorBrick"
- v.Parent = Character
- v.FormFactor = "Symmetric"
- v.Anchored = true
- v.CanCollide = false
- v.BottomSurface = "Smooth"
- v.TopSurface = "Smooth"
- v.Size = Vector3.new(10, 5, 3)
- v.Transparency = 1
- v.CFrame = char.Torso.CFrame
- v.BrickColor = BrickColor.new("Really black")
- v.Transparency = 1
- spawn(function()
- TweenService = game:GetService("TweenService")
- Colours = {Color3.fromRGB(0,100,200),Color3.fromRGB(4, 175, 236)}
- Int = 0
- while wait(2) do
- if Int == #Colours then Int = 0 end
- Int = Int+1
- TweenService:Create(text,TweenInfo.new(1),{TextColor3 = Colours[Int]}):Play()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement