Need Part Respawner Script For New Project

Hello Everyone!

Hi everyone thank you for reading this topic, I have a upcoming project to test peoples quality & graphics with a new project of mine, I have no knowledge of scripting so I need some help with a Part Respawner Script

  1. What do I want to achieve? I want to achieve being the best roblox developer so people can like the work I have been doing for a very long time.

  2. What is my issue? My issue is that I have been trying to find people to help me with a script for my game but sadly no one has the time cause people are busy with there other development games on roblox.

  3. What solutions have I tried so far? I have been asking people to help me, watching Youtube videos but videos that are old the scripts from roblox are too, & I have tried Developer Hub searching for Part Respawner Script but I had 0 results of what I was looking for.

I have also looked for some scripts by others if they had to deal with this on devforums, still haven’t found anything close to what i’m searching for.

Thank you for reading & hopefully some help with come by to me soon, Have A Great Day Developers! :smile:

1 Like

How do you want to respawn the part? Here’s some questions to consider before asking a question like this:

  • Do you want to clone an already existing part into workspace?
  • Does the part have any properties you want to change?
  • Does the part despawn in your game?
1 Like

I just want the part to keep cloning itself over & over

That can cause serious lag, what purpose does this have in your game?

Im trying to make a game like Lag Test 2020, heres the game link I want to make something like this but different https://www.roblox.com/games/4778989425/Lag-Test-2020

Alright, it’s quite simple. Also, what do you mean by “different”?

local PartFolder = Instance.new("Folder")
PartFolder.Parent = workspace
PartFolder.Name = "Parts"

while true do
	local Part = Instance.new("Part")
	Part.Parent = PartFolder	

	wait(1)
end
2 Likes

Thank you so much for your help!

Oh & what I mean is that I will just build new stuff into the game.