local Tool = script.Parent
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Gui = ReplicatedStorage.Gui.OverHead
Tool.Equipped:Connect(function(Player)
local NewGui = Gui:Clone()
NewGui.Parent = Tool.Card
local ActualGui = Tool.Card:WaitForChild("OverHead")
ActualGui.Nick.Text = Player.Name
ActualGui.Team.Text = Player.Team.Name
ActualGui.TeamColor = Player.TeamColor
end)
Tool.Unequipped:Connect(function()
local DeleteTool = Tool.Card:FindFirstChild("OverHead"):Destroy()
end)
I am trying to get the: Name, Team Name and its Color.
Thus, completing my ID. I know I could do this with LocalScript but it would only show the user themselves and not others and I want everyone to be able to see it.
A note: I might not see the answers until tomorrow for personal reasons.
Some Images:


Afterall, its just gives a error and doesnt work properly.
