как сделать Giver - кнопку (тутор по Roblox Studio)

Published: 21 February 2023
on channel: LINEX
1,312
35

Привет! В этом видео я рассказываю как сделать гивер кнопку с выдачей оружия!
Скрипт из видео:local tool = game.ReplicatedStorage.Название предмета
local giver = script.Parent
local canGive = false

local function GiveTool (player)
if canGive == false then
canGive = true
local clone = tool:Clone()
clone.Parent = player.Backpack
wait(1)
canGive = false
end
end

giver.ClickDetector.MouseClick:Connect(function(player)
GiveTool(player)
end)


Watch video как сделать Giver - кнопку (тутор по Roblox Studio) online without registration, duration hours minute second in high quality. This video was added by user LINEX 21 February 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 1,312 once and liked it 35 people.