Advertisement
ThomRosa

Save (OPR)

Apr 6th, 2020
450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 21.84 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/b7WEP8Yy", true))()
  2. if _G.mxLang == nil then _G.mxLang = "default" end
  3. local ver = "1.1.31"
  4. local txtStrings = {"Main", "Teleport", "Toggle Devil Fruit TP", "Toggle Black Market TP", "Toggle Chests TP", "AutoFarm Kira", "AutoFarm", "Invisibility", "Misc", "Reset character"}
  5. local fr = {"Fonctions", "Téléportations", "Activer/Désactiver la téléportation des fruits", "Activer/Désactiver la téléportation au marché noir", "Activer/Désactiver la téléportation aux coffres", "Farm Automatique [Kira]", "Farm Auto", "Invisibilité", "Autre", "Réinitialiser le personnage"}
  6. if _G.mxLang == "fr" then
  7.     txtStrings = fr
  8. end
  9. local plr = game.Players.LocalPlayer
  10. local invis = false
  11.  
  12. _G.oprDfTp = false
  13. _G.oprBmTp = false
  14. _G.oprChTp = false
  15. _G.oprKiraF = false
  16.  
  17. local function CheckRig()
  18.     if game.Players.LocalPlayer.Character then
  19.         local Humanoid = game.Players.LocalPlayer.Character:WaitForChild('Humanoid')
  20.         if Humanoid.RigType == Enum.HumanoidRigType.R15 then
  21.             return 'R15'
  22.         else
  23.             return 'R6'
  24.         end
  25.     end
  26. end
  27.  
  28. local mainWindow = library:Window("One Piece Rose GUI " .. ver)
  29. local mainPage = mainWindow:Page(txtStrings[1])
  30. local teleportPage = mainWindow:Page(txtStrings[2])
  31. local farmPage = mainWindow:Page(txtStrings[7])
  32. local miscPage = mainWindow:Page(txtStrings[9])
  33.  
  34. local vu = game:GetService("VirtualUser")
  35. game:GetService("Players").LocalPlayer.Idled:connect(function()
  36. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  37. wait(1)
  38. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  39. end)
  40.  
  41. mainPage:Toggle(txtStrings[3], function(state)
  42.     if state then
  43.         _G.oprDfTp = true
  44.         while wait(0.0001) do
  45.             if _G.oprDfTp then
  46.                 if plr.Character:WaitForChild("HumanoidRootPart") then
  47.                     local oldCFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame
  48.                     if game.Workspace:FindFirstChild("Handle") then
  49.                         local v = game.Workspace:FindFirstChild("Handle")
  50.                         v.CFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame
  51.                         wait(1)
  52.                     end
  53.                     for i,v in next, game.Workspace.Extra:GetChildren() do
  54.                         if string.match(v.Name, "?") then
  55.                             if v:FindFirstChild("TouchInterest") then
  56.                                 if v.Position.Y > -6 then
  57.                                     plr.Character:WaitForChild("HumanoidRootPart").CFrame = v.CFrame
  58.                                     wait(0.5)
  59.                                     plr.Character:WaitForChild("HumanoidRootPart").CFrame = oldCFrame
  60.                                     wait(0.5)
  61.                                 end
  62.                             end
  63.                         end
  64.                     end
  65.                 end
  66.             else
  67.                 break
  68.             end
  69.         end
  70.     else
  71.         _G.oprDfTp = false
  72.     end
  73. end)
  74.  
  75. mainPage:Toggle(txtStrings[4], function(state)
  76.     if state then
  77.         _G.oprBmTp = true
  78.         while wait(0.0001) do
  79.             if _G.oprBmTp then
  80.                 if plr.Character:WaitForChild("HumanoidRootPart") then
  81.                     if game.Workspace.NPCS:FindFirstChild("Rivers") then
  82.                         local v = game.Workspace.NPCS:FindFirstChild("Rivers")
  83.                         if (plr.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).magnitude > 30 then
  84.                             plr.Character:WaitForChild("HumanoidRootPart").CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,6,0)
  85.                         end
  86.                     end
  87.                 end
  88.             else
  89.                 break
  90.             end
  91.         end
  92.     else
  93.         _G.oprBmTp = false
  94.     end
  95. end)
  96.  
  97. mainPage:Toggle(txtStrings[5], function(state)
  98.     if state then
  99.         _G.oprChTp = true
  100.         while wait(0.0001) do
  101.             if _G.oprChTp then
  102.                 if plr.Character:WaitForChild("HumanoidRootPart") then
  103.                     local oldCFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame
  104.                     for i,v in next, game.Workspace.Extra.ChestPlaces:GetChildren() do
  105.                         for i2,v2 in next, v:GetChildren() do
  106.                             if v2:FindFirstChild("ChestTouch") then
  107.                                 plr.Character:WaitForChild("HumanoidRootPart").CFrame = v2.ChestTouch.CFrame * CFrame.new(0, 3, 0)
  108.                                 wait(0.8)
  109.                                 plr.Character:WaitForChild("HumanoidRootPart").CFrame = oldCFrame * CFrame.new(0, 10, 0)
  110.                                 wait(0.5)
  111.                             end
  112.                         end
  113.                     end
  114.                 end
  115.             else
  116.                 break
  117.             end
  118.         end
  119.     else
  120.         _G.oprChTp = false
  121.     end
  122. end)
  123.  
  124. miscPage:Button(txtStrings[10], function()
  125.     game.Players.LocalPlayer.Character:BreakJoints()
  126. end)
  127.  
  128. miscPage:Button(txtStrings[8], function()
  129.     local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  130.     local hackCF = CFrame.new(-5236.99365, 335.033875, 301.620331, 0.0803826824, -0.994964302, 0.0598716177, -0.405749142, 0.0222021826, 0.913714767, -0.910442889, -0.097739704, -0.401921242)
  131.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  132.     wait(1)
  133.     local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  134.     local Part = Instance.new('Part',workspace)
  135.     Part.Size = Vector3.new(5,0,5)
  136.     Part.Anchored = true
  137.     Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  138.     game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  139.     spawn(function()
  140.         wait(3)
  141.         Part:Destroy()
  142.     end)
  143.     if CheckRig() == 'R6' then
  144.         local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  145.         game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  146.         Clone.Parent = game.Players.LocalPlayer.Character
  147.     else
  148.     local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  149.     game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  150.     Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  151.     end
  152.     wait(1)
  153.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  154.  
  155.     local ScreenGui = Instance.new("ScreenGui")
  156.     local YouAreInvisible = Instance.new("Folder")
  157.     local Frame = Instance.new("Frame")
  158.     local UIGridLayout = Instance.new("UIGridLayout")
  159.     local Status = Instance.new("TextLabel")
  160.     local Status_2 = Instance.new("TextLabel")
  161.  
  162.     ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  163.     ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  164.  
  165.     YouAreInvisible.Name = "You Are Invisible !"
  166.     YouAreInvisible.Parent = ScreenGui
  167.  
  168.     Frame.Parent = ScreenGui
  169.     Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  170.     Frame.BackgroundTransparency = 1.000
  171.     Frame.BorderSizePixel = 0
  172.     Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  173.     Frame.Size = UDim2.new(0, 210, 0, 30)
  174.  
  175.     UIGridLayout.Parent = Frame
  176.     UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  177.     UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  178.     UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  179.  
  180.     Status.Name = "Status"
  181.     Status.Parent = Frame
  182.     Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  183.     Status.BackgroundTransparency = 1.000
  184.     Status.BorderSizePixel = 0
  185.     Status.Size = UDim2.new(0, 200, 0, 50)
  186.     Status.Font = Enum.Font.SourceSansBold
  187.     Status.Text = "Currently :"
  188.     Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  189.     Status.TextScaled = true
  190.     Status.TextSize = 14.000
  191.     Status.TextWrapped = true
  192.  
  193.     Status_2.Name = "Status"
  194.     Status_2.Parent = Frame
  195.     Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  196.     Status_2.BackgroundTransparency = 1.000
  197.     Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  198.     Status_2.BorderSizePixel = 0
  199.     Status_2.Size = UDim2.new(0, 200, 0, 50)
  200.     Status_2.Font = Enum.Font.SourceSansBold
  201.     Status_2.Text = "Invisible"
  202.     Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  203.     Status_2.TextScaled = true
  204.     Status_2.TextSize = 14.000
  205.     Status_2.TextWrapped = true
  206.     invis = true
  207.  
  208.     repeat
  209.         wait(0.6)
  210.         if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  211.             for _, child in next, game.Players.LocalPlayer.PlayerGui:GetDescendants() do
  212.                 if child.Name:lower() == "you are invisible !" then
  213.                     invis = true
  214.                 end
  215.             end
  216.         else
  217.             invis = false
  218.         end
  219.     until not invis
  220. end)
  221.  
  222. farmPage:Toggle(txtStrings[6], function(state)
  223.     if state then
  224.         _G.oprKiraF = true
  225.         local baseFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  226.         for _, child in next, game.Players.LocalPlayer.PlayerGui:GetDescendants() do
  227.             if child.Name:lower() == "you are invisible !" then
  228.                 invis = true
  229.             end
  230.         end
  231.         while wait(0.0001) do
  232.             if _G.oprKiraF then
  233.                 local boss = game.Workspace.FightableBosses["Kira the Revolutionary"]
  234.                 if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  235.                     if not invis then
  236.                         local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  237.                         local hackCF = CFrame.new(-5236.99365, 335.033875, 301.620331, 0.0803826824, -0.994964302, 0.0598716177, -0.405749142, 0.0222021826, 0.913714767, -0.910442889, -0.097739704, -0.401921242)
  238.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  239.                         wait(1)
  240.                         local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  241.                         local Part = Instance.new('Part',workspace)
  242.                         Part.Size = Vector3.new(5,0,5)
  243.                         Part.Anchored = true
  244.                         Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  245.                         game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  246.                         spawn(function()
  247.                             wait(3)
  248.                             Part:Destroy()
  249.                         end)
  250.                         if CheckRig() == 'R6' then
  251.                             local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  252.                             game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  253.                             Clone.Parent = game.Players.LocalPlayer.Character
  254.                         else
  255.                         local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  256.                         game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  257.                         Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  258.                         end
  259.                         wait(1)
  260.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  261.  
  262.                         local ScreenGui = Instance.new("ScreenGui")
  263.                         local YouAreInvisible = Instance.new("Folder")
  264.                         local Frame = Instance.new("Frame")
  265.                         local UIGridLayout = Instance.new("UIGridLayout")
  266.                         local Status = Instance.new("TextLabel")
  267.                         local Status_2 = Instance.new("TextLabel")
  268.                    
  269.                         ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  270.                         ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  271.                    
  272.                         YouAreInvisible.Name = "You Are Invisible !"
  273.                         YouAreInvisible.Parent = ScreenGui
  274.                    
  275.                         Frame.Parent = ScreenGui
  276.                         Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  277.                         Frame.BackgroundTransparency = 1.000
  278.                         Frame.BorderSizePixel = 0
  279.                         Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  280.                         Frame.Size = UDim2.new(0, 210, 0, 30)
  281.                    
  282.                         UIGridLayout.Parent = Frame
  283.                         UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  284.                         UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  285.                         UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  286.                    
  287.                         Status.Name = "Status"
  288.                         Status.Parent = Frame
  289.                         Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  290.                         Status.BackgroundTransparency = 1.000
  291.                         Status.BorderSizePixel = 0
  292.                         Status.Size = UDim2.new(0, 200, 0, 50)
  293.                         Status.Font = Enum.Font.SourceSansBold
  294.                         Status.Text = "Currently :"
  295.                         Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  296.                         Status.TextScaled = true
  297.                         Status.TextSize = 14.000
  298.                         Status.TextWrapped = true
  299.                    
  300.                         Status_2.Name = "Status"
  301.                         Status_2.Parent = Frame
  302.                         Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  303.                         Status_2.BackgroundTransparency = 1.000
  304.                         Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  305.                         Status_2.BorderSizePixel = 0
  306.                         Status_2.Size = UDim2.new(0, 200, 0, 50)
  307.                         Status_2.Font = Enum.Font.SourceSansBold
  308.                         Status_2.Text = "Invisible"
  309.                         Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  310.                         Status_2.TextScaled = true
  311.                         Status_2.TextSize = 14.000
  312.                         Status_2.TextWrapped = true
  313.                         invis = true
  314.                         wait(1)
  315.                     end
  316.                     if boss:FindFirstChild("Humanoid") then
  317.                         local hum = boss:FindFirstChild("Humanoid")
  318.                         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  319.                         if hum.Health ~= 0 then
  320.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = boss.HumanoidRootPart.CFrame * CFrame.new(0,20,0) * CFrame.Angles(math.rad(-75),0.5,0)
  321.                             local fruitName = game.Players.LocalPlayer.PlayerFolder.DevFruit.Value
  322.                             local abilities = {}
  323.            
  324.                             for i,v in next, game:GetService("ReplicatedStorage").Skills.DFS[fruitName]:GetChildren() do
  325.                                 for i2,v2 in next, v:GetChildren() do
  326.                                     abilities[i] = v2.Name
  327.                                 end
  328.                             end
  329.            
  330.                             for i,v in next, abilities do
  331.                                 local string_1 = v;
  332.                                 local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  333.                                 local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  334.                                 Target:FireServer(string_1, userdata_1);
  335.                                 local string_1 = v .. "Up";
  336.                                 local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  337.                                 local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  338.                                 Target:FireServer(string_1, userdata_1);
  339.                             end
  340.                         else
  341.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame * CFrame.new(0,10000,0)
  342.                         end
  343.                     end
  344.                 else
  345.                     invis = false
  346.                 end
  347.                 for i, x in next, game.Players.LocalPlayer.Character:GetDescendants() do
  348.                     if x:IsA("BasePart") then
  349.                         x.Velocity = Vector3.new(0,0,0)
  350.                     end
  351.                 end
  352.             else
  353.                 break
  354.             end
  355.         end
  356.     else
  357.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  358.         _G.oprKiraF = false
  359.     end
  360. end)
  361.  
  362. teleportPage:Button("Rocky Island", function()
  363.     local root = plr.Character.HumanoidRootPart
  364.     local teleportFrame = CFrame.new(1418.28748, 209.752274, 2957.59131, 0.204483747, 4.84780003e-06, -0.978870213, -2.84242105e-07, 1, 4.89306876e-06, 0.978870213, -7.22317623e-07, 0.204483747)
  365.     root.CFrame = teleportFrame
  366. end)
  367.  
  368. teleportPage:Button("Smoke Town", function()
  369.     local root = plr.Character.HumanoidRootPart
  370.     local teleportFrame = CFrame.new(-7598.84033, 260.531738, 8141.45264, 0.966802955, -0.000120966266, 0.255522788, 1.43620609e-05, 0.99999994, 0.000419066258, -0.255522847, -0.000401484722, 0.966802895)
  371.     root.CFrame = teleportFrame
  372. end)
  373.  
  374. teleportPage:Button("Maple Village", function()
  375.     local root = plr.Character.HumanoidRootPart
  376.     local teleportFrame = CFrame.new(-3230.68164, 116.413864, 6175.79248, -0.070243679, 1.05794349e-07, -0.997529864, 2.87882589e-08, 1, 1.0402912e-07, 0.997529864, -2.14097593e-08, -0.070243679)
  377.     root.CFrame = teleportFrame
  378. end)
  379.  
  380. teleportPage:Button("Shells Town", function()
  381.     local root = plr.Character.HumanoidRootPart
  382.     local teleportFrame = CFrame.new(-3516.06152, 315.938873, 1999.35388, -0.013094034, 0.0169753861, -0.999770164, 0.00666867243, 0.999835134, 0.0168891456, 0.999891758, -0.00644599739, -0.0132051054)
  383.     root.CFrame = teleportFrame
  384. end)
  385.  
  386. teleportPage:Button("Savvy Island", function()
  387.     local root = plr.Character.HumanoidRootPart
  388.     local teleportFrame = CFrame.new(-3164.60059, 184.344315, -1574.19019, 0.996569157, -4.71997872e-08, 0.0827641934, 4.45395081e-08, 1, 3.39891777e-08, -0.0827641934, -3.0186289e-08, 0.996569157)
  389.     root.CFrame = teleportFrame
  390. end)
  391.  
  392. teleportPage:Button("High Peak Island", function()
  393.     local root = plr.Character.HumanoidRootPart
  394.     local teleportFrame = CFrame.new(-948.481506, 502.961731, -2869.86279, 0.414397508, 1.90847285e-08, -0.91009599, 6.03803185e-09, 1, 2.37193376e-08, 0.91009599, -1.53244226e-08, 0.414397508)
  395.     root.CFrame = teleportFrame
  396. end)
  397.  
  398. teleportPage:Button("Cross Bridge Pass", function()
  399.     local root = plr.Character.HumanoidRootPart
  400.     local teleportFrame = CFrame.new(-911.353088, 179.835388, 1244.6106, -0.106050491, -1.0902847e-07, -0.994360864, 2.59261362e-10, 1, -1.09674424e-07, 0.994360864, -1.18888259e-08, -0.106050491)
  401.     root.CFrame = teleportFrame
  402. end)
  403.  
  404. teleportPage:Button("Arlong Park", function()
  405.     local root = plr.Character.HumanoidRootPart
  406.     local teleportFrame = CFrame.new(-10365.8477, 237.251114, 3253.79077, 0.687475443, -1.02297291e-08, -0.726207614, 2.61662354e-08, 1, 1.06841558e-08, 0.726207614, -2.63472142e-08, 0.687475443)
  407.     root.CFrame = teleportFrame
  408. end)
  409.  
  410. teleportPage:Button("Buggy Town", function()
  411.     local root = plr.Character.HumanoidRootPart
  412.     local teleportFrame = CFrame.new(-9162.51855, 170.256851, -2196.90991, -0.313108832, -7.88758189e-06, -0.949717283, -3.74025694e-05, 1, 4.02592923e-06, 0.949717283, 3.67824177e-05, -0.313108832)
  413.     root.CFrame = teleportFrame
  414. end)
  415.  
  416. teleportPage:Button("Windmill Village", function()
  417.     local root = plr.Character.HumanoidRootPart
  418.     local teleportFrame = CFrame.new(938.579712, 160.500641, 16.832325, 0.137646332, 1.4415348e-08, 0.990481436, -2.3722432e-08, 1, -1.12571943e-08, -0.990481436, -2.19471179e-08, 0.137646332)
  419.     root.CFrame = teleportFrame
  420. end)
  421.  
  422. teleportPage:Button("Black Leg Island", function()
  423.     local root = plr.Character.HumanoidRootPart
  424.     local teleportFrame = CFrame.new(1961.94873, 95.2560272, -3594.0896, 0.963451266, -8.19065633e-08, -0.267883629, 9.42728704e-08, 1, 3.3300843e-08, 0.267883629, -5.73378962e-08, 0.963451266)
  425.     root.CFrame = teleportFrame
  426. end)
  427.  
  428. teleportPage:Button("Freezing Point Island", function()
  429.     local root = plr.Character.HumanoidRootPart
  430.     local teleportFrame = CFrame.new(-6498.9375, 124.917984, 2786.42334, -0.752944291, 1.08077998e-07, 0.658084273, 7.63398234e-08, 1, -7.68873676e-08, -0.658084273, -7.65386954e-09, -0.752944291)
  431.     root.CFrame = teleportFrame
  432. end)
  433.  
  434. teleportPage:Button("Revolutionary Island", function()
  435.     local root = plr.Character.HumanoidRootPart
  436.     local teleportFrame = CFrame.new(-12091.1074, 377.566772, -2520.19897, -0.933698416, -8.68022099e-10, 0.358060479, 6.1295764e-09, 1, 1.84080573e-08, -0.358060479, 1.93823322e-08, -0.933698416)
  437.     root.CFrame = teleportFrame
  438. end)
  439.  
  440. teleportPage:Button("Floating Island", function()
  441.     local root = plr.Character.HumanoidRootPart
  442.     local teleportFrame = CFrame.new(-5236.27979, 359.161407, 301.342743, -0.687650144, 9.32432977e-06, 0.726042509, 0.000392751797, 0.999999881, 0.000359140628, -0.72604239, 0.000532117498, -0.687650263)
  443.     root.CFrame = teleportFrame
  444. end)
  445.  
  446. teleportPage:Button("Battle Arena", function()
  447.     local root = plr.Character.HumanoidRootPart
  448.     local teleportFrame = CFrame.new(-5217.33887, 182.716751, -4775.9624, 0.43153432, -6.20693967e-08, -0.90209651, -1.86654656e-08, 1, -7.77346827e-08, 0.90209651, 5.03832354e-08, 0.43153432)
  449.     root.CFrame = teleportFrame
  450. end)
  451.  
  452. game.Players.LocalPlayer.PlayerGui:WaitForChild("Mouse"):Destroy()
  453. game:GetService("UserInputService").MouseIconEnabled = true
  454. local mouse = game.Players.LocalPlayer:GetMouse()
  455. mouse.Icon = ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement