I need it so if the rank 255 steps on the block, it will teleport them to another block, but if any other rank steps on it, it won't teleport them. Here is what I have in the teleport block.
01 | local Teleport = "Teleport-2" |
02 | local config = script.Parent.Parent.Configuration |
03 | function Touch(hit) |
04 | if part.Parent and game:GetService( 'Players' ):GetPlayerFromCharacter(part.Parent) then |
05 | local player = game:GetService( 'Players' ):GetPlayerFromCharacter(part.Parent) |
06 | if player:GetRankInGroup(config.GroupId.Value) > = config.RankId.Value then |
07 | local Pos = script.Parent.Parent:findFirstChild(Teleport) |
08 | hit.Parent:moveTo(Pos.Position) wait( 1 ) script.Parent.Locked = false script.Parent.Parent:findFirstChild(Teleport).Locked = false |
09 | script.Parent.Touched:connect(Touch) |
10 | end |
11 | end |
That's kind of messy so I decided to rescript it for you.
01 | local teleport- 2 = game.Workspace:FindFirstChild( "TELEPORTERNAME" ) |
02 | local ID = 0 |
03 | local RANKID = 0 |
04 | local function Touched(hit) |
05 | if part.Parent and game.Players:FindFirstChild(part.Parent.Name) then |
06 | local player = game.Players:FindFirstChild(part.Parent.Name) |
07 | if player:GetRankInGroup(ID) > = RANKID then |
08 | part.Parent:MoveTo(teleport- 2 ) |
09 | end |
10 | end |
11 | end |
12 | script.Parent.Touched:Connect(Touched) |
This should work, I'm not to sure since I didn't test.
I changed a few things from d1_rek's answer, and it worked. Here it is if anyone needs it!
01 | local teleport = workspace.Teleport |
02 | local ID = 6235192 |
03 | local RANKID = 254 |
04 | local function Touched(part) |
05 | if part.Parent and game.Players:FindFirstChild(part.Parent.Name) then |
06 | local player = game.Players:FindFirstChild(part.Parent.Name) |
07 | if player:GetRankInGroup(ID) < = RANKID then |
08 | player.Character:MoveTo(teleport.Position) |
09 | end |
10 | end |
11 | end |
12 | script.Parent.Touched:Connect(Touched) |