Welcome to Roblogs Forums

You have to be over the age of 13 years old and agree to the Forum's guidelines

Author Thread: Teleportation in mid 2007 client

 legonar343

1

Joined: May 28, 2024

Total Posts: 1

Teleportation in mid 2007 client

Posted: 30 May 2024 16:22 PM

Not sure it's possible, but not really good at Lua Scripting.

I need help with teleportation for mid 2007.

 Weeglem

1

Joined: Feb 15, 2024

Total Posts: 37

Re: Teleportation in mid 2007 client

Posted: 30 May 2024 16:22 PM

There are teleport tools avaible in some games, but in a brief you have to move the character model to the position you want. You can use the realja roblox wiki for reference

 legonar343

1

Joined: May 28, 2024

Total Posts: 1

Re: Teleportation in mid 2007 client

Posted: 30 May 2024 16:22 PM

Thanks, but I don't really need teleport tools.
I meant for when you touch a part it will send you
somewhere.

 pyro2

1

Joined: May 20, 2024

Total Posts: 18

Re: Teleportation in mid 2007 client

Posted: 30 May 2024 16:22 PM

in modern roblox it would look something like this


local part = workspace.Part --this is the tp part
local endPosition = Vector3.new(10,10,10) -- this is where it would tp (x, y, z)

part.Touched:Connect(function(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent) -- get the player who touched the part

if player and player.Character then
player.Character:MoveTo(endPosition)
end
end)

it probably will be different in 2007 client but just try to researcj

 RedGlow

1

Joined: Jun 20, 2024

Total Posts: 4

Re: Teleportation in mid 2007 client

Posted: 30 May 2024 16:22 PM

Teleportation is possible in 2007M: Put this into a script and insert the script into the part you want to be touched by the player. local EndPosition = Vector3.new(14 60 0) -- change this to whatever position you want function OnTouch(hit) if hit.Parent:FindFirstChild("Humanoid") then if hit.Parent.className == "Model" then hit.Parent:MoveTo(EndPosition) end end end script.Parent.Touched:connect(OnTouch)

   

Page 1 of 1

[1]