Why am I getting the following error:
Expected ‘:’ not ‘.’ calling member function LoadAsset
Code:
local model = game.GetService(game, "InsertService")['LoadAsset'](257489726)
LoadAsset is a function of GetService, it would be similar to doing:
self['funcname']('str') or self.funcname('str') or am I missing something here.
Anyway, how would I achieve what I want to do so that I can call the property of InsertService as a string, not as game:GetService("InsertService"):LoadAsset(257489726)
Any ideas why this fails?
