-- Используйте событие Click вместо MouseButton1Click
script.Parent.MouseButton1Click:Connect(function()
-- Получите игрока
local player = game.Players.LocalPlayer
if not player or not player.Character or not player.Character:FindFirstChild("HumanoidRootPart") then
warn("Player or HumanoidRootPart not found")
return
end
-- Получите объект из ServerStorage
local Mod = game.ServerStorage:FindFirstChild("Gman")
if not Mod then
warn("Gman not found in ServerStorage")
return
end
-- Клонируйте и поместите объект в Workspace
local Gman = Mod:Clone()
Gman.Parent = workspace
-- Переместите объект перед игроком
Gman.Position = player.Character.HumanoidRootPart.Position + Vector3.new(0, 0, 20)
end)
-- Обновите отображение SpawnName при наведении курсора
script.Parent.MouseEnter:Connect(function()
script.Parent.SpawnName.Visible = true
end)
script.Parent.MouseLeave:Connect(function()
script.Parent.SpawnName.Visible = false
end)
script.Parent.MouseButton1Click:connect(function(GetCar)
Mod = game.ServerStorage.Gman
local Gman = Mod:clone()
Gman.Parent = workspace
Gman:MoveTo(player.Character.Torso.Position + Vector3.new (0, 0, 20))
end)
script.Parent.MouseEnter:Connect(function()
script.Parent.SpawnName.Visible = true
script.Parent.MouseLeave:Connect(function()
script.Parent.SpawnName.Visible= false
end)
end)