Attempt to concatenate string with Instance

I do not understand, it says at line 22 attempt to concatenate string with Instance which it isn’t, the message I’m sending is a string however it keeps telling me I’m concatenating a string with Instance.

Don’t concetenate string with instance, the error is absolute. It is an instance.
If you may, please show the :FireServer() part of script so we can deduct what msg might be.

image

image

When using :FireServer() the LocalPlayer is passed as the first argument. So while your function is wanting (PlayerInstance, MessageString) it’s getting (PlayerInstance, PlayerInstance, MessageString) leading msg to = the player instance. Instead use :FireServer(Opt1). Pretty sure that’s what’s causing it.

I forgot about that, that’s def what the problem is. Ty

1 Like