Hello! I'm making a game and I need a script that you join the server and you start with a tool in your hand (equipped) How could I do that? Thanks.
PD: The tool is in ServerStorage.
local tool = game.ServerStorage["TOOL NAME"] game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(char) char:WaitForChild("Humanoid"):EquipTool(tool) end) end)
Closed as Not Constructive by RubenKan
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?