of     1   

helloburp
#185597767Friday, March 18, 2016 10:02 PM GMT

I'm trying to make a script which lets you put in a username and spit out a userid (might utilize this for universe-based following or something else entirely) Is there a function I can call that will return a string containing the name, or is it a little more complicated?
UFAIL2
#185597815Friday, March 18, 2016 10:03 PM GMT

helloburp
#185597877Friday, March 18, 2016 10:03 PM GMT

Thanks.
helloburp
#185600440Friday, March 18, 2016 10:46 PM GMT

For a script to teleport a player to another player in the same universe, would this work? local teleportService = game:GetService'TeleportService' function followPlayer(player, targetUserId) local success, errorMsg, placeId, instanceId = teleportService:GetPlayerPlaceInstanceAsync(targetUserId) if success then teleportService:TeleportToPlaceInstance(placeId, instanceId, player) else print("Teleport error:", errorMsg) end end script.Parent.MouseButton1Click:connect(function() local playerToTp = game.Players:GetUserIdFromNameAsync(script.Parent.TextBox.Text) followPlayer(game.Players.LocalPlayer,playerToTp) end)
helloburp
#185606167Saturday, March 19, 2016 12:16 AM GMT

I don't think it's working, but it's not giving any errors...
helloburp
#185613686Saturday, March 19, 2016 2:02 AM GMT

It's giving me an http 403 error, interesting.

    of     1