DemoBuild Closest Build Wins Mobile Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts a popular scripting and programming language.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Script Code
local fz = Instance.new("Folder") fz.Name = "Cloned" fz.Parent = game.Workspace game.Workspace.DescendantRemoving:Connect(function(v) if v.Parent and v.Parent.Name == "DemoBuild" and v.Name:lower() == "block" then local c = v:Clone() c.Name = v.Name .. "_Cloned" c.Parent = fz c.Transparency = 0.6 end end) game.Workspace.DescendantAdded:Connect(function(v) if v.Parent and v.Parent.Name == "DemoBuild" and v.Name:lower() == "block" then for _, m in pairs(fz:GetChildren()) do if m.Name:match("_Cloned") then m:Destroy() end end end end)