RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script for me get any gear i want by just putting the id of the gear"
-- local script local gearId = script.Parent.GearId local player = game.Players.LocalPlayer local function getGear() local gear = game:GetService("InsertService"):LoadAsset(gearId.Value) gear:Clone().Parent = player.Backpack end script.Parent.MouseButton1Click:Connect(getGear)