07-22-2011, 10:47 PM
Well, ROBLOX just released "teleportation": The ability to move between places ingame.
Heck, it's not so hard it would take 6 years! Here's a simple little script that we can use. Just chat "goto/placenumber" and it will take you there.
For example, to go to Buildism City, chat "goto/29".
[lua]
function goTo(id)
local placeId = id + 0
game:load(placeId)
end
link(game.Players.ChildAdded, function(player)
link(player.Chatted, function(chat)
if string.sub(chat, 1, 5) == "goto/" then
goTo(string.sub(chat, 6))
end end) end)
[/lua]
Heck, it's not so hard it would take 6 years! Here's a simple little script that we can use. Just chat "goto/placenumber" and it will take you there.
For example, to go to Buildism City, chat "goto/29".
[lua]
function goTo(id)
local placeId = id + 0
game:load(placeId)
end
link(game.Players.ChildAdded, function(player)
link(player.Chatted, function(chat)
if string.sub(chat, 1, 5) == "goto/" then
goTo(string.sub(chat, 6))
end end) end)
[/lua]