RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a sword equip system"
-- local script local player = game.Players.LocalPlayer local sword = script.Parent local function equipSword() local tool = Instance.new("Tool", player.Backpack) tool.Name = "Sword" tool.RequiresHandle = false tool.TextureId = "rbxassetid://YourTextureIDHere" tool.GripForward = Vector3.new(0, 0, -1) tool.GripRight = Vector3.new(1, 0, 0) tool.GripUp = Vector3.new(0, 1, 0) tool.Handle = sword player.Character:WaitForChild("Humanoid"):EquipTool(tool) end script.Parent.Touched:Connect(equipSword)