here's a sample on how you can do this
local db = false
script.Parent.MouseButton1Up:Connect(function()
if db == false then
db = true
for i,v in game:GetService("ReplicatedStorage").WeaponsFolder:GetChildren() do
v:Clone().Parent = game.Players.LocalPlayer.Backpack
end
task.wait(120)
db = false
end
end)
** You are now Level 6! **