Advertisement
ThomRosa

Script (OPR)

Apr 5th, 2020
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 47.79 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 = "(Par Thomblay)"
  4. local txtStrings = {"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"}
  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. _G.oprSKill = false
  17.  
  18. local function CheckRig()
  19.     if game.Players.LocalPlayer.Character then
  20.         local Humanoid = game.Players.LocalPlayer.Character:WaitForChild('Humanoid')
  21.         if Humanoid.RigType == Enum.HumanoidRigType.R15 then
  22.             return 'R15'
  23.         else
  24.             return 'R6'
  25.         end
  26.     end
  27. end
  28.  
  29. local mainWindow = library:Window("One Piece Rose GUI " .. ver, "onepiecerose")
  30. local mainPage = mainWindow:Page(txtStrings[1], "main")
  31. local teleportPage = mainWindow:Page(txtStrings[2], "teleports")
  32. local farmPage = mainWindow:Page(txtStrings[7], "farm")
  33. local miscPage = mainWindow:Page(txtStrings[9], "misc")
  34.  
  35. local vu = game:GetService("VirtualUser")
  36. game:GetService("Players").LocalPlayer.Idled:connect(function()
  37. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  38. wait(1)
  39. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  40. end)
  41.  
  42. mainPage:Toggle(txtStrings[3], function(state)
  43.     if state then
  44.         _G.oprDfTp = true
  45.         while wait(0.0001) do
  46.             if _G.oprDfTp then
  47.                 if plr.Character:WaitForChild("HumanoidRootPart") then
  48.                     local oldCFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame
  49.                     if game.Workspace:FindFirstChild("Handle") then
  50.                         local v = game.Workspace:FindFirstChild("Handle")
  51.                         v.CFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame
  52.                         wait(1)
  53.                     end
  54.                     for i,v in next, game.Workspace.Extra:GetChildren() do
  55.                         if string.match(v.Name, "?") then
  56.                             if v:FindFirstChild("TouchInterest") then
  57.                                 if v.Position.Y > -6 then
  58.                                     plr.Character:WaitForChild("HumanoidRootPart").CFrame = v.CFrame
  59.                                     wait(0.5)
  60.                                     plr.Character:WaitForChild("HumanoidRootPart").CFrame = oldCFrame
  61.                                     wait(0.5)
  62.                                 end
  63.                             end
  64.                         end
  65.                     end
  66.                 end
  67.             else
  68.                 break
  69.             end
  70.         end
  71.     else
  72.         _G.oprDfTp = false
  73.     end
  74. end)
  75.  
  76. mainPage:Toggle(txtStrings[4], function(state)
  77.     if state then
  78.         _G.oprBmTp = true
  79.         while wait(0.0001) do
  80.             if _G.oprBmTp then
  81.                 if plr.Character:WaitForChild("HumanoidRootPart") then
  82.                     if game.Workspace.NPCS:FindFirstChild("Rivers") then
  83.                         local v = game.Workspace.NPCS:FindFirstChild("Rivers")
  84.                         if (plr.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).magnitude > 30 then
  85.                             plr.Character:WaitForChild("HumanoidRootPart").CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,6,0)
  86.                         end
  87.                     end
  88.                 end
  89.             else
  90.                 break
  91.             end
  92.         end
  93.     else
  94.         _G.oprBmTp = false
  95.     end
  96. end)
  97.  
  98. mainPage:Toggle(txtStrings[5], function(state)
  99.     if state then
  100.         _G.oprChTp = true
  101.         while wait(0.0001) do
  102.             if _G.oprChTp then
  103.                 if plr.Character:WaitForChild("HumanoidRootPart") then
  104.                     local oldCFrame = plr.Character:WaitForChild("HumanoidRootPart").CFrame
  105.                     for i,v in next, game.Workspace.Extra.ChestPlaces:GetChildren() do
  106.                         for i2,v2 in next, v:GetChildren() do
  107.                             if v2:FindFirstChild("ChestTouch") then
  108.                                 plr.Character:WaitForChild("HumanoidRootPart").CFrame = v2.ChestTouch.CFrame * CFrame.new(0, 3, 0)
  109.                                 wait(0.8)
  110.                                 plr.Character:WaitForChild("HumanoidRootPart").CFrame = oldCFrame * CFrame.new(0, 10, 0)
  111.                                 wait(0.5)
  112.                             end
  113.                         end
  114.                     end
  115.                 end
  116.             else
  117.                 break
  118.             end
  119.         end
  120.     else
  121.         _G.oprChTp = false
  122.     end
  123. end)
  124.  
  125. miscPage:Button(txtStrings[10], function()
  126.     game.Players.LocalPlayer.Character:BreakJoints()
  127. end)
  128.  
  129. spawn(function()
  130.     while wait(0.1) do
  131.         if not game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") or game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  132.             invis = false
  133.         end
  134.     end
  135. end)
  136.  
  137. miscPage:Button(txtStrings[8], function()
  138.     local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  139.     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)
  140.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  141.     wait(1)
  142.     local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  143.     local Part = Instance.new('Part',workspace)
  144.     Part.Size = Vector3.new(5,0,5)
  145.     Part.Anchored = true
  146.     Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  147.     game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  148.     spawn(function()
  149.         wait(3)
  150.         Part:Destroy()
  151.     end)
  152.     if CheckRig() == 'R6' then
  153.         local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  154.         game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  155.         Clone.Parent = game.Players.LocalPlayer.Character
  156.     else
  157.     local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  158.     game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  159.     Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  160.     end
  161.     wait(1)
  162.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  163.  
  164.     local ScreenGui = Instance.new("ScreenGui")
  165.     local YouAreInvisible = Instance.new("Folder")
  166.     local Frame = Instance.new("Frame")
  167.     local UIGridLayout = Instance.new("UIGridLayout")
  168.     local Status = Instance.new("TextLabel")
  169.     local Status_2 = Instance.new("TextLabel")
  170.  
  171.     ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  172.     ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  173.  
  174.     YouAreInvisible.Name = "You Are Invisible !"
  175.     YouAreInvisible.Parent = ScreenGui
  176.  
  177.     Frame.Parent = ScreenGui
  178.     Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  179.     Frame.BackgroundTransparency = 1.000
  180.     Frame.BorderSizePixel = 0
  181.     Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  182.     Frame.Size = UDim2.new(0, 210, 0, 30)
  183.  
  184.     UIGridLayout.Parent = Frame
  185.     UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  186.     UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  187.     UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  188.  
  189.     Status.Name = "Status"
  190.     Status.Parent = Frame
  191.     Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  192.     Status.BackgroundTransparency = 1.000
  193.     Status.BorderSizePixel = 0
  194.     Status.Size = UDim2.new(0, 200, 0, 50)
  195.     Status.Font = Enum.Font.SourceSansBold
  196.     Status.Text = "Invisible"
  197.     Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  198.     Status.TextScaled = true
  199.     Status.TextSize = 14.000
  200.     Status.TextWrapped = true
  201.  
  202.     Status_2.Name = "Status"
  203.     Status_2.Parent = Frame
  204.     Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  205.     Status_2.BackgroundTransparency = 1.000
  206.     Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  207.     Status_2.BorderSizePixel = 0
  208.     Status_2.Size = UDim2.new(0, 200, 0, 50)
  209.     Status_2.Font = Enum.Font.SourceSansBold
  210.     Status_2.Text = ""
  211.     Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  212.     Status_2.TextScaled = true
  213.     Status_2.TextSize = 14.000
  214.     Status_2.TextWrapped = true
  215.     invis = true
  216.  
  217.     repeat
  218.         wait(0.6)
  219.         if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  220.             for _, child in next, game.Players.LocalPlayer.PlayerGui:GetDescendants() do
  221.                 if child.Name:lower() == "you are invisible !" then
  222.                     invis = true
  223.                 end
  224.             end
  225.         else
  226.             invis = false
  227.         end
  228.     until not invis
  229. end)
  230.  
  231. farmPage:Toggle(txtStrings[6], function(state)
  232.     if state then
  233.         _G.oprKiraF = true
  234.         local baseFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  235.         for _, child in next, game.Players.LocalPlayer.PlayerGui:GetDescendants() do
  236.             if child.Name:lower() == "you are invisible !" then
  237.                 invis = true
  238.             end
  239.         end
  240.         while wait(0.0001) do
  241.             if _G.oprKiraF then
  242.                 local boss = game.Workspace.FightableBosses["Kira the Revolutionary"]
  243.                 if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  244.                     if not invis then
  245.                         local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  246.                         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)
  247.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  248.                         wait(1)
  249.                         local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  250.                         local Part = Instance.new('Part',workspace)
  251.                         Part.Size = Vector3.new(5,0,5)
  252.                         Part.Anchored = true
  253.                         Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  254.                         game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  255.                         spawn(function()
  256.                             wait(3)
  257.                             Part:Destroy()
  258.                         end)
  259.                         if CheckRig() == 'R6' then
  260.                             local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  261.                             game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  262.                             Clone.Parent = game.Players.LocalPlayer.Character
  263.                         else
  264.                         local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  265.                         game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  266.                         Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  267.                         end
  268.                         wait(1)
  269.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  270.  
  271.                         local ScreenGui = Instance.new("ScreenGui")
  272.                         local YouAreInvisible = Instance.new("Folder")
  273.                         local Frame = Instance.new("Frame")
  274.                         local UIGridLayout = Instance.new("UIGridLayout")
  275.                         local Status = Instance.new("TextLabel")
  276.                         local Status_2 = Instance.new("TextLabel")
  277.                    
  278.                         ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  279.                         ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  280.                    
  281.                         YouAreInvisible.Name = "You Are Invisible !"
  282.                         YouAreInvisible.Parent = ScreenGui
  283.                    
  284.                         Frame.Parent = ScreenGui
  285.                         Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  286.                         Frame.BackgroundTransparency = 1.000
  287.                         Frame.BorderSizePixel = 0
  288.                         Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  289.                         Frame.Size = UDim2.new(0, 210, 0, 30)
  290.                    
  291.                         UIGridLayout.Parent = Frame
  292.                         UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  293.                         UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  294.                         UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  295.                    
  296.                         Status.Name = "Status"
  297.                         Status.Parent = Frame
  298.                         Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  299.                         Status.BackgroundTransparency = 1.000
  300.                         Status.BorderSizePixel = 0
  301.                         Status.Size = UDim2.new(0, 200, 0, 50)
  302.                         Status.Font = Enum.Font.SourceSansBold
  303.                         Status.Text = "Invisible"
  304.                         Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  305.                         Status.TextScaled = true
  306.                         Status.TextSize = 14.000
  307.                         Status.TextWrapped = true
  308.                    
  309.                         Status_2.Name = "Status"
  310.                         Status_2.Parent = Frame
  311.                         Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  312.                         Status_2.BackgroundTransparency = 1.000
  313.                         Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  314.                         Status_2.BorderSizePixel = 0
  315.                         Status_2.Size = UDim2.new(0, 200, 0, 50)
  316.                         Status_2.Font = Enum.Font.SourceSansBold
  317.                         Status_2.Text = ""
  318.                         Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  319.                         Status_2.TextScaled = true
  320.                         Status_2.TextSize = 14.000
  321.                         Status_2.TextWrapped = true
  322.                         invis = true
  323.                         wait(1)
  324.                     end
  325.                     if boss:FindFirstChild("Humanoid") then
  326.                         local hum = boss:FindFirstChild("Humanoid")
  327.                         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  328.                         if hum.Health ~= 0 then
  329.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = boss.HumanoidRootPart.CFrame * CFrame.new(0,20,0) * CFrame.Angles(math.rad(-75),0.5,0)
  330.                             local fruitName = game.Players.LocalPlayer.PlayerFolder.DevFruit.Value
  331.                             local abilities = {}
  332.            
  333.                             for i,v in next, game:GetService("ReplicatedStorage").Skills.DFS[fruitName]:GetChildren() do
  334.                                 for i2,v2 in next, v:GetChildren() do
  335.                                     abilities[i] = v2.Name
  336.                                 end
  337.                             end
  338.            
  339.                             for i,v in next, abilities do
  340.                                 local string_1 = v;
  341.                                 local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  342.                                 local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  343.                                 Target:FireServer(string_1, userdata_1);
  344.                                 local string_1 = v .. "Up";
  345.                                 local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  346.                                 local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  347.                                 Target:FireServer(string_1, userdata_1);
  348.                             end
  349.                         else
  350.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame * CFrame.new(0,10000,0)
  351.                         end
  352.                     end
  353.                 else
  354.                     invis = false
  355.                 end
  356.                 for i, x in next, game.Players.LocalPlayer.Character:GetDescendants() do
  357.                     if x:IsA("BasePart") then
  358.                         x.Velocity = Vector3.new(0,0,0)
  359.                     end
  360.                 end
  361.             else
  362.                 break
  363.             end
  364.         end
  365.     else
  366.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  367.         _G.oprKiraF = false
  368.     end
  369. end)
  370.  
  371. farmPage:Toggle(txtStrings[6] .. " [Epeeiste / 3SS]", function(state)
  372.     if state then
  373.         _G.oprKiraF = true
  374.         local baseFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  375.         for _, child in next, game.Players.LocalPlayer.PlayerGui:GetDescendants() do
  376.             if child.Name:lower() == "you are invisible !" then
  377.                 invis = true
  378.             end
  379.         end
  380.         spawn(function()
  381.             while wait(0.0001) do
  382.                 if _G.oprKiraF then
  383.                     for i = 1,5 do
  384.                         local string_1 = "Slash";
  385.                         local string_2 = "Zoro's Three Sword Style";
  386.                         local number_1 = i;
  387.                         local Target = game:GetService("ReplicatedStorage").Remotes.Sword.SwordRemote;
  388.                         Target:FireServer(string_1, string_2, number_1);
  389.                         wait(0.3)
  390.                     end
  391.                 else
  392.                     break
  393.                 end
  394.             end
  395.         end)
  396.         while wait(0.0001) do
  397.             if _G.oprKiraF then
  398.                 local boss = game.Workspace.FightableBosses["Kira the Revolutionary"]
  399.                 if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  400.                     if not invis then
  401.                         local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  402.                         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)
  403.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  404.                         wait(1)
  405.                         local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  406.                         local Part = Instance.new('Part',workspace)
  407.                         Part.Size = Vector3.new(5,0,5)
  408.                         Part.Anchored = true
  409.                         Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  410.                         game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  411.                         spawn(function()
  412.                             wait(3)
  413.                             Part:Destroy()
  414.                         end)
  415.                         if CheckRig() == 'R6' then
  416.                             local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  417.                             game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  418.                             Clone.Parent = game.Players.LocalPlayer.Character
  419.                         else
  420.                         local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  421.                         game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  422.                         Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  423.                         end
  424.                         wait(1)
  425.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  426.    
  427.                         local ScreenGui = Instance.new("ScreenGui")
  428.                         local YouAreInvisible = Instance.new("Folder")
  429.                         local Frame = Instance.new("Frame")
  430.                         local UIGridLayout = Instance.new("UIGridLayout")
  431.                         local Status = Instance.new("TextLabel")
  432.                         local Status_2 = Instance.new("TextLabel")
  433.                    
  434.                         ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  435.                         ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  436.                    
  437.                         YouAreInvisible.Name = "You Are Invisible !"
  438.                         YouAreInvisible.Parent = ScreenGui
  439.                    
  440.                         Frame.Parent = ScreenGui
  441.                         Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  442.                         Frame.BackgroundTransparency = 1.000
  443.                         Frame.BorderSizePixel = 0
  444.                         Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  445.                         Frame.Size = UDim2.new(0, 210, 0, 30)
  446.                    
  447.                         UIGridLayout.Parent = Frame
  448.                         UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  449.                         UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  450.                         UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  451.                    
  452.                         Status.Name = "Status"
  453.                         Status.Parent = Frame
  454.                         Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  455.                         Status.BackgroundTransparency = 1.000
  456.                         Status.BorderSizePixel = 0
  457.                         Status.Size = UDim2.new(0, 200, 0, 50)
  458.                         Status.Font = Enum.Font.SourceSansBold
  459.                         Status.Text = "Invisible"
  460.                         Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  461.                         Status.TextScaled = true
  462.                         Status.TextSize = 14.000
  463.                         Status.TextWrapped = true
  464.                    
  465.                         Status_2.Name = "Status"
  466.                         Status_2.Parent = Frame
  467.                         Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  468.                         Status_2.BackgroundTransparency = 1.000
  469.                         Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  470.                         Status_2.BorderSizePixel = 0
  471.                         Status_2.Size = UDim2.new(0, 200, 0, 50)
  472.                         Status_2.Font = Enum.Font.SourceSansBold
  473.                         Status_2.Text = ""
  474.                         Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  475.                         Status_2.TextScaled = true
  476.                         Status_2.TextSize = 14.000
  477.                         Status_2.TextWrapped = true
  478.                         invis = true
  479.                         wait(1)
  480.                     end
  481.                     if boss:FindFirstChild("Humanoid") then
  482.                         local hum = boss:FindFirstChild("Humanoid")
  483.                         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  484.                         if hum.Health ~= 0 then
  485.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = boss.HumanoidRootPart.CFrame * CFrame.new(0,6,0) * CFrame.Angles(math.rad(-75),0.5,0)
  486.                             local fruitName = "Zoro's Three Sword Style"
  487.                             if game.Players.LocalPlayer.Backpack:FindFirstChild(fruitName) then
  488.                                 game.Players.LocalPlayer.Backpack[fruitName].Parent = game.Players.LocalPlayer.Character
  489.                             end
  490.                             local abilities = {}
  491.            
  492.                             for i,v in next, game:GetService("ReplicatedStorage").Skills.Alt[fruitName]:GetChildren() do
  493.                                 for i2,v2 in next, v:GetChildren() do
  494.                                     abilities[i] = v2.Name
  495.                                 end
  496.                             end
  497.            
  498.                             for i,v in next, abilities do
  499.                                 local string_1 = v
  500.                                 local string_2 = "Zoro's Three Sword Style";
  501.                                 local number_1 = 1;
  502.                                 local Target = game:GetService("ReplicatedStorage").Remotes.Sword.SwordRemote;
  503.                                 Target:FireServer(string_1, string_2, number_1);
  504.                                 local string_1 = "Slash"
  505.                                 local string_2 = "Zoro's Three Sword Style";
  506.                                 local number_1 = 5;
  507.                                 local Target = game:GetService("ReplicatedStorage").Remotes.Sword.SwordRemote;
  508.                             end
  509.                         else
  510.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame * CFrame.new(0,10000,0)
  511.                         end
  512.                     end
  513.                 else
  514.                     invis = false
  515.                 end
  516.                 for i, x in next, game.Players.LocalPlayer.Character:GetDescendants() do
  517.                     if x:IsA("BasePart") then
  518.                         x.Velocity = Vector3.new(0,0,0)
  519.                     end
  520.                 end
  521.             else
  522.                 break
  523.             end
  524.         end
  525.     else
  526.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  527.         _G.oprKiraF = false
  528.     end
  529. end)
  530.  
  531. mainPage:TextBox("Kill Player", "Player Name", "killPlayer", function()
  532.     local player = _G.flags.onepiecerose.pages.main.textboxes.killPlayer
  533.     local baseFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  534.     if game.Players:FindFirstChild(player) then
  535.         while wait(0.0001) do
  536.             local boss = game.Players[player].Character
  537.             if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  538.                 if boss:FindFirstChild("HumanoidRootPart") then
  539.                     if not invis then
  540.                         local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  541.                         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)
  542.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  543.                         wait(1)
  544.                         local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  545.                         local Part = Instance.new('Part',workspace)
  546.                         Part.Size = Vector3.new(5,0,5)
  547.                         Part.Anchored = true
  548.                         Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  549.                         game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  550.                         spawn(function()
  551.                             wait(3)
  552.                             Part:Destroy()
  553.                         end)
  554.                         if CheckRig() == 'R6' then
  555.                             local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  556.                             game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  557.                             Clone.Parent = game.Players.LocalPlayer.Character
  558.                         else
  559.                         local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  560.                         game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  561.                         Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  562.                         end
  563.                         wait(1)
  564.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  565.  
  566.                         local ScreenGui = Instance.new("ScreenGui")
  567.                         local YouAreInvisible = Instance.new("Folder")
  568.                         local Frame = Instance.new("Frame")
  569.                         local UIGridLayout = Instance.new("UIGridLayout")
  570.                         local Status = Instance.new("TextLabel")
  571.                         local Status_2 = Instance.new("TextLabel")
  572.                    
  573.                         ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  574.                         ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  575.                    
  576.                         YouAreInvisible.Name = "You Are Invisible !"
  577.                         YouAreInvisible.Parent = ScreenGui
  578.                    
  579.                         Frame.Parent = ScreenGui
  580.                         Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  581.                         Frame.BackgroundTransparency = 1.000
  582.                         Frame.BorderSizePixel = 0
  583.                         Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  584.                         Frame.Size = UDim2.new(0, 210, 0, 30)
  585.                    
  586.                         UIGridLayout.Parent = Frame
  587.                         UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  588.                         UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  589.                         UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  590.                    
  591.                         Status.Name = "Status"
  592.                         Status.Parent = Frame
  593.                         Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  594.                         Status.BackgroundTransparency = 1.000
  595.                         Status.BorderSizePixel = 0
  596.                         Status.Size = UDim2.new(0, 200, 0, 50)
  597.                         Status.Font = Enum.Font.SourceSansBold
  598.                         Status.Text = "Invisible"
  599.                         Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  600.                         Status.TextScaled = true
  601.                         Status.TextSize = 14.000
  602.                         Status.TextWrapped = true
  603.                    
  604.                         Status_2.Name = "Status"
  605.                         Status_2.Parent = Frame
  606.                         Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  607.                         Status_2.BackgroundTransparency = 1.000
  608.                         Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  609.                         Status_2.BorderSizePixel = 0
  610.                         Status_2.Size = UDim2.new(0, 200, 0, 50)
  611.                         Status_2.Font = Enum.Font.SourceSansBold
  612.                         Status_2.Text = ""
  613.                         Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  614.                         Status_2.TextScaled = true
  615.                         Status_2.TextSize = 14.000
  616.                         Status_2.TextWrapped = true
  617.                         invis = true
  618.                         wait(1)
  619.                     end
  620.                     if boss:FindFirstChild("Humanoid") then
  621.                         local hum = boss:FindFirstChild("Humanoid")
  622.                         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  623.                         if hum.Health ~= 0 then
  624.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = boss.HumanoidRootPart.CFrame * CFrame.new(0,20,0) * CFrame.Angles(math.rad(-75),0.5,0)
  625.                             local fruitName = game.Players.LocalPlayer.PlayerFolder.DevFruit.Value
  626.                             local abilities = {}
  627.            
  628.                             for i,v in next, game:GetService("ReplicatedStorage").Skills.DFS[fruitName]:GetChildren() do
  629.                                 for i2,v2 in next, v:GetChildren() do
  630.                                     abilities[i] = v2.Name
  631.                                 end
  632.                             end
  633.            
  634.                             for i,v in next, abilities do
  635.                                 local string_1 = v;
  636.                                 local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  637.                                 local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  638.                                 Target:FireServer(string_1, userdata_1);
  639.                                 local string_1 = v .. "Up";
  640.                                 local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  641.                                 local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  642.                                 Target:FireServer(string_1, userdata_1);
  643.                             end
  644.                         else
  645.                             game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  646.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame
  647.                             break
  648.                         end
  649.                     end
  650.                 else
  651.                     game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  652.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame
  653.                     break
  654.                 end
  655.             else
  656.                 invis = false
  657.             end
  658.             for i, x in next, game.Players.LocalPlayer.Character:GetDescendants() do
  659.                 if x:IsA("BasePart") then
  660.                     x.Velocity = Vector3.new(0,0,0)
  661.                 end
  662.             end
  663.         end
  664.     else
  665.         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  666.     end
  667. end)
  668.  
  669. mainPage:Toggle("Spawnkill Player", function(state)
  670.     if state then
  671.         _G.oprSKill = true
  672.         local player = _G.flags.onepiecerose.pages.main.textboxes.killPlayer
  673.         local baseFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  674.         if game.Players:FindFirstChild(player) then
  675.             while wait(0.0001) do
  676.                 if not _G.oprSKill then break end
  677.                 local boss = game.Players[player].Character
  678.                 if game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") and game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
  679.                     if boss:FindFirstChild("HumanoidRootPart") then
  680.                         if not invis then
  681.                             local originalCF = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  682.                             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)
  683.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = hackCF
  684.                             wait(1)
  685.                             local StoredCF = game.Players.LocalPlayer.Character.PrimaryPart.CFrame
  686.                             local Part = Instance.new('Part',workspace)
  687.                             Part.Size = Vector3.new(5,0,5)
  688.                             Part.Anchored = true
  689.                             Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
  690.                             game.Players.LocalPlayer.Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
  691.                             spawn(function()
  692.                                 wait(3)
  693.                                 Part:Destroy()
  694.                             end)
  695.                             if CheckRig() == 'R6' then
  696.                                 local Clone = game.Players.LocalPlayer.Character.HumanoidRootPart:Clone()
  697.                                 game.Players.LocalPlayer.Character.HumanoidRootPart:Destroy()
  698.                                 Clone.Parent = game.Players.LocalPlayer.Character
  699.                             else
  700.                             local Clone = game.Players.LocalPlayer.Character.LowerTorso.Root:Clone()
  701.                             game.Players.LocalPlayer.Character.LowerTorso.Root:Destroy()
  702.                             Clone.Parent = game.Players.LocalPlayer.Character.LowerTorso
  703.                             end
  704.                             wait(1)
  705.                             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = originalCF
  706.    
  707.                             local ScreenGui = Instance.new("ScreenGui")
  708.                             local YouAreInvisible = Instance.new("Folder")
  709.                             local Frame = Instance.new("Frame")
  710.                             local UIGridLayout = Instance.new("UIGridLayout")
  711.                             local Status = Instance.new("TextLabel")
  712.                             local Status_2 = Instance.new("TextLabel")
  713.                        
  714.                             ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  715.                             ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  716.                        
  717.                             YouAreInvisible.Name = "You Are Invisible !"
  718.                             YouAreInvisible.Parent = ScreenGui
  719.                        
  720.                             Frame.Parent = ScreenGui
  721.                             Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  722.                             Frame.BackgroundTransparency = 1.000
  723.                             Frame.BorderSizePixel = 0
  724.                             Frame.Position = UDim2.new(0, 0, 0.425061435, 0)
  725.                             Frame.Size = UDim2.new(0, 210, 0, 30)
  726.                        
  727.                             UIGridLayout.Parent = Frame
  728.                             UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  729.                             UIGridLayout.CellPadding = UDim2.new(0, 0, 0, 0)
  730.                             UIGridLayout.CellSize = UDim2.new(0, 105, 0, 30)
  731.                        
  732.                             Status.Name = "Status"
  733.                             Status.Parent = Frame
  734.                             Status.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  735.                             Status.BackgroundTransparency = 1.000
  736.                             Status.BorderSizePixel = 0
  737.                             Status.Size = UDim2.new(0, 200, 0, 50)
  738.                             Status.Font = Enum.Font.SourceSansBold
  739.                             Status.Text = "Invisible"
  740.                             Status.TextColor3 = Color3.fromRGB(255, 255, 255)
  741.                             Status.TextScaled = true
  742.                             Status.TextSize = 14.000
  743.                             Status.TextWrapped = true
  744.                        
  745.                             Status_2.Name = "Status"
  746.                             Status_2.Parent = Frame
  747.                             Status_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  748.                             Status_2.BackgroundTransparency = 1.000
  749.                             Status_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  750.                             Status_2.BorderSizePixel = 0
  751.                             Status_2.Size = UDim2.new(0, 200, 0, 50)
  752.                             Status_2.Font = Enum.Font.SourceSansBold
  753.                             Status_2.Text = ""
  754.                             Status_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  755.                             Status_2.TextScaled = true
  756.                             Status_2.TextSize = 14.000
  757.                             Status_2.TextWrapped = true
  758.                             invis = true
  759.                             wait(1)
  760.                         end
  761.                         if boss:FindFirstChild("Humanoid") then
  762.                             local hum = boss:FindFirstChild("Humanoid")
  763.                             game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  764.                             if hum.Health ~= 0 then
  765.                                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = boss.HumanoidRootPart.CFrame * CFrame.new(0,20,0) * CFrame.Angles(math.rad(-75),0.5,0)
  766.                                 local fruitName = game.Players.LocalPlayer.PlayerFolder.DevFruit.Value
  767.                                 local abilities = {}
  768.                
  769.                                 for i,v in next, game:GetService("ReplicatedStorage").Skills.DFS[fruitName]:GetChildren() do
  770.                                     for i2,v2 in next, v:GetChildren() do
  771.                                         abilities[i] = v2.Name
  772.                                     end
  773.                                 end
  774.                                 for i,v in next, abilities do
  775.                                     local string_1 = v;
  776.                                     local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  777.                                     local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  778.                                     Target:FireServer(string_1, userdata_1);
  779.                                     local string_1 = v .. "Up";
  780.                                     local userdata_1 = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame;
  781.                                     local Target = game:GetService("ReplicatedStorage").Remotes.DF[fruitName];
  782.                                     Target:FireServer(string_1, userdata_1);
  783.                                 end
  784.                             else
  785.                                 game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  786.                                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame
  787.                             end
  788.                         end
  789.                     else
  790.                         game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  791.                         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = baseFrame
  792.                     end
  793.                 else
  794.                     invis = false
  795.                 end
  796.                 for i, x in next, game.Players.LocalPlayer.Character:GetDescendants() do
  797.                     if x:IsA("BasePart") then
  798.                         x.Velocity = Vector3.new(0,0,0)
  799.                     end
  800.                 end
  801.             end
  802.         else
  803.             game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  804.         end
  805.     else
  806.         _G.oprSKill = false
  807.     end
  808. end)
  809.  
  810. teleportPage:Button("Rocky Island", function()
  811.     local root = plr.Character.HumanoidRootPart
  812.     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)
  813.     root.CFrame = teleportFrame
  814. end)
  815.  
  816. teleportPage:Button("Smoke Town", function()
  817.     local root = plr.Character.HumanoidRootPart
  818.     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)
  819.     root.CFrame = teleportFrame
  820. end)
  821.  
  822. teleportPage:Button("Maple Village", function()
  823.     local root = plr.Character.HumanoidRootPart
  824.     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)
  825.     root.CFrame = teleportFrame
  826. end)
  827.  
  828. teleportPage:Button("Shells Town", function()
  829.     local root = plr.Character.HumanoidRootPart
  830.     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)
  831.     root.CFrame = teleportFrame
  832. end)
  833.  
  834. teleportPage:Button("Savvy Island", function()
  835.     local root = plr.Character.HumanoidRootPart
  836.     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)
  837.     root.CFrame = teleportFrame
  838. end)
  839.  
  840. teleportPage:Button("High Peak Island", function()
  841.     local root = plr.Character.HumanoidRootPart
  842.     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)
  843.     root.CFrame = teleportFrame
  844. end)
  845.  
  846. teleportPage:Button("Cross Bridge Pass", function()
  847.     local root = plr.Character.HumanoidRootPart
  848.     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)
  849.     root.CFrame = teleportFrame
  850. end)
  851.  
  852. teleportPage:Button("Arlong Park", function()
  853.     local root = plr.Character.HumanoidRootPart
  854.     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)
  855.     root.CFrame = teleportFrame
  856. end)
  857.  
  858. teleportPage:Button("Buggy Town", function()
  859.     local root = plr.Character.HumanoidRootPart
  860.     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)
  861.     root.CFrame = teleportFrame
  862. end)
  863.  
  864. teleportPage:Button("Windmill Village", function()
  865.     local root = plr.Character.HumanoidRootPart
  866.     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)
  867.     root.CFrame = teleportFrame
  868. end)
  869.  
  870. teleportPage:Button("Black Leg Island", function()
  871.     local root = plr.Character.HumanoidRootPart
  872.     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)
  873.     root.CFrame = teleportFrame
  874. end)
  875.  
  876. teleportPage:Button("Freezing Point Island", function()
  877.     local root = plr.Character.HumanoidRootPart
  878.     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)
  879.     root.CFrame = teleportFrame
  880. end)
  881.  
  882. teleportPage:Button("Revolutionary Island", function()
  883.     local root = plr.Character.HumanoidRootPart
  884.     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)
  885.     root.CFrame = teleportFrame
  886. end)
  887.  
  888. teleportPage:Button("Floating Island", function()
  889.     local root = plr.Character.HumanoidRootPart
  890.     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)
  891.     root.CFrame = teleportFrame
  892. end)
  893.  
  894. teleportPage:Button("Battle Arena", function()
  895.     local root = plr.Character.HumanoidRootPart
  896.     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)
  897.     root.CFrame = teleportFrame
  898. end)
  899.  
  900. game.Players.LocalPlayer.PlayerGui:WaitForChild("Mouse"):Destroy()
  901. game:GetService("UserInputService").MouseIconEnabled = true
  902. local mouse = game.Players.LocalPlayer:GetMouse()
  903. mouse.Icon = ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement