ADVERTISEMENTREMOVE ADS
OP 2025
216 views
Script Preview
Description
Yes, stupid game, i was testing, and i found that
Features:
- Get & Drop Items Laggy
ADVERTISEMENTREMOVE ADS
25 Lines • 691 Bytes
-- Stupid Game...
--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
local Players = game:GetService("Players")
local Claim = game:GetService("ReplicatedStorage"):WaitForChild("ClaimGearEvent")
local player = Players.LocalPlayer
local backpack = player:WaitForChild("Backpack")
-- I used 800 items but u can put the amount as u want
for i = 1, 800 do
Claim:FireServer()
for _, tool in ipairs(backpack:GetChildren()) do
if tool:IsA("Tool") then
tool.Parent = workspace
tool.Handle.CFrame = player.Character.HumanoidRootPart.CFrame
end
end
task.wait(0.05)
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS





Comments