local Part = script.parent
Part.Touched:Connect(function(Hit)
if Hit.Parent:FindFirstChild("Humanoid") then
local Player = game.Players:GetPlayerFromCharacter(Hit.Parent)
local TextLabel = Player.PlayerGui.ScreenGui.TextLabel
TextLabel.Text = tostring(TextLabel.Text) + 1
end
end)
P.S: сам скрипт я +- знаю, но как обратиться к этом тексту?