MADE BY Hestern#7753
FEATURE:
- Sets all blocks being dropped to the max possible block value (completely destroys the leaderboards)
- .
- https://www.roblox.com/games/8563844698/Drop-The-Number-BIG-SALE
SCRIPT:
local r = game:GetService("ReplicatedStorage")
local b = r:WaitForChild("Cubes"):WaitForChild("1048576")
local c = b:GetChildren()
workspace.ChildAdded:Connect(function(p)
if p.ClassName ~= "Part" then
return
end
p:ClearAllChildren()
for i, v in pairs(c) do
local n = v:Clone()
n.Parent = p
end
p.Name = b.Name
p.BrickColor = b.BrickColor
end)