The teleport teleportdata does not work for me. Solution?
I made a Gui so that you can choose what graphics quality that game should have. You have the choice between low quality or high quality. Once chosen between Yes (Ja) or No (Nein), another Gui comes to confirm the selection. If yes is pressed, then the answer is saved as a bool value and you are teleported in the game. The answer is used to adapt the game (if you have chosen high graphics then the game will also have more details and will be harder to load if you have chosen the opposite then the game will have fewer details, but less powerful device can make it easier play) However, if I try it and teleport it, the bool is always false, even if it was true before. How can I solve it?
Here is the Code:
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local Players = game:GetService( "Players" ) |
03 | local player = Players.LocalPlayer |
04 | local Ja = script.Parent.JaKiste |
05 | local Nein = script.Parent.NeinKiste |
06 | local Time = Instance.new( "IntValue" ,Players.LocalPlayer) |
09 | local placeId = 3503989334 |
10 | local Bool = game.Players.LocalPlayer:WaitForChild( "Bool" ) |
11 | local GrafikTitel = script.Parent.Parent.GrafikTitel |
14 | Option 1 = game.Players.LocalPlayer.HochGrafik_Ok.Value, |
15 | Option 2 = game.Players.LocalPlayer.NiedrigGrafik_Ok.Value |
18 | Ja.MouseButton 1 Click:Connect( function () |
19 | TeleportService:TeleportToSpawnByName(placeId, ( "Teleport Anfang Spawn" ),player, teleportData) |
22 | Nein.MouseButton 1 Click:Connect( function () |
23 | if Bool.Value = = true then |
24 | local Background 2 = script.Parent |
25 | local HochGrafik = script.Parent.Parent.HochGrafik |
26 | local NiedrigGrafik = script.Parent.Parent.NiedrigGrafik |
27 | Background 2 :TweenPosition(UDim 2. new( 0.5 , 0 , 1.2 , 0 ), "Out" , "Bounce" , 5 , true ) |
28 | NiedrigGrafik:TweenPosition(UDim 2. new( 0.75 , 0 , 0.45 , 0 ), "In" , "Back" , 3 , true ) |
29 | HochGrafik:TweenPosition(UDim 2. new( 0.25 , 0 , 0.45 , 0 ), "In" , "Back" , 3 , true ) |
30 | GrafikTitel:TweenPosition(UDim 2. new( 0.5 , 0 , 0.1 , 0 ),Enum.EasingDirection.In, Enum.EasingStyle.Bounce, 3 , true ) |
32 | for _,v in pairs (game.Players.LocalPlayer:GetChildren()) do |
33 | if v:IsA( "BoolValue" ) then |
Thank you for taking the time to explain it to me and for writing the solution ^-^