I do not understand what the error is...
local info = game.ReplicatedStorage.musicEvents.getSong:InvokeServer() if info ~= nil then script.Parent.TextLabel.Text = "Now Playing: " .. info end
The info being returned by your InvokeServer is a table. In order to use info combined with "Now Playing:", you need to have it a string. When you're returning your info, set that to be a string. If info is return {"song name"}
, change that to return {name="song name"}
and use info.name
to combine with "Now Playing:"