Attempted to teleport to a place that is restricted?
Asked by
4 years ago Edited 4 years ago
So i made a friends list game which doesn't work...
Place : https://web.roblox.com/games/5572121130/Join-friends-simulator
output : output : RaiseTeleportInitFailedEvent: Teleport failed because This game is restricted (Unauthorized)
Script :
01 | game.Lighting.RemoteEvent.OnClientEvent:Connect( function () |
02 | local Player = game.Players.LocalPlayer |
03 | local TPS = game:GetService( "TeleportService" ) |
05 | for i, v in pairs (Player:GetFriendsOnline( 40 )) do |
06 | local PlayerGui = Player:WaitForChild( "PlayerGui" ):WaitForChild( "ScreenGui2" ) |
07 | local newFrame = game.ReplicatedStorage.Frame:Clone() |
09 | newFrame.TextLabel.Text = v.UserName |
10 | if newFrame.TextLabel.TextLabel.Text = = "Website" then |
11 | newFrame.TextLabel.TextButton:Destroy() |
12 | newFrame.TextLabel.TextLabel.TextColor 3 = Color 3. new( 1 , 251 , 255 ) |
14 | if newFrame.TextLabel.TextLabel.Text = = not "Website" then |
15 | newFrame.TextLabel.TextLael.TextColor 3 = Color 3. new( 59 , 255 , 5 ) |
17 | newFrame.Parent = Player:WaitForChild( "PlayerGui" ):WaitForChild( "ScreenGui2" ).Frame.ScrollingFrame |
18 | if v.LastLocation then |
19 | newFrame.TextLabel.TextLabel.Text = v.LastLocation |
20 | newFrame.TextLabel.TextButton.MouseEnter:Connect( function () |
21 | newFrame.TextLabel.TextButton.Text = v.GameId |
23 | newFrame.TextLabel.TextButton.MouseLeave:Connect( function () |
24 | newFrame.TextLabel.TextButton.Visible = false |
25 | newFrame.TextLabel.TextButton.Visible = false |
26 | newFrame.TextLabel.TextButton.Text = "" |
28 | newFrame.TextLabel.TextButton 2. Text = "Join " ..v.UserName |
29 | newFrame.TextLabel.TextButton 2. MouseButton 1 Click:Connect( function () |
30 | TPS:TeleportToPlaceInstance(v.PlaceId, v.GameId, Player) |