im triying to make a respawn button to respawn cars but when you go in test and you dont press the button there gone local respawnCarsBlock = game.Workspace.RespawnCarsBlock function respawnCars() print("I am going to respawn now.") end for _, object in pairs(game.Workspace:GetChildren()) do print(object.Name) if object.Name == "Car" then print("This is a Car! We need to destroy it") object:Destroy() end end respawnCarsBlock.Touched:connect(respawnCars) and its in server scriptstorege plzz help |