I’m trying to make a title system where it triggers a remote event and changes the title
I’m getting the error “Unable to assign property Text. string expected, got Instance” the error occurs on the line “rank.Text = name” in the server script
I’ve looked for solutions on the devforum and YouTube but nothing has worked
Whenever you fire a remote-event from a client that client’s player instance is the first element in the argument list that gets sent over to the server; allowing the server to know which user fired it. All other arguments that were sent from the client are subsequent to the sender (on the server side) This is a common mistake, and I urge you to read the documentation related to the client server model so you gain a better understanding of what is going on, and why things may not work as you expect them to.
Therefore you should restructure your event connection handler to be something like this…