of     1   

ferano
#182916457Wednesday, February 03, 2016 3:05 AM GMT

So this script is in a LocalScript in the GUI, and is supposed to teleport the user to the ID they input however it isn't working, please help? I also am receiving the error message: Unable to cast string to token Frame = script.Parent.Frame Box = Frame.TextBox Button = Frame.TextButton Label = Frame.TextBox.Credit Button.MouseButton1Click:connect(function() local Text = tonumber(Button.PlaceID.Text) if (type(Text) == "number") then print("Trying to connect to Place ID: "..Text) Label.Text = "Connecting to Place ID: "..Text game:GetService("TeleportService"):Teleport(Text) end end)
ferano
#182916682Wednesday, February 03, 2016 3:08 AM GMT

bump
HomeguardDev
#182916709Wednesday, February 03, 2016 3:08 AM GMT

Try game:GetService("TeleportService"):Teleport(tonumber(Text))
ferano
#182916774Wednesday, February 03, 2016 3:09 AM GMT

Thanks for helping me again :)
ferano
#182916961Wednesday, February 03, 2016 3:12 AM GMT

It's no longer popping up with an error message, however it isn't working and I am perplexed as to why. :/
Kurokku
#182917102Wednesday, February 03, 2016 3:14 AM GMT

Maybe it needs to be a local script
ferano
#182917115Wednesday, February 03, 2016 3:14 AM GMT

Bump.
ferano
#182917156Wednesday, February 03, 2016 3:15 AM GMT

It is a local script.
Kurokku
#182917197Wednesday, February 03, 2016 3:15 AM GMT

Oh hmmm what's the full script then?
ferano
#182917258Wednesday, February 03, 2016 3:16 AM GMT

Frame = script.Parent.Frame Box = Frame.TextBox Button = Frame.TextButton Label = Frame.TextBox.Credit Button.MouseButton1Click:connect(function() local Text = tonumber(Button.PlaceID.Text) if (type(Text) == "number") then print("Trying to connect to Place ID: "..Text) Label.Text = "Connecting to Place ID: "..Text game:GetService("TeleportService"):Teleport(tonumber(Text)) end end)
ferano
#182917529Wednesday, February 03, 2016 3:20 AM GMT

bump
Kurokku
#182917541Wednesday, February 03, 2016 3:20 AM GMT

Hmmmm, idk sorry
ferano
#182917574Wednesday, February 03, 2016 3:21 AM GMT

Thanks anyways :/
ferano
#182917795Wednesday, February 03, 2016 3:24 AM GMT

print("Bump")
ferano
#182918499Wednesday, February 03, 2016 3:36 AM GMT

bump...
ferano
#182919024Wednesday, February 03, 2016 3:47 AM GMT

Please help
ferano
#182920172Wednesday, February 03, 2016 4:15 AM GMT

Anyone?
HomeguardDev
#182920398Wednesday, February 03, 2016 4:20 AM GMT

Are you using the correct assetID of the target place?
HomeguardDev
#182920573Wednesday, February 03, 2016 4:25 AM GMT

Also I don't know if the TeleportService works in the play mode of studio, so you might want to test in an actual server.
ferano
#182921215Wednesday, February 03, 2016 4:40 AM GMT

The ID is correct and I tested in an actual server.
Darkenus
#182921486Wednesday, February 03, 2016 4:46 AM GMT

least i can say is you use tonumber() twice - so remove one of the tonumbers

    of     1