Godot Version
4
Question
how do I fix Expected end of statement after expression, found “Literal” instead
func dash():
if Input.is_action_just_pressed("roll") and canDash:
speed = dashDirection.normalized() * 2000
canDash = false
dashing = true
await get_tree().create_timer(1)"timer"
dashing = false
canDash = true