Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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?

01function Track(Humanoid)
02    local Last = Humanoid.Health
03    local function HealthChanged(Left)
04        if Left < Last then
05            local Part = Humanoid.Parent:FindFirstChildWhichIsA("BasePart")
06            if Part then
07                local EffectPart = Instance.new("Part",script)
08                EffectPart.Name = "Effect"
09                EffectPart.Size = Vector3.new(0, 0, 0)
10                EffectPart.CFrame = Part.CFrame + Vector3.new(math.random(-5,5),math.random(3,5),math.random(-5,5))
11                EffectPart.Anchored = true
12                EffectPart.CanCollide = false
13                EffectPart.Velocity = Vector3.new(0,50 * (game.Workspace.Gravity / 196.2),0)
14                EffectPart.Transparency = 1
15                local BillboardGui = Instance.new("BillboardGui")
View all 69 lines...

1 answer

Log in to vote
1
Answered by
Xyternal 247 Moderation Voter
3 years ago

So in the code I'm posting, in a team or not. You can modify the code to fit your needs

01local teams = game:GetService("Teams")
02local function checkPlayerTeam(player)
03    if player.Team == "YouTeam" then
04        print("You are in this team")
05    else
06        print("you are not in new team")
07    end
08end
09 
10game.Players.PlayerAdded:Connect(checkPlayerTeam)
0
Thank you. robloxtitanic584 92 — 3y
0
welcome Xyternal 247 — 3y
Ad

Answer this question