feranoJoin Date: 2008-11-23 Post Count: 5094 |
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) |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
bump |
|
|
Try game:GetService("TeleportService"):Teleport(tonumber(Text)) |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
Thanks for helping me again :) |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
It's no longer popping up with an error message, however it isn't working and I am perplexed as to why. :/ |
|
KurokkuJoin Date: 2015-08-01 Post Count: 4699 |
Maybe it needs to be a local script |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
Bump. |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
It is a local script. |
|
KurokkuJoin Date: 2015-08-01 Post Count: 4699 |
Oh hmmm what's the full script then? |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
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) |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
bump |
|
KurokkuJoin Date: 2015-08-01 Post Count: 4699 |
Hmmmm, idk sorry |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
Thanks anyways :/ |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
print("Bump") |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
bump... |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
Please help |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
Anyone? |
|
|
Are you using the correct assetID of the target place? |
|
|
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. |
|
feranoJoin Date: 2008-11-23 Post Count: 5094 |
The ID is correct and I tested in an actual server. |
|
DarkenusJoin Date: 2014-07-17 Post Count: 1997 |
least i can say is you use tonumber() twice - so remove one of the tonumbers |
|