of     1   

so2cool4u
#37107198Tuesday, November 16, 2010 11:17 PM GMT

I have a script for Teleportation: --Enter the name of the model you want to go to here. ------------------------------------ modelname="tele2" ------------------------------------ function onTouched(part) if part.Parent ~= nil then local h = part.Parent:findFirstChild("Humanoid") if h~=nil then local teleportfrom=script.Parent.Enabled.Value if teleportfrom~=0 then if h==humanoid then return end local teleportto=script.Parent.Parent:findFirstChild(modelname) if teleportto~=nil then local torso = h.Parent.Torso local location = {teleportto.Position} local i = 1 local x = location[i].x local y = location[i].y local z = location[i].z x = x + math.random(-1, 1) z = z + math.random(-1, 1) y = y + math.random(2, 3) local cf = torso.CFrame local lx = 0 local ly = y local lz = 0 script.Parent.Enabled.Value=0 teleportto.Enabled.Value=0 torso.CFrame = CFrame.new(Vector3.new(x,y,z), Vector3.new(lx,ly,lz)) wait(3) script.Parent.Enabled.Value=1 teleportto.Enabled.Value=1 else print("") end end end end end script.Parent.Touched:connect(onTouched) How would I change the script so that you stand on a certain block, say "hi" or "Hi" or "hI" or something and have it tele you only after you said that?
so2cool4u
#37107257Tuesday, November 16, 2010 11:18 PM GMT

Oh, and also I will donate 50 robux to you and credit you in my game.
SilverRaptor
#37107518Tuesday, November 16, 2010 11:23 PM GMT

You would probably have to set a variable so that when somebody touches the brick it turns on (probably their name), and if that player (using the "speaker" part of the chatted function) has the variable on, then they're teleported. I'm not bringing myself to do it, though. Probably would be simple for somebody like crazypotato and AgentFirefox.
so2cool4u
#37107581Tuesday, November 16, 2010 11:24 PM GMT

I mean, ANY player, not just one.
SilverRaptor
#37107724Tuesday, November 16, 2010 11:26 PM GMT

Yes...
so2cool4u
#37107871Tuesday, November 16, 2010 11:29 PM GMT

Like ANY player would stand somewhere, say something, then get teleported somewhere else.
so2cool4u
#37107929Tuesday, November 16, 2010 11:30 PM GMT

I want that ANY player would be able to stand somewhere, say a specific set of words, or one word, and get instantly teleported somewhere else.
SilverRaptor
#37108745Tuesday, November 16, 2010 11:43 PM GMT

Oh, I see what you mean. I could probably do that. What's the words?
so2cool4u
#37110297Wednesday, November 17, 2010 12:06 AM GMT

See new post called "Teleportation Script Debug", or something like that.

    of     1