Is there a way to get the users name in the BuildCPanel function?
function TOOL.BuildCPanel(Panel)
end
Ive tried LocalPlayer, ive tried self:GetOwner, ive even tried tool:GetOwner. I don’t know what im doing, i cant find any way.
Ive even created a variable outside of it, but for some reason its value is nil when its in BuildCpanel, but not nil when I do this
function TOOL:Think()
PlayerName = self:GetOwner():GetName()
print(PlayerName)
end