Attempt to call a string value error help

I am running this code (all variables are working) and I get the error attempt to call a string value and I have no idea what to do

print('https://api.rankblox.tk/promote?apiKey='.. tostring(ApiKey.Value) '&Username='.. tostring(username) '&RankerId='.. tostring(plr.UserId))

You omitted the concatenation operator (..) after the tostring syntax which makes it parsed as a function call.

1 Like

What do I have to do to make it work? I have variables I want to put into a post request to an api

For anyone looking at the to solve a problem put … after