reloading the scene stops anythink

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Rabbitnap
func _on_Player_respawn():
	queue_free()
	get_tree().change_scene("res://Assets/Scenes/DeathScreen.tscn")


func _on_Player_respawn():
	get_tree().change_scene("res://Assets/Scenes/DeathScreen.tscn")


func _on_Player_respawn():
    get_tree().reload_current_scene

it doesnt matter how i try it, the scane loads but my player and everything else stops working and “Frezzes”

It’s impossible to help you based on the code you’ve provided. Consider uploading an example project or a more detailed description of what you’re trying to do, what’s not working and what’s happening instead including the look of your scene tree.

njamster | 2020-08-02 14:02

Does it show you any errors? Did you accidentally pause the game somewhere with get_tree().paused = true?

rahsut | 2020-08-20 21:58