Is there a way to find the player without a local script? or is there a way to get the name of the player with something else? Would I be able to use a parameter for this and how do I find the variable player?
1 | Link = "510411669" |
2 | local TeleportService = game:GetService( "TeleportService" ) |
3 |
4 | function B 1 () |
5 | if player then |
6 | TeleportService:Teleport(Link, player) |
7 | end |
8 |
9 | Button.MouseButton 1 Click:connect(B 1 ) |
Ok i did it and it works!
Where you should put your local script: A Player’s Backpack, such as a child of a Tool A Player’s character model A Player’s PlayerGui A Player’s PlayerScripts. The ReplicatedFirst service
Local Script: (Game.StarterPlayer.StarterPlayerScripts)
1 | function B 1 (player) |
2 |
3 | RemoteEvent:FireServer(game.Players.LocalPlayer.Name) |
4 | end |
5 |
6 | Button.MouseButton 1 Click:connect(B 1 ) |
Script: (Anywhere)
1 | function player(Person) |
2 | print (Person) |
3 | end |
4 |
5 | RemoteEvent.OnServerEvent:Connect(Person) |
If person = "noot20000" it will print the name
1 | --Output: noot20000 |