Рустам Абдрашитов
Мыслитель
(8566)
1 месяц назад
local item = script.Parent
local gui = game.Players.LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("YourGuiName") -- замените на имя вашего GUI
item.Touched:Connect(function(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player then
gui.Enabled = true
end
end)