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
#2
Yes. Just, Yes. :mrgreen:
Reply
#3
Yep. All roblox had to do was un-lock load.
Reply
#4
Awesome!
Reply
#5
ROBLOX: The age of teleportation has finally come after 6 years

Buildism: Heres a simple script right when we got the idea! Teleportation in 1 day ftw
Reply
#6
(07-25-2011, 01:02 AM)Domino Wrote: ROBLOX: The age of teleportation has finally come after 6 years

Buildism: Heres a simple script right when we got the idea! Teleportation in 1 day ftw

Excellent! I can see that easy script to be very handy. Nice work!
-CoderRyne
Ryne Thiel
Reply
#7
Sorry, but this makes me lol. ROBLOX fail XD
Shiggity Shiggity Shwa
[Image: Animated.gif?t=1314294800]
Reply
#8
Leave it to the masters of buildism to figure out something in a day Tongue
Reply
#9
fail......
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)