-3

for the game I'm working on I had my groups write multiple scripts that I would be implementing into the project. Each script would contain the dialogue for the game. It was a rushed solution and very ugly, but it worked up until the scripts needed to be randomized at the start. I'm hoping anyone can tell me what's going wrong with my incredibly scuffed implementation.

This is the error I'm getting when I run the code. enter image description here

Also I'm sorry if this is poorly formatted, it's my first time using stackoverflow and I'm on a time crunch to finish this

using System;
using System.Collections;
using System.Collections.Generic;
using Unity.Collections.LowLevel.Unsafe;
using Unity.VisualScripting;
using UnityEditor;
using UnityEngine;

public class UserRandomizer : MonoBehaviour
{
    //The scripts in this list are set in engine
    public List<MonoScript> scripts = new List<MonoScript>();

    public GameObject User1;
    public GameObject User2;
    public GameObject User3;

    public int number;
    
    

    // Start is called before the first frame update
    void Start()
    {
        User1 = GameObject.Find("User1");
        User2 = GameObject.Find("User2");
        User3 = GameObject.Find("User3");

        number = UnityEngine.Random.Range(0, scripts.Count - 1);
        User1.AddComponent(scripts[number].GetType());
        scripts.RemoveAt(number);

        number = UnityEngine.Random.Range(0, scripts.Count - 1);
        User2.AddComponent(scripts[number].GetType());
        scripts.RemoveAt(number);

        number = UnityEngine.Random.Range(0, scripts.Count - 1);
        User3.AddComponent(scripts[number].GetType());
        scripts.RemoveAt(number);
    }

    
}
1
  • Unfortunately whatever MonoScript is, you need to show that not this Commented Mar 20 at 22:13

1 Answer 1

2

So I figured out what I was doing wrong.

I was using .GetType() when I needed to be using .GetClass()

I spent an hour searching and minutes after posting this I found a thread with the answer.

https://discussions.unity.com/t/add-script-component-to-game-object-from-c/590211 Heres the link I suppose

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.