How do I make my Damage Indicator color the same color as the team the Player is in?
Asked by
3 years ago Edited 3 years ago
How do I make my Damage Indicator color the same color as the team the Player is in?
01 | function Track(Humanoid) |
02 | local Last = Humanoid.Health |
03 | local function HealthChanged(Left) |
05 | local Part = Humanoid.Parent:FindFirstChildWhichIsA( "BasePart" ) |
07 | local EffectPart = Instance.new( "Part" ,script) |
08 | EffectPart.Name = "Effect" |
09 | EffectPart.Size = Vector 3. new( 0 , 0 , 0 ) |
10 | EffectPart.CFrame = Part.CFrame + Vector 3. new(math.random(- 5 , 5 ),math.random( 3 , 5 ),math.random(- 5 , 5 )) |
11 | EffectPart.Anchored = true |
12 | EffectPart.CanCollide = false |
13 | EffectPart.Velocity = Vector 3. new( 0 , 50 * (game.Workspace.Gravity / 196.2 ), 0 ) |
14 | EffectPart.Transparency = 1 |
15 | local BillboardGui = Instance.new( "BillboardGui" ) |
16 | BillboardGui.Size = UDim 2. new( 3 , 0 , 3 , 0 ) |
17 | BillboardGui.Adornee = EffectPart |
18 | BillboardGui.AlwaysOnTop = true |
19 | local TextLabel = Instance.new( "TextLabel" ) |
20 | TextLabel.BackgroundTransparency = 1 |
21 | TextLabel.TextStrokeTransparency = 0.8 |
22 | TextLabel.Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
23 | TextLabel.Text = math.floor(Last - Left) |
24 | local Color = Color 3. new( 1 , 0.4 , 0.15 ) |
25 | local Player = game.Players:GetPlayerFromCharacter(Humanoid.Parent) |
26 | local BodyColor = Humanoid.Parent:FindFirstChildWhichIsA( "BodyColors" ) |
27 | local Torso = Humanoid.Parent:FindFirstChild( "Torso" ) or Humanoid.Parent:FindFirstChild( "UpperTorso" ) |
28 | if Player and not Player.Neutral then |
29 | Color = Player.TeamColor.Color |
31 | Color = BodyColor.TorsoColor 3 |
32 | elseif Torso and Torso:IsA( "BasePart" ) then |
35 | TextLabel.TextColor 3 = Color |
36 | TextLabel.TextScaled = false |
37 | TextLabel.Font = Enum.Font.SourceSans |
38 | TextLabel.Parent = BillboardGui |
39 | BillboardGui.Parent = EffectPart |
43 | EffectPart.Anchored = false |
44 | EffectPart.CanCollide = true |
55 | Humanoid.HealthChanged:connect(HealthChanged) |
58 | local D = game.Workspace:GetDescendants() |
60 | if D [ i ] :IsA( "Humanoid" ) then |
65 | if item:IsA( "Humanoid" ) then |
69 | game.Workspace.DescendantAdded:connect(Added) |