Thanks for looking at the post!
So I was making a sword for my game and I wanted the sword to have a prompt to pick it up and I put the sword into startergear but is it possible to make it so when I next join the game I still have the sword?
Heres the script and a screenshot of the tool placement:(This is the handler script)
local tool = script.Parent.Parent.Parent
local prompt = script.Parent
prompt.Triggered:Connect(function(player)
local char = workspace:WaitForChild(player.Name)
local human = char:WaitForChild("Humanoid")
prompt.Enabled = false
local tool2 = tool:Clone()
tool2.Parent = game.StarterPack
local tool3 = tool:Clone()
tool3.Parent = player.StarterGear
human:EquipTool(tool)
end)
Any help is appreciated