RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a block eating simulator script that bring all parts to the character."
local player = game.Players.LocalPlayer local character = player.Character local function eatPart(part) part.CFrame = character.HumanoidRootPart.CFrame wait(1) part:Destroy() end game.Workspace.ChildAdded:Connect(function(part) if part:IsA("BasePart") then eatPart(part) end end)