Giving myself or another player an item only using scripting

Hello, I was wondering how I would give myself or another player a tool only using scripts?

1 Like

You clone a tool and parent the cloned tool to a player’s backpack

local tool = --yourtool
local player = --define your player

local newtool = tool:Clone()
newtool.Parent = player.Backpack