If they can do it, so can we!
#1
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]
Reply


Messages In This Thread
If they can do it, so can we! - by Qwertygiy - 07-22-2011, 10:47 PM

Forum Jump:


Users browsing this thread: 3 Guest(s)