I can't seem to find what wrong with the script and the output isn't coming up with errors.
mode = game.Workspace:GetChildren() for i,v in pairs (mode) do if v.Parent:IsA("Part") then v.Parent.Name = "Part" .. v print(v.Name) wait(1) end end
If I could help I'll be grateful.
You are renaming Workspace (attempting) rather than the part)
mode = game.Workspace:GetChildren() for i,v in pairs (mode) do if v:IsA("Part") then v.Name = "Part" print(v.Name) wait(1) end end