So I made a teleport script using Players instead of using game.Workspace.Player:MoveTo...
1 | function onTouch(plr) |
2 | game.Players.Player.Character:MoveTo(Vector 3. new( 21 , 66.9 , - 96.5 )) |
3 | end |
4 | game.Workspace.Teleporter.Touched:connect(onTouch) |
and it works, but it doesn't work online? Why , and what am I doing wrong? I thought that if I used Players instead of using Workspace.Players it would work..
Your script assumes that the player's name is Player
, you have to change that. In your code, the argument plr
is the part that touched the teleport, which will most likely belong to some player's character. I've changed it to hit
, as that makes more sense.
1 | function onTouch(hit) |
2 | if hit.Parent then |
3 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
4 | if player then |
5 | player.Character:MoveTo(Vector 3. new( 21 , 66.9 , - 96.5 )) |
6 | end |
7 | end |
8 | end |
9 | game.Workspace.Teleporter.Touched:connect(onTouch) |
I believe the issue was in line 2, the way you where getting the player. you did not specify what Player
was. The script automatically assumes the players name is Player
Code
1 | function onTouch(plr) |
2 | plr.Parent:MoveTo(Vector 3. new( 21 , 66.9 , - 96.5 )) |
3 | end |
4 | game.Workspace.Teleporter.Touched:connect(onTouch) |
Hope this helps!