using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RPGCreationKit;

namespace RPGCreationKit.Game.ResultScripts
{
    public class #SCRIPTNAME# : ResultScript
    {
        void Start()
        {
            // Your code here


            // Destroy the script
            Destroy(this);
        }
    }
}