i have this in my server script:
local name = username .. "'s Server"
local newServer = serverTemplate:Clone()
newServer.Username.Value = name
end
remoteEvent.OnServerEvent:Connect(addServer)```
and this is the local script that passes username:
```script.Parent.MouseButton1Click:Connect(function()
local username = game.Players.LocalPlayer.Name
remoteEvent:FireServer(username)
if not remoteEvent then
print("RemoteEvent not found on the client!")
return
end
end)```
why would i be getting the error `ServerScriptService.createLobbyScript:7: attempt to concatenate Instance with string - Server - createLobbyScript:7` when trying to do this?