So... In one of my games, I work with a teleport system, so if a player touches an invisible brick, he will be teleported to the place that's in the script in the part. But... I also want to make an ImageLabel in a ScreenGui in the StarterGui pop up when the player touches the brick, saying that he's being teleported. I tried to get in this Gui using the 'players' thing in the game, but I'm kinda stuck with the script... Can someone help me or show me another way to do this? Thanks a lot.
This is the script I made:
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local gameID = 2198621137 |
03 |
04 | function onTouched(hit) |
05 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
06 | if player then |
07 | TeleportService:Teleport(gameID, player) |
08 | game.Players. "I'm stuck here" .PlayerGui.Revolution 2004. ImageLabel.Visible = true |
09 | print ( "Teleporting to Revolution 2004..." ) |
10 | end |
11 | end |
12 |
13 | script.Parent.Touched:connect(onTouched) |
? "Revolution2004" is the name of the ScreenGui
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local gameID = 2198621137 |
03 | local debounce = false |
04 |
05 | function onTouched(hit) |
06 | if game.Players:FindFirstChild(hit.Parent.Name) and debounce = = false then |
07 | debounce = true |
08 | player = game.Players [ hit.Parent.Name ] |
09 | TeleportService:Teleport(gameID, player) |
10 | player.PlayerGui.Revolution 2004. ImageLabel.Visible = true |
11 | print ( "Teleporting to Revolution 2004..." ) |
12 | wait( 5 ) |
13 | debounce = false |
14 | end |
15 | end |
16 |
17 | script.Parent.Touched:connect(onTouched) |
Hope this helped. <3
If i am not wrong you cant access Players PlayerGui with script. However you can do that with remote events.
U need to insert a remote event into workspace and then create a localscript in starterplayer.
In LocalScript u write this code:
1 | local remote = workspace.Remote --Remote name |
2 | remote.OnClientEvent:connect( function () |
3 | game.Players.LocalPlayer.PlayerGui.Revolution 2004. ImageLabel.Visible = true |
4 | end |
and in script that should teleport:
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local gameID = 2198621137 |
03 | local event = workspace.Remote --Remote name |
04 |
05 | function onTouched(hit) |
06 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
07 | if player then |
08 | TeleportService:Teleport(gameID, player) |
09 | event:FireClient(player) |
10 | print ( "Teleporting to Revolution 2004..." ) |
11 | end |
12 | end |
13 |
14 | script.Parent.Touched:connect(onTouched) |
If it doesnt work tell me.
Check too see if the Humanoid touched a brick make the script local and make the script so it finds the gui and makes it visible.