I have models in my game (plots) named like so
100_Player1
102_Player2
etc
Now I’m trying to reference these plots from other scripts by checking for the players name in the model.
local playersPlot = plots:WaitForChild(player.Name)
I’m not sure which string manipulation method I should be using. To also note, I do NOT want to put this into a loop of any kind or anything. I would prefer it to be on the 1 line, simple and clean.