Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I assume you used "SpecialSpawnScript" in your code earlier and then reassigned it for function "Test". That is the reason it didn't work
You can assign any of your function to these prototype function holders. What I learned testing your code is that when once you assign your function to prototype function holder you can't reassign another your function to the same prototype function holder. Because that will cause that error: Parameter Type Mismatch
So simply creating new function holders in prototype for every your function should be enough to avoid this error. Didn't test extensively. Enough to know for me