Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- repeat wait() until game:IsLoaded()
- repeat wait() until game:GetService("Players")
- repeat wait() until game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
- repeat wait() until game:GetService("Players").LocalPlayer.PlayerGui.Main.Enabled
- local placeId = game.PlaceId
- if placeId == 2753915549 then
- First_Sea = true
- elseif placeId == 4442272183 then
- Second_Sea = true
- elseif placeId == 7449423635 then
- Third_Sea = true
- end
- if game:GetService("CoreGui"):FindFirstChild("QuartyzLib") then
- game:GetService("CoreGui"):FindFirstChild("QuartyzLib"):Destroy()
- end
- local UserInputService = game:GetService("UserInputService")
- local TweenService = game:GetService("TweenService")
- local RunService = game:GetService("RunService")
- local LocalPlayer = game:GetService("Players").LocalPlayer
- local Mouse = LocalPlayer:GetMouse()
- local HttpService = game:GetService("HttpService")
- local Solaris = Instance.new("ScreenGui")
- Solaris.Name = "QuartyzLib"
- Solaris.Parent = game:GetService("CoreGui")
- Solaris.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- local function MakeDraggable(topbarobject, object)
- local Dragging = nil
- local DragInput = nil
- local DragStart = nil
- local StartPosition = nil
- local function Update(input)
- local Delta = input.Position - DragStart
- local pos = UDim2.new(StartPosition.X.Scale, StartPosition.X.Offset + Delta.X, StartPosition.Y.Scale, StartPosition.Y.Offset + Delta.Y)
- local Tween = TweenService:Create(object, TweenInfo.new(0.15), {Position = pos})
- Tween:Play()
- end
- topbarobject.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- Dragging = true
- DragStart = input.Position
- StartPosition = object.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- Dragging = false
- end
- end)
- end
- end)
- topbarobject.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- DragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == DragInput and Dragging then
- Update(input)
- end
- end)
- end
- function Ripple(Object)
- spawn(function()
- local Circle = Instance.new("ImageLabel")
- Circle.Parent = Object
- Circle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Circle.BackgroundTransparency = 1.000
- Circle.ZIndex = 10
- Circle.Image = "rbxassetid://266543268"
- Circle.ImageColor3 = Color3.fromRGB(210,210,210)
- Circle.ImageTransparency = 0.8
- Circle.Position = UDim2.new(0, Mouse.X - Circle.AbsolutePosition.X, 0, Mouse.Y - Circle.AbsolutePosition.Y)
- local Size = Object.AbsoluteSize.X
- TweenService:Create(Circle, TweenInfo.new(0.5), {Position = UDim2.fromScale(math.clamp(Mouse.X - Object.AbsolutePosition.X, 0, Object.AbsoluteSize.X)/Object.AbsoluteSize.X,Object,math.clamp(Mouse.Y - Object.AbsolutePosition.Y, 0, Object.AbsoluteSize.Y)/Object.AbsoluteSize.Y) - UDim2.fromOffset(Size/2,Size/2), ImageTransparency = 1, Size = UDim2.fromOffset(Size,Size)}):Play()
- spawn(function()
- wait(0.5)
- Circle:Destroy()
- end)
- end)
- end
- local SolarisLib = {
- ["Themes"] = {
- ["Default"] = {
- MainFrame = Color3.fromRGB(25, 25, 25),
- TopBar = Color3.fromRGB(30, 30, 30),
- TextColor = Color3.fromRGB(255,255,255),
- Menu = Color3.fromRGB(37, 37, 37),
- TabToggled = Color3.fromRGB(43,43,43),
- Button = Color3.fromRGB(30,30,30),
- ButtonHold = Color3.fromRGB(31,31,31),
- Toggle = Color3.fromRGB(30,30,30),
- ToggleFrame = Color3.fromRGB(155,155,155),
- ToggleToggled = Color3.fromRGB(22, 168, 76),
- Slider = Color3.fromRGB(30,30,30),
- SliderVal = Color3.fromRGB(25, 25, 25),
- SliderInc = Color3.fromRGB(60, 60, 60),
- Dropdown = Color3.fromRGB(30,30,30),
- DropdownItem = Color3.fromRGB(30,30,30),
- Textbox = Color3.fromRGB(30,30,30),
- TextboxFrame = Color3.fromRGB(25, 25, 25),
- Colorpicker = Color3.fromRGB(30,30,30),
- Label = Color3.fromRGB(30,30,30),
- Bind = Color3.fromRGB(30,30,30)
- },
- ["Discord"] = {
- MainFrame = Color3.fromRGB(54,57,63),
- TopBar = Color3.fromRGB(47,49,54),
- TextColor = Color3.fromRGB(255,255,255),
- Menu = Color3.fromRGB(47,49,54),
- TabToggled = Color3.fromRGB(54,57,63),
- Button = Color3.fromRGB(88,101,242),
- ButtonHold = Color3.fromRGB(71,82,196),
- Toggle = Color3.fromRGB(47,49,54),
- ToggleFrame = Color3.fromRGB(67,69,74),
- ToggleToggled = Color3.fromRGB(22, 168, 76),
- Slider = Color3.fromRGB(47,49,54),
- SliderVal = Color3.fromRGB(42,44,49),
- SliderInc = Color3.fromRGB(62,64,69),
- Dropdown = Color3.fromRGB(47,49,54),
- DropdownItem = Color3.fromRGB(47,49,54),
- Textbox = Color3.fromRGB(47,49,54),
- TextboxFrame = Color3.fromRGB(42,44,49),
- Colorpicker = Color3.fromRGB(47,49,54),
- Label = Color3.fromRGB(47,49,54),
- Bind = Color3.fromRGB(47,49,54)
- },
- ["Blue"] = {
- MainFrame = Color3.fromRGB(35, 35, 50),
- TopBar = Color3.fromRGB(40, 40, 55),
- TextColor = Color3.fromRGB(255,255,255),
- Menu = Color3.fromRGB(47, 47, 62),
- TabToggled = Color3.fromRGB(53,53,68),
- Button = Color3.fromRGB(40,40,55),
- ButtonHold = Color3.fromRGB(41,41,56),
- Toggle = Color3.fromRGB(40,40,55),
- ToggleFrame = Color3.fromRGB(65,65,80),
- ToggleToggled = Color3.fromRGB(64, 64, 120),
- Slider = Color3.fromRGB(40,40,55),
- SliderVal = Color3.fromRGB(35, 35, 50),
- SliderInc = Color3.fromRGB(70, 70, 85),
- Dropdown = Color3.fromRGB(40,40,55),
- DropdownItem = Color3.fromRGB(40,40,55),
- Textbox = Color3.fromRGB(40,40,55),
- TextboxFrame = Color3.fromRGB(35, 35, 50),
- Colorpicker = Color3.fromRGB(40,40,55),
- Label = Color3.fromRGB(40,40,55),
- Bind = Color3.fromRGB(40,40,55)
- },
- ["Red"] = {
- MainFrame = Color3.fromRGB(50, 35, 35),
- TopBar = Color3.fromRGB(55, 40, 40),
- TextColor = Color3.fromRGB(255,255,255),
- Menu = Color3.fromRGB(62, 47, 47),
- TabToggled = Color3.fromRGB(68,53,53),
- Button = Color3.fromRGB(55,40,40),
- ButtonHold = Color3.fromRGB(56,41,41),
- Toggle = Color3.fromRGB(55,40,40),
- ToggleFrame = Color3.fromRGB(80,65,65),
- ToggleToggled = Color3.fromRGB(120, 64, 64),
- Slider = Color3.fromRGB(55,40,40),
- SliderVal = Color3.fromRGB(50, 35, 35),
- SliderInc = Color3.fromRGB(85, 70, 70),
- Dropdown = Color3.fromRGB(55,40,40),
- DropdownItem = Color3.fromRGB(55,40,40),
- Textbox = Color3.fromRGB(55,40,40),
- TextboxFrame = Color3.fromRGB(50, 35, 35),
- Colorpicker = Color3.fromRGB(55,40,40),
- Label = Color3.fromRGB(55,40,40),
- Bind = Color3.fromRGB(55,40,40)
- },
- ["Green"] = {
- MainFrame = Color3.fromRGB(35, 50, 35),
- TopBar = Color3.fromRGB(40, 55, 40),
- TextColor = Color3.fromRGB(255,255,255),
- Menu = Color3.fromRGB(47, 62, 47),
- TabToggled = Color3.fromRGB(53,68,53),
- Button = Color3.fromRGB(40,55,40),
- ButtonHold = Color3.fromRGB(41,56,41),
- Toggle = Color3.fromRGB(40,55,40),
- ToggleFrame = Color3.fromRGB(65,80,65),
- ToggleToggled = Color3.fromRGB(64, 120, 64),
- Slider = Color3.fromRGB(40,55,40),
- SliderVal = Color3.fromRGB(35, 50, 35),
- SliderInc = Color3.fromRGB(70, 85, 70),
- Dropdown = Color3.fromRGB(40,55,40),
- DropdownItem = Color3.fromRGB(40,55,40),
- Textbox = Color3.fromRGB(40,55,40),
- TextboxFrame = Color3.fromRGB(35, 50, 35),
- Colorpicker = Color3.fromRGB(40,55,40),
- Label = Color3.fromRGB(40,55,40),
- Bind = Color3.fromRGB(40,55,40)
- }
- },
- Settings = {
- ["Theme"] = "Default",
- CloseBind = "RightControl"
- },
- Flags = {},
- CurrentTab
- }
- local NotiFrame = Instance.new("Frame")
- NotiFrame.Name = "NotiFrame"
- NotiFrame.Parent = Solaris
- NotiFrame.AnchorPoint = Vector2.new(0.5, 0)
- NotiFrame.BackgroundColor3 = Color3.fromRGB(35,35,35)
- NotiFrame.BorderSizePixel = 0
- NotiFrame.Position = UDim2.new(0.85, 0, 0, 0)
- NotiFrame.Size = UDim2.new(0, 400, 1, 0)
- NotiFrame.ClipsDescendants = true
- NotiFrame.BackgroundTransparency = 1
- local Notilistlayout = Instance.new("UIListLayout")
- Notilistlayout.Parent = NotiFrame
- Notilistlayout.SortOrder = Enum.SortOrder.LayoutOrder
- Notilistlayout.Padding = UDim.new(0, 5)
- Notilistlayout.VerticalAlignment = Enum.VerticalAlignment.Bottom
- function SolarisLib:Notification(titel,text,delays)
- local TitleFrame = Instance.new("Frame")
- TitleFrame.Name = "TitleFrame"
- TitleFrame.Parent = NotiFrame
- TitleFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- TitleFrame.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].MainFrame
- TitleFrame.BorderSizePixel = 0
- TitleFrame.Position = UDim2.new(0.5, 0, 0.5,0)
- TitleFrame.Size = UDim2.new(0, 0, 0, 0)
- TitleFrame.ClipsDescendants = true
- local ConnerTitile = Instance.new("UICorner")
- ConnerTitile.CornerRadius = UDim.new(0, 4)
- ConnerTitile.Parent = TitleFrame
- TitleFrame:TweenSizeAndPosition(UDim2.new(0, 400-10, 0, 70), UDim2.new(0.5, 0, 0.5,0), "Out", "Quad", 0.3, true)
- local imagenoti = Instance.new("ImageLabel")
- imagenoti.Parent = TitleFrame
- imagenoti.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- imagenoti.BackgroundTransparency = 1.000
- imagenoti.AnchorPoint = Vector2.new(0.5, 0.5)
- imagenoti.Position = UDim2.new(0.9, 0, 0.5, 0)
- imagenoti.Size = UDim2.new(0, 50, 0, 50)
- local txdlid = Instance.new("TextLabel")
- txdlid.Parent = TitleFrame
- txdlid.Name = "TextLabel_Tap"
- txdlid.BackgroundColor3 = Color3.fromRGB(50,50,50)
- txdlid.Size =UDim2.new(0, 160, 0,25 )
- txdlid.Font = Enum.Font.GothamBold
- txdlid.Text = titel
- txdlid.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- txdlid.TextSize = 13.000
- txdlid.AnchorPoint = Vector2.new(0.5, 0.5)
- txdlid.Position = UDim2.new(0.23, 0, 0.3, 0)
- txdlid.TextXAlignment = Enum.TextXAlignment.Left
- txdlid.BackgroundTransparency = 1
- local LableFrame = Instance.new("Frame")
- LableFrame.Name = "LableFrame"
- LableFrame.Parent = TitleFrame
- LableFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- LableFrame.BackgroundColor3 = Color3.fromRGB(50,50,50)
- LableFrame.BorderSizePixel = 0
- LableFrame.Position = UDim2.new(0.36, 0, 0.67,0)
- LableFrame.Size = UDim2.new(0, 260, 0,25 )
- LableFrame.ClipsDescendants = true
- LableFrame.BackgroundTransparency = 1
- local TextNoti = Instance.new("TextLabel")
- TextNoti.Parent = LableFrame
- TextNoti.Name = "TextLabel_Tap"
- TextNoti.BackgroundColor3 = Color3.fromRGB(255,255,255)
- TextNoti.Size = UDim2.new(0, 260, 0,25)
- TextNoti.Font = Enum.Font.GothamBold
- TextNoti.Text = text
- TextNoti.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- TextNoti.TextSize = 13.000
- TextNoti.AnchorPoint = Vector2.new(0.5, 0.5)
- TextNoti.Position = UDim2.new(0.5, 0, 0.5, 0)
- TextNoti.TextXAlignment = Enum.TextXAlignment.Left
- TextNoti.BackgroundTransparency = 1
- repeat wait() until TitleFrame.Size == UDim2.new(0, 400-10, 0, 70)
- local Time = Instance.new("Frame")
- Time.Name = "Time"
- Time.Parent = TitleFrame
- Time.BackgroundColor3 = Color3.fromRGB(255,255,255)
- Time.BorderSizePixel = 0
- Time.Position = UDim2.new(0, 0, 0.,0)
- Time.Size = UDim2.new(0, 0,0,0)
- Time.ClipsDescendants = false
- Time.BackgroundTransparency = 0
- local ConnerTitile_Time = Instance.new("UICorner")
- ConnerTitile_Time.CornerRadius = UDim.new(0, 4)
- ConnerTitile_Time.Name = ""
- ConnerTitile_Time.Parent = Time
- Time:TweenSizeAndPosition(UDim2.new(0, 400-10, 0, 3), UDim2.new(0., 0, 0.,0), "Out", "Sine", 0.3, true)
- repeat wait() until Time.Size == UDim2.new(0, 400-10, 0, 3)
- TweenService:Create(
- Time,
- TweenInfo.new(tonumber(delays), Enum.EasingStyle.Linear, Enum.EasingDirection.InOut),
- {Size = UDim2.new(0, 0, 0, 3)}
- ):Play()
- delay(tonumber(delays),function()
- TweenService:Create(
- TitleFrame,
- TweenInfo.new(0.4, Enum.EasingStyle.Back, Enum.EasingDirection.InOut),
- {Size = UDim2.new(0, 0, 0, 0)}
- ):Play()
- wait(0.3)
- TitleFrame:Destroy()
- end)
- end
- function SolarisLib:Window(text)
- local fs = false
- local MainFrameHolder = Instance.new("Frame")
- local Shadow = Instance.new("Frame")
- local Image = Instance.new("ImageLabel")
- local Image_2 = Instance.new("ImageLabel")
- local MainFrame = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local TopBar = Instance.new("ImageLabel")
- local TopFrameTitle = Instance.new("TextLabel")
- local TabListBtn = Instance.new("ImageButton")
- local UIListLayout = Instance.new("UIListLayout")
- local MenuBtn = Instance.new("TextButton")
- local Ico = Instance.new("ImageLabel")
- local MenuFrame = Instance.new("Frame")
- local UICorner_2 = Instance.new("UICorner")
- local Shadow_2 = Instance.new("Frame")
- local Image_3 = Instance.new("ImageLabel")
- local Image_4 = Instance.new("ImageLabel")
- local Frame = Instance.new("Frame")
- local UICorner_3 = Instance.new("UICorner")
- local CloseBtn = Instance.new("TextButton")
- local Ico_2 = Instance.new("ImageLabel")
- local Ico_3 = Instance.new("ImageLabel")
- local UISizeConstraint = Instance.new("UISizeConstraint")
- local UIPadding = Instance.new("UIPadding")
- local UICorner_4 = Instance.new("UICorner")
- local TopBarLine = Instance.new("Frame")
- local TabMenu = Instance.new("Frame")
- local Menu = Instance.new("Frame")
- local UICorner_5 = Instance.new("UICorner")
- local Top = Instance.new("Frame")
- local TopBarLine_2 = Instance.new("Frame")
- local MenuCloseBtn = Instance.new("TextButton")
- local ImageLabel = Instance.new("ImageLabel")
- local Holder = Instance.new("Frame")
- local UIPadding_2 = Instance.new("UIPadding")
- local UIListLayout_2 = Instance.new("UIListLayout")
- local Shadow_3 = Instance.new("Frame")
- local Glow = Instance.new("ImageLabel")
- MainFrameHolder.Name = "MainFrameHolder"
- MainFrameHolder.Parent = Solaris
- MainFrameHolder.AnchorPoint = Vector2.new(0.5, 0.5)
- MainFrameHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MainFrameHolder.BackgroundTransparency = 1.000
- MainFrameHolder.Position = UDim2.new(0.5, 0, 0.5, 0)
- MainFrameHolder.Size = UDim2.new(0, 0, 0, 0)
- Shadow.Name = "Shadow"
- Shadow.Parent = MainFrameHolder
- Shadow.AnchorPoint = Vector2.new(0.5, 0.5)
- Shadow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Shadow.BackgroundTransparency = 1.000
- Shadow.BorderSizePixel = 0
- Shadow.Position = UDim2.new(0.5, 0, 0.5, 0)
- Shadow.Size = UDim2.new(1, 0, 1, 25)
- Image.Name = "Image"
- Image.Parent = Shadow
- Image.AnchorPoint = Vector2.new(0.5, 0.5)
- Image.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Image.BackgroundTransparency = 1.000
- Image.BorderSizePixel = 0
- Image.Position = UDim2.new(0.5, 0, 0.5, 0)
- Image.Size = UDim2.new(1.60000002, 0, 1.29999995, 0)
- Image.ZIndex = 7
- Image.Image = "rbxassetid://5587865193"
- Image.ImageColor3 = Color3.fromRGB(0, 0, 0)
- Image.ImageTransparency = 0.300
- Image_2.Name = "Image"
- Image_2.Parent = Shadow
- Image_2.AnchorPoint = Vector2.new(0.5, 0.5)
- Image_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Image_2.BackgroundTransparency = 1.000
- Image_2.BorderSizePixel = 0
- Image_2.Position = UDim2.new(0.5, 0, 0.5, -5)
- Image_2.Size = UDim2.new(1.20000005, 0, 1.10000002, 0)
- Image_2.ZIndex = 7
- Image_2.Image = "rbxassetid://5587865193"
- Image_2.ImageColor3 = Color3.fromRGB(0, 0, 0)
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = MainFrameHolder
- MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- MainFrame.ClipsDescendants = true
- MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
- MainFrame.Size = UDim2.new(1, 0, 1, 0)
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = MainFrame
- TopBar.Name = "TopBar"
- TopBar.Parent = MainFrame
- TopBar.BackgroundColor3 = Color3.fromRGB(248, 248, 248)
- TopBar.BackgroundTransparency = 1.000
- TopBar.BorderSizePixel = 0
- TopBar.Size = UDim2.new(1, 0, 0, 40)
- TopBar.ZIndex = 3
- TopBar.Image = "rbxassetid://6276641225"
- TopBar.ImageColor3 = Color3.fromRGB(30, 30, 30)
- TopBar.ScaleType = Enum.ScaleType.Slice
- TopBar.SliceCenter = Rect.new(256, 256, 256, 256)
- TopBar.SliceScale = 0.022
- TopFrameTitle.Name = "TopFrameTitle"
- TopFrameTitle.Parent = TopBar
- TopFrameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TopFrameTitle.BackgroundTransparency = 1.000
- TopFrameTitle.Position = UDim2.new(0, 33, 0, 0)
- TopFrameTitle.Size = UDim2.new(1, -33, 1, 0)
- TopFrameTitle.Font = Enum.Font.Gotham
- TopFrameTitle.Text = text
- TopFrameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- TopFrameTitle.TextSize = 14.000
- TopFrameTitle.TextXAlignment = Enum.TextXAlignment.Left
- TabListBtn.Name = "TabListBtn"
- TabListBtn.Parent = TopBar
- TabListBtn.AnchorPoint = Vector2.new(0, 0.5)
- TabListBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TabListBtn.BackgroundTransparency = 1.000
- TabListBtn.Position = UDim2.new(0, 10, 0.5, 0)
- TabListBtn.Size = UDim2.new(0, 20, 0, 20)
- TabListBtn.Image = "http://www.roblox.com/asset/?id=5576439039"
- TabListBtn.ImageTransparency = 0.400
- UICorner_3.CornerRadius = UDim.new(0, 6)
- UICorner_3.Parent = Frame
- TopBarLine.Name = "TopBarLine"
- TopBarLine.Parent = TopBar
- TopBarLine.AnchorPoint = Vector2.new(0, 1)
- TopBarLine.BackgroundColor3 = Color3.fromRGB(175, 175, 175)
- TopBarLine.BackgroundTransparency = 0.900
- TopBarLine.BorderSizePixel = 0
- TopBarLine.Position = UDim2.new(0, 0, 1, 0)
- TopBarLine.Size = UDim2.new(1, 0, 0, 1)
- TabMenu.Name = "TabMenu"
- TabMenu.Parent = MainFrame
- TabMenu.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
- TabMenu.BackgroundTransparency = 1.000
- TabMenu.Position = UDim2.new(-0.370000005, -8, 0, 0)
- TabMenu.Size = UDim2.new(0.370000005, 0, 1, 0)
- TabMenu.ZIndex = 99
- Menu.Name = "Menu"
- Menu.Parent = TabMenu
- Menu.BackgroundColor3 = Color3.fromRGB(37, 37, 37)
- Menu.Size = UDim2.new(1, 0, 1, 0)
- Menu.ZIndex = 99
- UICorner_5.CornerRadius = UDim.new(0, 6)
- UICorner_5.Parent = Menu
- Top.Name = "Top"
- Top.Parent = Menu
- Top.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Top.BackgroundTransparency = 1.000
- Top.BorderSizePixel = 0
- Top.Size = UDim2.new(1, 0, 0, 40)
- Top.ZIndex = 3
- TopBarLine_2.Name = "TopBarLine"
- TopBarLine_2.Parent = Top
- TopBarLine_2.AnchorPoint = Vector2.new(0, 1)
- TopBarLine_2.BackgroundColor3 = Color3.fromRGB(175, 175, 175)
- TopBarLine_2.BackgroundTransparency = 0.900
- TopBarLine_2.BorderSizePixel = 0
- TopBarLine_2.Position = UDim2.new(0, 0, 1, 0)
- TopBarLine_2.Size = UDim2.new(1, 0, 0, 1)
- MenuCloseBtn.Name = "MenuCloseBtn"
- MenuCloseBtn.Parent = Top
- MenuCloseBtn.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MenuCloseBtn.BackgroundTransparency = 1.000
- MenuCloseBtn.Size = UDim2.new(0, 40, 0, 40)
- MenuCloseBtn.Font = Enum.Font.SourceSans
- MenuCloseBtn.Text = ""
- MenuCloseBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
- MenuCloseBtn.TextSize = 14.000
- ImageLabel.Parent = MenuCloseBtn
- ImageLabel.AnchorPoint = Vector2.new(0.5, 0.5)
- ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ImageLabel.BackgroundTransparency = 1.000
- ImageLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
- ImageLabel.Size = UDim2.new(0, 10, 0, 10)
- ImageLabel.Image = "http://www.roblox.com/asset/?id=6521435525"
- Holder.Name = "Holder"
- Holder.Parent = Menu
- Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Holder.BackgroundTransparency = 1.000
- Holder.Position = UDim2.new(0, 0, 0, 40)
- Holder.Size = UDim2.new(1, 0, 1, -40)
- UIPadding_2.Parent = Holder
- UIPadding_2.PaddingTop = UDim.new(0, 7)
- UIListLayout_2.Parent = Holder
- UIListLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center
- UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
- Shadow_3.Name = "Shadow"
- Shadow_3.Parent = TabMenu
- Shadow_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Shadow_3.BackgroundTransparency = 1.000
- Shadow_3.ClipsDescendants = true
- Shadow_3.Size = UDim2.new(1, 8, 1, 0)
- Glow.Name = "Glow"
- Glow.Parent = Shadow_3
- Glow.AnchorPoint = Vector2.new(0.5, 0.5)
- Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Glow.BackgroundTransparency = 1.000
- Glow.BorderSizePixel = 0
- Glow.Position = UDim2.new(0.5, -6, 0.5, 0)
- Glow.Size = UDim2.new(1, 28, 1, 28)
- Glow.ZIndex = 0
- Glow.Image = "rbxassetid://4996891970"
- Glow.ImageColor3 = Color3.fromRGB(15, 15, 15)
- Glow.ScaleType = Enum.ScaleType.Slice
- Glow.SliceCenter = Rect.new(20, 20, 280, 280)
- local ContainerFolder = Instance.new("Folder")
- ContainerFolder.Name = "ContainerFolder"
- ContainerFolder.Parent = MainFrame
- TabListBtn.MouseButton1Click:Connect(function()
- TweenService:Create(
- TabMenu,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Position = UDim2.new(0,0,0,0)}
- ):Play()
- end)
- MenuCloseBtn.MouseButton1Click:Connect(function()
- TweenService:Create(
- TabMenu,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Position = UDim2.new(-0.37, -8, 0, 0)}
- ):Play()
- end)
- CloseBtn.MouseEnter:Connect(function()
- TweenService:Create(
- Ico,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {ImageTransparency = 0}
- ):Play()
- end)
- CloseBtn.MouseLeave:Connect(function()
- TweenService:Create(
- Ico,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {ImageTransparency = 0.4}
- ):Play()
- end)
- MenuBtn.MouseEnter:Connect(function()
- TweenService:Create(
- Ico,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {ImageTransparency = 0}
- ):Play()
- end)
- MenuBtn.MouseLeave:Connect(function()
- TweenService:Create(
- Ico,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {ImageTransparency = 0.4}
- ):Play()
- end)
- TabListBtn.MouseEnter:Connect(function()
- TweenService:Create(
- TabListBtn,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {ImageTransparency = 0}
- ):Play()
- end)
- TabListBtn.MouseLeave:Connect(function()
- TweenService:Create(
- TabListBtn,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {ImageTransparency = 0.4}
- ):Play()
- end)
- MenuBtn.MouseButton1Click:Connect(function()
- MenuFrame.Visible = not MenuFrame.Visible
- end)
- local uitoggled = false
- UserInputService.InputBegan:Connect(function(input)
- if input.KeyCode.Name == SolarisLib.Settings.CloseBind then
- if uitoggled == false then
- MainFrameHolder:TweenSize(UDim2.new(0, 0, 0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
- uitoggled = true
- MainFrameHolder.Visible = false
- else
- MainFrameHolder.Visible = true
- MainFrameHolder:TweenSize(UDim2.new(0, 480, 0, 380), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
- uitoggled = false
- end
- end
- end)
- MainFrameHolder:TweenSize(UDim2.new(0, 480, 0, 380), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .3, true)
- MakeDraggable(TopBar, MainFrameHolder)
- spawn(function()
- while wait() do
- pcall(function()
- MainFrame.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].MainFrame
- TopBar.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TopBar
- TabListBtn.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- TopFrameTitle.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- Menu.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Menu
- MenuCloseBtn.ImageLabel.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- local TabList = {}
- function TabList:Tab(text)
- local Tab = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local UIPadding = Instance.new("UIPadding")
- Tab.Name = "Tab"
- Tab.Parent = Holder
- Tab.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- Tab.BackgroundTransparency = 1.000
- Tab.Size = UDim2.new(0.87, 0, 0, 30)
- Tab.Font = Enum.Font.Gotham
- Tab.Text = text
- Tab.TextColor3 = Color3.fromRGB(255, 255, 255)
- Tab.TextSize = 13.000
- Tab.TextTransparency = 0.400
- Tab.TextXAlignment = Enum.TextXAlignment.Left
- UICorner.CornerRadius = UDim.new(0, 8)
- UICorner.Parent = Tab
- UIPadding.Parent = Tab
- UIPadding.PaddingLeft = UDim.new(0, 5)
- local Container = Instance.new("ScrollingFrame")
- local UIListLayout = Instance.new("UIListLayout")
- local UIPadding = Instance.new("UIPadding")
- Container.Name = "Container"
- Container.Parent = ContainerFolder
- Container.Active = true
- Container.BackgroundColor3 = Color3.fromRGB(22, 22, 22)
- Container.BackgroundTransparency = 1.000
- Container.BorderSizePixel = 0
- Container.Position = UDim2.new(0, 0, 0, 42)
- Container.AutomaticCanvasSize = Enum.AutomaticSize.Y
- Container.CanvasSize = UDim2.new(0, 0, 0, 0)
- Container.Selectable = false
- Container.Size = UDim2.new(1, 0, 1, -42)
- Container.ScrollBarThickness = 4
- Container.Visible = false
- UIListLayout.Parent = Container
- UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
- UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
- UIListLayout.Padding = UDim.new(0, 6)
- UIPadding.Parent = Container
- UIPadding.PaddingTop = UDim.new(0, 6)
- if fs == false then
- fs = true
- Container.Visible = true
- Tab.UIPadding.PaddingLeft = UDim.new(0,10)
- Tab.TextTransparency = 0
- Tab.BackgroundTransparency = 0
- SolarisLib.CurrentTab = Container
- end
- Tab.MouseButton1Click:Connect(function()
- for i,v in next, Holder:GetChildren() do
- if v:IsA("TextButton") then
- TweenService:Create(
- v,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0.4}
- ):Play()
- TweenService:Create(
- v,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundTransparency = 1}
- ):Play()
- TweenService:Create(
- v.UIPadding,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {PaddingLeft = UDim.new(0,5)}
- ):Play()
- end
- TweenService:Create(
- Tab,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0}
- ):Play()
- TweenService:Create(
- Tab,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundTransparency = 0}
- ):Play()
- TweenService:Create(
- Tab.UIPadding,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {PaddingLeft = UDim.new(0,10)}
- ):Play()
- end
- for i,v in next, ContainerFolder:GetChildren() do
- if v.Name == "Container" then
- v.Visible = false
- end
- Container.Visible = true
- end
- local tabtoggledname = Tab.Name
- TweenService:Create(
- TabMenu,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Position = UDim2.new(-0.37, -8, 0, 0)}
- ):Play()
- end)
- local SectionHold = {}
- function SectionHold:Section(text)
- local Section = Instance.new("Frame")
- local SectionTitle = Instance.new("TextLabel")
- local UIListLayout = Instance.new("UIListLayout")
- Section.Name = "Section"
- Section.Parent = Container
- Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Section.BackgroundTransparency = 1.000
- Section.Size = UDim2.new(0.899999976, 0, 0, 0)
- SectionTitle.Name = "SectionTitle"
- SectionTitle.Parent = Section
- SectionTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- SectionTitle.BackgroundTransparency = 1.000
- SectionTitle.Size = UDim2.new(0, 200, 0, 10)
- SectionTitle.Font = Enum.Font.Gotham
- SectionTitle.Text = text
- SectionTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- SectionTitle.TextSize = 12.000
- SectionTitle.TextTransparency = 0.380
- SectionTitle.TextXAlignment = Enum.TextXAlignment.Left
- UIListLayout.Parent = Section
- UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
- UIListLayout.Padding = UDim.new(0, 6)
- spawn(function()
- while wait() do
- pcall(function()
- SectionTitle.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- Section.Size = UDim2.new(0.9,0,0, UIListLayout.AbsoluteContentSize.Y + 15)
- end)
- end
- end)
- local Libfunc = {}
- function Libfunc:Button(text, callback)
- local Button = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local Glow = Instance.new("ImageLabel")
- local ButtonText = Instance.new("TextLabel")
- Button.Name = "Button"
- Button.Parent = Section
- Button.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
- Button.Size = UDim2.new(1, 0, 0, 32)
- Button.AutoButtonColor = false
- Button.Font = Enum.Font.SourceSans
- Button.Text = ""
- Button.TextColor3 = Color3.fromRGB(0, 0, 0)
- Button.TextSize = 14.000
- Button.TextTransparency = 1.000
- Button.TextXAlignment = Enum.TextXAlignment.Left
- Button.ClipsDescendants = true
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Button
- Glow.Name = "Glow"
- Glow.Parent = Button
- Glow.AnchorPoint = Vector2.new(0.5, 0.5)
- Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Glow.BackgroundTransparency = 1.000
- Glow.BorderSizePixel = 0
- Glow.Position = UDim2.new(0.5, 0, 0.5, 0)
- Glow.Size = UDim2.new(1, 30, 1, 30)
- Glow.ZIndex = 0
- Glow.Image = "rbxassetid://4996891970"
- Glow.ImageColor3 = Color3.fromRGB(10, 10, 10)
- Glow.ImageTransparency = 0.860
- Glow.ScaleType = Enum.ScaleType.Slice
- Glow.SliceCenter = Rect.new(20, 20, 280, 280)
- ButtonText.Name = "ButtonText"
- ButtonText.Parent = Button
- ButtonText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ButtonText.BackgroundTransparency = 1.000
- ButtonText.Position = UDim2.new(0, 10, 0, 0)
- ButtonText.Size = UDim2.new(1, -10, 1, 0)
- ButtonText.Font = Enum.Font.Gotham
- ButtonText.Text = text
- ButtonText.TextColor3 = Color3.fromRGB(255, 255, 255)
- ButtonText.TextSize = 14.000
- ButtonText.TextXAlignment = Enum.TextXAlignment.Left
- Button.MouseButton1Click:Connect(function()
- pcall(callback)
- Ripple(Button)
- TweenService:Create(
- UICorner,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {CornerRadius = UDim.new(0, 12)}
- ):Play()
- wait(.1)
- TweenService:Create(
- UICorner,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {CornerRadius = UDim.new(0, 6)}
- ):Play()
- end)
- local Holding = false
- Button.MouseEnter:Connect(function()
- Holding = true
- end)
- Button.MouseLeave:Connect(function()
- Holding = false
- end)
- spawn(function()
- while wait() do
- pcall(function()
- Button.BackgroundColor3 = Holding and SolarisLib.Themes[SolarisLib.Settings.Theme].ButtonHold or SolarisLib.Themes[SolarisLib.Settings.Theme].Button
- Button.ButtonText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Libfunc:Toggle(text, default, callback)
- local togglefunc = {}
- local toggled = default or false
- local Toggle = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local Glow = Instance.new("ImageLabel")
- local ToggleText = Instance.new("TextLabel")
- local ToggleFrame = Instance.new("Frame")
- local UICorner_2 = Instance.new("UICorner")
- local ToggleToggled = Instance.new("Frame")
- local UICorner_3 = Instance.new("UICorner")
- local ToggleIco = Instance.new("ImageLabel")
- Toggle.Name = "Toggle"
- Toggle.Parent = Section
- Toggle.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
- Toggle.Size = UDim2.new(1, 0, 0, 32)
- Toggle.AutoButtonColor = false
- Toggle.Font = Enum.Font.SourceSans
- Toggle.Text = ""
- Toggle.TextColor3 = Color3.fromRGB(0, 0, 0)
- Toggle.TextSize = 14.000
- Toggle.TextTransparency = 1.000
- Toggle.TextXAlignment = Enum.TextXAlignment.Left
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Toggle
- Glow.Name = "Glow"
- Glow.Parent = Toggle
- Glow.AnchorPoint = Vector2.new(0.5, 0.5)
- Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Glow.BackgroundTransparency = 1.000
- Glow.BorderSizePixel = 0
- Glow.Position = UDim2.new(0.5, 0, 0.5, 0)
- Glow.Size = UDim2.new(1, 30, 1, 30)
- Glow.ZIndex = 0
- Glow.Image = "rbxassetid://4996891970"
- Glow.ImageColor3 = Color3.fromRGB(10, 10, 10)
- Glow.ImageTransparency = 0.860
- Glow.ScaleType = Enum.ScaleType.Slice
- Glow.SliceCenter = Rect.new(20, 20, 280, 280)
- ToggleText.Name = "ToggleText"
- ToggleText.Parent = Toggle
- ToggleText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ToggleText.BackgroundTransparency = 1.000
- ToggleText.Position = UDim2.new(0, 10, 0, 0)
- ToggleText.Size = UDim2.new(0, 1, 1, 0)
- ToggleText.Font = Enum.Font.Gotham
- ToggleText.Text = text
- ToggleText.TextColor3 = Color3.fromRGB(255, 255, 255)
- ToggleText.TextSize = 14.000
- ToggleText.TextXAlignment = Enum.TextXAlignment.Left
- ToggleFrame.Name = "ToggleFrame"
- ToggleFrame.Parent = Toggle
- ToggleFrame.AnchorPoint = Vector2.new(1, 0.5)
- ToggleFrame.BackgroundColor3 = Color3.fromRGB(150, 150, 150)
- ToggleFrame.Position = UDim2.new(1, -10, 0.5, 0)
- ToggleFrame.Size = UDim2.new(0, 20, 0, 20)
- UICorner_2.CornerRadius = UDim.new(0, 4)
- UICorner_2.Parent = ToggleFrame
- ToggleToggled.Name = "ToggleToggled"
- ToggleToggled.Parent = ToggleFrame
- ToggleToggled.AnchorPoint = Vector2.new(0.5, 0.5)
- ToggleToggled.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
- ToggleToggled.Position = UDim2.new(0.5, 0, 0.5, 0)
- ToggleToggled.Size = UDim2.new(1, -2, 1, -2)
- UICorner_3.CornerRadius = UDim.new(0, 4)
- UICorner_3.Parent = ToggleToggled
- ToggleIco.Name = "ToggleIco"
- ToggleIco.Parent = ToggleToggled
- ToggleIco.AnchorPoint = Vector2.new(0.5, 0.5)
- ToggleIco.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ToggleIco.BackgroundTransparency = 1.000
- ToggleIco.Position = UDim2.new(0.5, 0, 0.5, 0)
- ToggleIco.Size = UDim2.new(1, -2, 1, -2)
- ToggleIco.Image = "http://www.roblox.com/asset/?id=6031094667"
- ToggleIco.ImageTransparency = 1.000
- function togglefunc:Set(value)
- TweenService:Create(ToggleIco,TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),{ImageTransparency = value and 0 or 1}):Play()
- TweenService:Create(ToggleIco,TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),{Size = value and UDim2.new(1,-2,1,-2) or UDim2.new(1,-6,1,-6)}):Play()
- return callback(value)
- end
- Toggle.MouseButton1Click:Connect(function()
- toggled = not toggled
- togglefunc:Set(toggled)
- end)
- spawn(function()
- while wait() do
- pcall(function()
- ToggleToggled.BackgroundColor3 = toggled and SolarisLib.Themes[SolarisLib.Settings.Theme].ToggleToggled or SolarisLib.Themes[SolarisLib.Settings.Theme].Toggle
- ToggleFrame.BackgroundColor3 = toggled and SolarisLib.Themes[SolarisLib.Settings.Theme].ToggleToggled or SolarisLib.Themes[SolarisLib.Settings.Theme].ToggleFrame
- Toggle.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Toggle
- ToggleText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- togglefunc:Set(toggled)
- return togglefunc
- end
- function Libfunc:Slider(text, min, max, start, callback)
- local Slider = Instance.new("Frame")
- local SliderText = Instance.new("TextLabel")
- local SliderFrame = Instance.new("Frame")
- local SliderVal = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local BarCorner = Instance.new("UICorner")
- local BarCorner2 = Instance.new("UICorner")
- Slider.Name = "MainSliderFrame"
- Slider.Parent = Section
- Slider.BackgroundColor3 = Color3.fromRGB(28, 28, 28)
- Slider.BorderSizePixel = 0
- Slider.Size = UDim2.new(1, 0, 0, 48)
- UICorner.Name = "MainCorner"
- UICorner.Parent = Slider
- SliderText.Name = "SliderTitle"
- SliderText.Parent = Slider
- SliderText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- SliderText.BackgroundTransparency = 1.000
- SliderText.BorderSizePixel = 0
- SliderText.Position = UDim2.new(0, 10, 0, 0)
- SliderText.Size = UDim2.new(0, 1, 0.5, 0)
- SliderText.Font = Enum.Font.Gotham
- SliderText.Text = text .. " : " .. tostring(start and math.floor((start / max) * (max - min) + min) or 0)
- SliderText.TextColor3 = Color3.fromRGB(255, 255, 255)
- SliderText.TextSize = 14.000
- SliderText.TextXAlignment = Enum.TextXAlignment.Left
- SliderFrame.Name = "SliderFrame"
- SliderFrame.Parent = Slider
- SliderFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- SliderFrame.BackgroundColor3 = Color3.fromRGB(120, 120, 120)
- SliderFrame.BorderSizePixel = 0
- SliderFrame.Position = UDim2.new(0.5, 0, 0.7, 0)
- SliderFrame.Size = UDim2.new(0.95, 0, 0, 5)
- BarCorner.Parent = SliderFrame
- SliderVal.Name = "CurrentValueFrame"
- SliderVal.Parent = SliderFrame
- SliderVal.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- SliderVal.BorderSizePixel = 0
- SliderVal.Size = UDim2.new((start or 0) / max, 0, 0, 5)
- BarCorner2.Parent = SliderVal
- local Dragging = false
- local function move(input)
- local pos = UDim2.new(math.clamp((input.Position.X - SliderFrame.AbsolutePosition.X) / SliderFrame.AbsoluteSize.X, 0, 1),0,1,0)
- SliderVal:TweenSize(pos, "Out", "Sine", 0.1, true)
- local SliderPrecise = ((pos.X.Scale * max) / max) * (max - min) + min
- local SliderNonPrecise = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
- local SliderValue = SliderNonPrecise or SliderPrecise
- SliderValue = tonumber(string.format("%.2f", SliderValue))
- SliderText.Text = text .. " : " .. tostring(SliderValue)
- pcall(callback, SliderValue)
- end
- SliderFrame.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- move(input)
- Dragging = true
- end
- end)
- SliderFrame.InputEnded:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- Dragging = false
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if Dragging and input.UserInputType == Enum.UserInputType.MouseMovement then
- move(input)
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- Slider.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Slider
- SliderFrame.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].SliderVal
- SliderVal.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].SliderInc
- SliderText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Libfunc:Dropdown(text, list, callback)
- local Dropfunc = {}
- local dropdowntoggled = false
- local Dropdown = Instance.new("Frame")
- local Btn = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local Ico = Instance.new("ImageLabel")
- local UICorner = Instance.new("UICorner")
- Dropdown.Name = "Dropdown"
- Dropdown.Parent = Section
- Dropdown.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Dropdown.BackgroundTransparency = 1.000
- Dropdown.ClipsDescendants = true
- Dropdown.Size = UDim2.new(1, 0, 0, 32)
- Btn.Name = "Btn"
- Btn.Parent = Dropdown
- Btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Btn.Size = UDim2.new(1, 0, 0, 32)
- Btn.AutoButtonColor = false
- Btn.Font = Enum.Font.SourceSans
- Btn.Text = ""
- Btn.TextColor3 = Color3.fromRGB(0, 0, 0)
- Btn.TextSize = 14.000
- Title.Name = "Title"
- Title.Parent = Btn
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0, 10, 0, 0)
- Title.Selectable = true
- Title.Size = UDim2.new(0, 1, 0, 32)
- Title.Font = Enum.Font.Gotham
- Title.Text = text .. " : N/A"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 14.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- Ico.Name = "Ico"
- Ico.Parent = Btn
- Ico.AnchorPoint = Vector2.new(1, 0.5)
- Ico.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Ico.BackgroundTransparency = 1.000
- Ico.Position = UDim2.new(1, -10, 0.5, 0)
- Ico.Size = UDim2.new(0, 20, 1, -12)
- Ico.Image = "http://www.roblox.com/asset/?id=6034818379"
- Ico.ImageTransparency = 0.400
- UICorner.CornerRadius = UDim.new(0, 5)
- UICorner.Parent = Btn
- local HolderFrame = Instance.new("Frame")
- local Holder = Instance.new("ScrollingFrame")
- local Layout = Instance.new("UIListLayout")
- local UIPadding = Instance.new("UIPadding")
- HolderFrame.Name = "HolderFrame"
- HolderFrame.Parent = Dropdown
- HolderFrame.BackgroundTransparency = 1
- HolderFrame.ClipsDescendants = true
- HolderFrame.Position = UDim2.new(0, 0, 0, 38)
- HolderFrame.Selectable = true
- HolderFrame.Size = UDim2.new(1, 0, 0, 0)
- HolderFrame.Visible = false
- Holder.Name = "Holder"
- Holder.Parent = HolderFrame
- Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Holder.BackgroundTransparency = 1.000
- Holder.ClipsDescendants = true
- Holder.Position = UDim2.new(0, 0, 0, 0)
- Holder.Size = UDim2.new(1, 0, 0, 0)
- Holder.CanvasSize = UDim2.new(0, 0, 0, 0)
- Holder.ScrollBarThickness = 4
- Holder.BorderSizePixel = 0
- Holder.Visible = false
- Layout.Name = "Layout"
- Layout.Parent = Holder
- Layout.SortOrder = Enum.SortOrder.LayoutOrder
- Layout.Padding = UDim.new(0, 4)
- UIPadding.Parent = Holder
- UIPadding.PaddingTop = UDim.new(0, 2)
- UIPadding.PaddingLeft = UDim.new(0, 12)
- Btn.MouseButton1Click:Connect(function()
- dropdowntoggled = not dropdowntoggled
- TweenService:Create(
- Dropdown,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
- ):Play()
- TweenService:Create(
- Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = dropdowntoggled and 180 or 0}
- ):Play()
- wait(.16)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- Holder.Visible = not Holder.Visible
- HolderFrame.Visible = not HolderFrame.Visible
- end)
- local framesize = 0
- local itemcount = 0
- for i,v in next, list do
- itemcount = itemcount + 1
- if itemcount == 1 then
- framesize = 32
- elseif itemcount == 2 then
- framesize = 61
- elseif itemcount >= 3 then
- framesize = 90
- end
- local Item = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local ItemText = Instance.new("TextLabel")
- Item.Name = "Item"
- Item.Parent = Holder
- Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
- Item.Size = UDim2.new(0.9623000, 0, 0, 28)
- Item.BorderSizePixel = 0
- Item.AutoButtonColor = false
- Item.Font = Enum.Font.Gotham
- Item.Text = ""
- Item.TextColor3 = Color3.fromRGB(255, 255, 255)
- Item.TextSize = 14.000
- Item.TextTransparency = 0.400
- Item.TextXAlignment = Enum.TextXAlignment.Left
- Item.ClipsDescendants = true
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Item
- ItemText.Name = "ItemText"
- ItemText.Parent = Item
- ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.BackgroundTransparency = 1.000
- ItemText.Position = UDim2.new(0, 5, 0, 0)
- ItemText.Size = UDim2.new(0, 1, 1, 0)
- ItemText.Font = Enum.Font.Gotham
- ItemText.Text = v
- ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.TextSize = 13.000
- ItemText.TextTransparency = 0.400
- ItemText.TextXAlignment = Enum.TextXAlignment.Left
- Item.MouseEnter:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0}
- ):Play()
- end)
- Item.MouseLeave:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0.400}
- ):Play()
- end)
- Item.MouseButton1Click:Connect(function()
- dropdowntoggled = not dropdowntoggled
- Ripple(Item)
- Title.Text = text .. " : " .. v
- TweenService:Create(
- Dropdown,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
- ):Play()
- TweenService:Create(
- Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = dropdowntoggled and 180 or 0}
- ):Play()
- wait(.16)
- Dropdown.Size = UDim2.new(1, 0, 0, 32)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- Holder.Visible = not Holder.Visible
- HolderFrame.Visible = not HolderFrame.Visible
- return pcall(callback, v)
- end)
- Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
- Holder.Size = UDim2.new(1, 0, 0, framesize)
- HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
- spawn(function()
- while wait() do
- pcall(function()
- Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Dropfunc:Clear()
- dropdowntoggled = false
- itemcount = 0
- framesize = 0
- for i,v in next, Holder:GetChildren() do
- if v.Name == "Item" then
- v:Destroy()
- end
- end
- Title.Text = text .. " : " .. "N/A"
- TweenService:Create(
- Dropdown,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
- ):Play()
- TweenService:Create(
- Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = dropdowntoggled and 180 or 0}
- ):Play()
- wait(.16)
- Dropdown.Size = UDim2.new(1, 0, 0, 32)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- HolderFrame.Size = UDim2.new(1, 0, 0, 0)
- Holder.Visible = false
- HolderFrame.Visible = false
- end
- function Dropfunc:Add(textadd)
- itemcount = itemcount + 1
- if itemcount == 1 then
- framesize = 29
- elseif itemcount == 2 then
- framesize = 58
- elseif itemcount >= 3 then
- framesize = 87
- end
- local Item = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local ItemText = Instance.new("TextLabel")
- Item.Name = "Item"
- Item.Parent = Holder
- Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
- Item.Size = UDim2.new(0.9623000, 0, 0, 30)
- Item.BorderSizePixel = 0
- Item.AutoButtonColor = false
- Item.Font = Enum.Font.Gotham
- Item.Text = ""
- Item.TextColor3 = Color3.fromRGB(255, 255, 255)
- Item.TextSize = 14.000
- Item.TextTransparency = 0.400
- Item.TextXAlignment = Enum.TextXAlignment.Left
- Item.ClipsDescendants = true
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Item
- ItemText.Name = "ItemText"
- ItemText.Parent = Item
- ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.BackgroundTransparency = 1.000
- ItemText.Position = UDim2.new(0, 5, 0, 0)
- ItemText.Size = UDim2.new(0, 1, 1, 0)
- ItemText.Font = Enum.Font.Gotham
- ItemText.Text = textadd
- ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.TextSize = 13.000
- ItemText.TextTransparency = 0.400
- ItemText.TextXAlignment = Enum.TextXAlignment.Left
- Item.MouseEnter:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0}
- ):Play()
- end)
- Item.MouseLeave:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0.400}
- ):Play()
- end)
- Item.MouseButton1Click:Connect(function()
- dropdowntoggled = not dropdowntoggled
- Ripple(Item)
- Title.Text = text .. " : " .. textadd
- TweenService:Create(
- Dropdown,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
- ):Play()
- TweenService:Create(
- Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = dropdowntoggled and 180 or 0}
- ):Play()
- wait(.16)
- Dropdown.Size = UDim2.new(1, 0, 0, 32)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- Holder.Visible = not Holder.Visible
- HolderFrame.Visible = not HolderFrame.Visible
- return pcall(callback, textadd)
- end)
- Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
- Holder.Size = UDim2.new(1, 0, 0, framesize)
- HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
- spawn(function()
- while wait() do
- pcall(function()
- Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Dropfunc:Set(val)
- Title.Text = text .. " : " .. val
- return callback(val)
- end
- spawn(function()
- while wait() do
- pcall(function()
- Btn.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Dropdown
- Btn.Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- Btn.Ico.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- return Dropfunc
- end
- function Libfunc:MultiDropdown(text, list, callback)
- local DropdownList = {}
- local Dropfunc = {}
- local dropdowntoggled = false
- local Dropdown = Instance.new("Frame")
- local Btn = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local Ico = Instance.new("ImageLabel")
- local UICorner = Instance.new("UICorner")
- Dropdown.Name = "Dropdown"
- Dropdown.Parent = Section
- Dropdown.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Dropdown.BackgroundTransparency = 1.000
- Dropdown.ClipsDescendants = true
- Dropdown.Size = UDim2.new(1, 0, 0, 32)
- Btn.Name = "Btn"
- Btn.Parent = Dropdown
- Btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Btn.Size = UDim2.new(1, 0, 0, 32)
- Btn.AutoButtonColor = false
- Btn.Font = Enum.Font.SourceSans
- Btn.Text = ""
- Btn.TextColor3 = Color3.fromRGB(0, 0, 0)
- Btn.TextSize = 14.000
- Title.Name = "Title"
- Title.Parent = Btn
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0, 10, 0, 0)
- Title.Selectable = true
- Title.Size = UDim2.new(0, 1, 0, 32)
- Title.Font = Enum.Font.Gotham
- Title.Text = text .. " : N/A"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 14.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- Ico.Name = "Ico"
- Ico.Parent = Btn
- Ico.AnchorPoint = Vector2.new(1, 0.5)
- Ico.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Ico.BackgroundTransparency = 1.000
- Ico.Position = UDim2.new(1, -10, 0.5, 0)
- Ico.Size = UDim2.new(0, 20, 1, -12)
- Ico.Image = "http://www.roblox.com/asset/?id=6034818379"
- Ico.ImageTransparency = 0.400
- UICorner.CornerRadius = UDim.new(0, 5)
- UICorner.Parent = Btn
- local HolderFrame = Instance.new("Frame")
- local Holder = Instance.new("ScrollingFrame")
- local Layout = Instance.new("UIListLayout")
- local UIPadding = Instance.new("UIPadding")
- HolderFrame.Name = "HolderFrame"
- HolderFrame.Parent = Dropdown
- HolderFrame.BackgroundTransparency = 1
- HolderFrame.ClipsDescendants = true
- HolderFrame.Position = UDim2.new(0, 0, 0, 38)
- HolderFrame.Selectable = true
- HolderFrame.Size = UDim2.new(1, 0, 0, 0)
- HolderFrame.Visible = false
- Holder.Name = "Holder"
- Holder.Parent = HolderFrame
- Holder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Holder.BackgroundTransparency = 1.000
- Holder.ClipsDescendants = true
- Holder.Position = UDim2.new(0, 0, 0, 0)
- Holder.Size = UDim2.new(1, 0, 0, 0)
- Holder.CanvasSize = UDim2.new(0, 0, 0, 0)
- Holder.ScrollBarThickness = 4
- Holder.BorderSizePixel = 0
- Holder.Visible = false
- Layout.Name = "Layout"
- Layout.Parent = Holder
- Layout.SortOrder = Enum.SortOrder.LayoutOrder
- Layout.Padding = UDim.new(0, 4)
- UIPadding.Parent = Holder
- UIPadding.PaddingTop = UDim.new(0, 2)
- UIPadding.PaddingLeft = UDim.new(0, 12)
- Btn.MouseButton1Click:Connect(function()
- dropdowntoggled = not dropdowntoggled
- TweenService:Create(
- Dropdown,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
- ):Play()
- TweenService:Create(
- Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = dropdowntoggled and 180 or 0}
- ):Play()
- wait(.16)
- Dropdown.Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- Holder.Visible = not Holder.Visible
- HolderFrame.Visible = not HolderFrame.Visible
- end)
- local framesize = 0
- local itemcount = 0
- for i,v in next, list do
- itemcount = itemcount + 1
- if itemcount == 1 then
- framesize = 32
- elseif itemcount == 2 then
- framesize = 61
- elseif itemcount >= 3 then
- framesize = 90
- end
- local Item = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local ItemText = Instance.new("TextLabel")
- Item.Name = "Item"
- Item.Parent = Holder
- Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
- Item.Size = UDim2.new(0.9623000, 0, 0, 28)
- Item.BorderSizePixel = 0
- Item.AutoButtonColor = false
- Item.Font = Enum.Font.Gotham
- Item.Text = ""
- Item.TextColor3 = Color3.fromRGB(255, 255, 255)
- Item.TextSize = 14.000
- Item.TextTransparency = 0.400
- Item.TextXAlignment = Enum.TextXAlignment.Left
- Item.ClipsDescendants = true
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Item
- ItemText.Name = "ItemText"
- ItemText.Parent = Item
- ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.BackgroundTransparency = 1.000
- ItemText.Position = UDim2.new(0, 5, 0, 0)
- ItemText.Size = UDim2.new(0, 1, 1, 0)
- ItemText.Font = Enum.Font.Gotham
- ItemText.Text = v
- ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.TextSize = 13.000
- ItemText.TextTransparency = 0.400
- ItemText.TextXAlignment = Enum.TextXAlignment.Left
- Item.MouseEnter:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0}
- ):Play()
- end)
- Item.MouseLeave:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0.400}
- ):Play()
- end)
- Item.MouseButton1Click:Connect(function()
- Ripple(Item)
- if table.find(DropdownList, v) then
- table.remove(DropdownList, table.find(DropdownList, v))
- Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
- callback(DropdownList)
- else
- table.insert(DropdownList, v)
- Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
- callback(DropdownList)
- end
- return pcall(callback, DropdownList)
- end)
- Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
- Holder.Size = UDim2.new(1, 0, 0, framesize)
- HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
- spawn(function()
- while wait() do
- pcall(function()
- Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Dropfunc:Clear()
- dropdowntoggled = false
- itemcount = 0
- framesize = 0
- for i,v in next, Holder:GetChildren() do
- if v.Name == "Item" then
- v:Destroy()
- end
- end
- Title.Text = text .. " : "
- TweenService:Create(
- Dropdown,
- TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Size = dropdowntoggled and UDim2.new(1, 0, 0, 42 + HolderFrame.AbsoluteSize.Y) or UDim2.new(1, 0, 0, 32)}
- ):Play()
- TweenService:Create(
- Ico,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = dropdowntoggled and 180 or 0}
- ):Play()
- wait(.16)
- Dropdown.Size = UDim2.new(1, 0, 0, 32)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- HolderFrame.Size = UDim2.new(1, 0, 0, 0)
- Holder.Visible = false
- HolderFrame.Visible = false
- end
- function Dropfunc:Add(textadd)
- itemcount = itemcount + 1
- if itemcount == 1 then
- framesize = 29
- elseif itemcount == 2 then
- framesize = 58
- elseif itemcount >= 3 then
- framesize = 87
- end
- local Item = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local ItemText = Instance.new("TextLabel")
- Item.Name = "Item"
- Item.Parent = Holder
- Item.BackgroundColor3 = Color3.fromRGB(34, 34, 34)
- Item.Size = UDim2.new(0.9623000, 0, 0, 30)
- Item.BorderSizePixel = 0
- Item.AutoButtonColor = false
- Item.Font = Enum.Font.Gotham
- Item.Text = ""
- Item.TextColor3 = Color3.fromRGB(255, 255, 255)
- Item.TextSize = 14.000
- Item.TextTransparency = 0.400
- Item.TextXAlignment = Enum.TextXAlignment.Left
- Item.ClipsDescendants = true
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Item
- ItemText.Name = "ItemText"
- ItemText.Parent = Item
- ItemText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.BackgroundTransparency = 1.000
- ItemText.Position = UDim2.new(0, 5, 0, 0)
- ItemText.Size = UDim2.new(0, 1, 1, 0)
- ItemText.Font = Enum.Font.Gotham
- ItemText.Text = textadd
- ItemText.TextColor3 = Color3.fromRGB(255, 255, 255)
- ItemText.TextSize = 13.000
- ItemText.TextTransparency = 0.400
- ItemText.TextXAlignment = Enum.TextXAlignment.Left
- Item.MouseEnter:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0}
- ):Play()
- end)
- Item.MouseLeave:Connect(function()
- TweenService:Create(
- ItemText,
- TweenInfo.new(0.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {TextTransparency = 0.400}
- ):Play()
- end)
- Item.MouseButton1Click:Connect(function()
- Ripple(Item)
- if table.find(DropdownList, textadd) then
- table.remove(DropdownList, table.find(DropdownList, textadd))
- Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
- callback(DropdownList)
- else
- table.insert(DropdownList, textadd)
- Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
- callback(DropdownList)
- end
- return pcall(callback, DropdownList)
- end)
- Holder.CanvasSize = UDim2.new(0,0,0,Layout.AbsoluteContentSize.Y + 5)
- Holder.Size = UDim2.new(1, 0, 0, framesize)
- HolderFrame.Size = UDim2.new(1, 0, 0, framesize)
- spawn(function()
- while wait() do
- pcall(function()
- Item.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].DropdownItem
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Dropfunc:Set(val)
- if type(val) == "table" then
- for i,v in pairs(val) do
- table.insert(DropdownList, v)
- end
- else
- table.insert(DropdownList, val)
- end
- Title.Text = text .. " : " .. table.concat(DropdownList, ", ")
- return callback(DropdownList)
- end
- spawn(function()
- while wait() do
- pcall(function()
- Btn.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Dropdown
- Btn.Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- Btn.Ico.ImageColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- return Dropfunc
- end
- function Libfunc:Colorpicker(text, preset, callback)
- local cpkfunc = {}
- local colorpickertoggled = false
- local ColorH, ColorS, ColorV = 1, 1, 1
- local Colorpicker = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local Btn = Instance.new("TextButton")
- local Box = Instance.new("Frame")
- local UICorner_2 = Instance.new("UICorner")
- local Colorpicker_2 = Instance.new("TextLabel")
- local Hue = Instance.new("ImageLabel")
- local HueCorner = Instance.new("UICorner")
- local HueSelection = Instance.new("ImageLabel")
- local HueGradient = Instance.new("UIGradient")
- local Color = Instance.new("ImageLabel")
- local ColorCorner = Instance.new("UICorner")
- local ColorSelection = Instance.new("ImageLabel")
- Colorpicker.Name = "Colorpicker"
- Colorpicker.Parent = Section
- Colorpicker.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Colorpicker.ClipsDescendants = true
- Colorpicker.Size = UDim2.new(1, 0, 0, 32)
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Colorpicker
- Btn.Name = "Btn"
- Btn.Parent = Colorpicker
- Btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Btn.BackgroundTransparency = 1.000
- Btn.Size = UDim2.new(1, 0, 0, 32)
- Btn.Font = Enum.Font.SourceSans
- Btn.Text = ""
- Btn.TextColor3 = Color3.fromRGB(0, 0, 0)
- Btn.TextSize = 14.000
- Box.Name = "Box"
- Box.Parent = Btn
- Box.AnchorPoint = Vector2.new(1, 0.5)
- Box.BackgroundColor3 = preset
- Box.Position = UDim2.new(1, -8, 0.5, 0)
- Box.Size = UDim2.new(0, 21, 0, 21)
- UICorner_2.CornerRadius = UDim.new(0, 4)
- UICorner_2.Parent = Box
- Colorpicker_2.Name = "Colorpicker"
- Colorpicker_2.Parent = Btn
- Colorpicker_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Colorpicker_2.BackgroundTransparency = 1.000
- Colorpicker_2.Position = UDim2.new(0, 10, 0, 0)
- Colorpicker_2.Size = UDim2.new(0, 1, 0, 32)
- Colorpicker_2.Font = Enum.Font.Gotham
- Colorpicker_2.Text = text
- Colorpicker_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- Colorpicker_2.TextSize = 14.000
- Colorpicker_2.TextXAlignment = Enum.TextXAlignment.Left
- Hue.Name = "Hue"
- Hue.Parent = Colorpicker
- Hue.AnchorPoint = Vector2.new(0.5, 0)
- Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Hue.Position = UDim2.new(0.5, 117, 0, 33)
- Hue.Size = UDim2.new(0, 25, 0, 80)
- Hue.Visible = false
- HueCorner.CornerRadius = UDim.new(0, 3)
- HueCorner.Name = "HueCorner"
- HueCorner.Parent = Hue
- HueSelection.Name = "HueSelection"
- HueSelection.Parent = Hue
- HueSelection.AnchorPoint = Vector2.new(0.5, 0.5)
- HueSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- HueSelection.BackgroundTransparency = 1.000
- HueSelection.Position = UDim2.new(0.1348387, 0, 0.885714293, 0)
- HueSelection.Size = UDim2.new(0, 18, 0, 18)
- HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
- HueGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)), ColorSequenceKeypoint.new(0.09, Color3.fromRGB(232, 0, 248)), ColorSequenceKeypoint.new(0.23, Color3.fromRGB(18, 0, 222)), ColorSequenceKeypoint.new(0.44, Color3.fromRGB(1, 113, 165)), ColorSequenceKeypoint.new(0.58, Color3.fromRGB(83, 128, 0)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(170, 17, 17))}
- HueGradient.Rotation = 270
- HueGradient.Name = "HueGradient"
- HueGradient.Parent = Hue
- Color.Name = "Color"
- Color.Parent = Colorpicker
- Color.AnchorPoint = Vector2.new(0.5, 0)
- Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
- Color.Position = UDim2.new(0.5, -27, 0, 33)
- Color.Size = UDim2.new(0, 246, 0, 80)
- Color.ZIndex = 10
- Color.Image = "rbxassetid://4155801252"
- Color.Visible = false
- ColorCorner.CornerRadius = UDim.new(0, 3)
- ColorCorner.Name = "ColorCorner"
- ColorCorner.Parent = Color
- ColorSelection.Name = "ColorSelection"
- ColorSelection.Parent = Color
- ColorSelection.AnchorPoint = Vector2.new(0.5, 0.5)
- ColorSelection.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ColorSelection.BackgroundTransparency = 1.000
- ColorSelection.Position = UDim2.new(0.878423631, 0, 0.161290318, 0)
- ColorSelection.Size = UDim2.new(0, 18, 0, 18)
- ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
- ColorSelection.ScaleType = Enum.ScaleType.Fit
- local function UpdateColorPicker()
- Box.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
- Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
- pcall(callback, Box.BackgroundColor3)
- end
- Btn.MouseButton1Click:Connect(function()
- colorpickertoggled = not colorpickertoggled
- TweenService:Create(Colorpicker,TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),{Size = colorpickertoggled and UDim2.new(1,0,0,120) or UDim2.new(1,0,0,32)}):Play()
- wait(.15)
- Colorpicker.Size = colorpickertoggled and UDim2.new(1,0,0,120) or UDim2.new(1,0,0,32)
- Container.CanvasSize = UDim2.new(0, 0, 0, UIListLayout.AbsoluteContentSize.Y)
- Hue.Visible, Color.Visible = colorpickertoggled, colorpickertoggled
- end)
- ColorH = 1 - (math.clamp(HueSelection.AbsolutePosition.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) / Hue.AbsoluteSize.Y)
- ColorS = (math.clamp(ColorSelection.AbsolutePosition.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) / Color.AbsoluteSize.X)
- ColorV = 1 - (math.clamp(ColorSelection.AbsolutePosition.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) / Color.AbsoluteSize.Y)
- Box.BackgroundColor3 = preset
- Color.BackgroundColor3 = preset
- pcall(callback, Box.BackgroundColor3)
- local ColorInput;
- Color.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if ColorInput then
- ColorInput:Disconnect()
- end
- ColorInput = RunService.RenderStepped:Connect(function()
- local ColorX = (math.clamp(Mouse.X - Color.AbsolutePosition.X, 0, Color.AbsoluteSize.X) / Color.AbsoluteSize.X)
- local ColorY = (math.clamp(Mouse.Y - Color.AbsolutePosition.Y, 0, Color.AbsoluteSize.Y) / Color.AbsoluteSize.Y)
- ColorSelection.Position = UDim2.new(ColorX, 0, ColorY, 0)
- ColorS = ColorX
- ColorV = 1 - ColorY
- UpdateColorPicker()
- end)
- end
- end)
- Color.InputEnded:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if ColorInput then
- ColorInput:Disconnect()
- end
- end
- end)
- local HueInput;
- Hue.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if HueInput then
- HueInput:Disconnect()
- end
- HueInput = RunService.RenderStepped:Connect(function()
- local HueY = (math.clamp(Mouse.Y - Hue.AbsolutePosition.Y, 0, Hue.AbsoluteSize.Y) / Hue.AbsoluteSize.Y)
- HueSelection.Position = UDim2.new(0.48, 0, HueY, 0)
- ColorH = 1 - HueY
- UpdateColorPicker(true)
- end)
- end
- end)
- Hue.InputEnded:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if HueInput then
- HueInput:Disconnect()
- end
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- Colorpicker.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Colorpicker
- Colorpicker_2.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- return cpkfunc
- end
- function Libfunc:Label(text)
- local LabelFunc = {}
- local Label = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- Label.Name = "Label"
- Label.Parent = Section
- Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Label.ClipsDescendants = true
- Label.Size = UDim2.new(1, 0, 0, 32)
- Title.Name = "Title"
- Title.Parent = Label
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0, 10, 0, 0)
- Title.Selectable = true
- Title.Size = UDim2.new(0, 1, 0, 32)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 14.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- UICorner.CornerRadius = UDim.new(0, 6)
- UICorner.Parent = Label
- function LabelFunc:Refresh(tochange)
- Title.Text = tochange
- end
- spawn(function()
- while wait() do
- pcall(function()
- Label.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Label
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- return LabelFunc
- end
- function Libfunc:Textbox(text, disappear, callback)
- local Textbox = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- local Box = Instance.new("TextBox")
- local UICorner_2 = Instance.new("UICorner")
- Textbox.Name = "Textbox"
- Textbox.Parent = Section
- Textbox.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Textbox.ClipsDescendants = true
- Textbox.Size = UDim2.new(1, 0, 0, 32)
- Title.Name = "Title"
- Title.Parent = Textbox
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0, 10, 0, 0)
- Title.Selectable = true
- Title.Size = UDim2.new(0, 1, 0, 32)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 14.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- UICorner.CornerRadius = UDim.new(0.0500000007, 0)
- UICorner.Parent = Textbox
- Box.Name = "Box"
- Box.Parent = Textbox
- Box.AnchorPoint = Vector2.new(1, 0.5)
- Box.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- Box.BorderSizePixel = 0
- Box.Position = UDim2.new(1, -10, 0.5, 0)
- Box.Size = UDim2.new(0, 0, 0, 22)
- Box.Font = Enum.Font.Gotham
- Box.Text = ""
- Box.TextColor3 = Color3.fromRGB(255, 255, 255)
- Box.TextSize = 14.000
- UICorner_2.CornerRadius = UDim.new(0, 4)
- UICorner_2.Parent = Box
- Box.Changed:Connect(function()
- Box.Size = UDim2.new(0,Box.TextBounds.X + 16,0,22)
- end)
- Box.PlaceholderText = " "
- Textbox.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- Box:CaptureFocus()
- end
- end)
- Box.FocusLost:Connect(function()
- local txt = Box.Text
- if disappear then
- Box.Text = ""
- end
- return callback(txt)
- end)
- UserInputService.InputBegan:Connect(function(input)
- if input.KeyCode == Enum.KeyCode.Escape and Box:IsFocused() then
- Box:ReleaseFocus()
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- Textbox.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Textbox
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- Box.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextboxFrame
- Box.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- end
- function Libfunc:Bind(text, presetbind, callback)
- local BindFunc = {}
- local Key = presetbind.Name
- local Bind = Instance.new("TextButton")
- local BText = Instance.new("TextLabel")
- local Title = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- Bind.Name = "Bind"
- Bind.Parent = Section
- Bind.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Bind.Size = UDim2.new(1, 0, 0, 32)
- Bind.AutoButtonColor = false
- Bind.Font = Enum.Font.SourceSans
- Bind.TextColor3 = Color3.fromRGB(0, 0, 0)
- Bind.TextSize = 14.000
- Bind.TextTransparency = 1.000
- Bind.TextXAlignment = Enum.TextXAlignment.Left
- BText.Name = "BText"
- BText.Parent = Bind
- BText.AnchorPoint = Vector2.new(1, 0)
- BText.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- BText.BackgroundTransparency = 1.000
- BText.Position = UDim2.new(1, -10, 0, 0)
- BText.Selectable = true
- BText.Size = UDim2.new(0, 1, 0, 32)
- BText.Font = Enum.Font.Gotham
- BText.Text = presetbind.Name
- BText.TextColor3 = Color3.fromRGB(255, 255, 255)
- BText.TextSize = 14.000
- BText.TextXAlignment = Enum.TextXAlignment.Right
- Title.Name = "Title"
- Title.Parent = Bind
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0, 10, 0, 0)
- Title.Selectable = true
- Title.Size = UDim2.new(0, 1, 0, 32)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 14.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- UICorner.CornerRadius = UDim.new(0.0500000007, 0)
- UICorner.Parent = Bind
- local togglebind = false
- Bind.MouseButton1Click:Connect(function()
- BText.Text = "..."
- local inputwait = game:GetService("UserInputService").InputBegan:wait()
- togglebind = false
- if togglebind == false then
- if inputwait.KeyCode.Name ~= "Unknown" then
- BText.Text = inputwait.KeyCode.Name
- Key = inputwait.KeyCode.Name
- togglebind = true
- end
- end
- end)
- game:GetService("UserInputService").InputBegan:connect(function(current, pressed)
- if not pressed then
- if current.KeyCode.Name == Key then
- callback(Key)
- end
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- Bind.BackgroundColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].Bind
- Title.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- BText.TextColor3 = SolarisLib.Themes[SolarisLib.Settings.Theme].TextColor
- end)
- end
- end)
- return BindFunc
- end
- return Libfunc
- end
- return SectionHold
- end
- return TabList
- end
- local pages = ""
- local stopsearch = false
- function TPReturner()
- local Site;
- if pages == "" then
- Site = game:GetService("HttpService"):JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. game.PlaceId .. '/servers/Public?sortOrder=Asc&limit=100'))
- else
- Site = game:GetService("HttpService"):JSONDecode(game:HttpGet('https://games.roblox.com/v1/games/' .. game.PlaceId .. '/servers/Public?sortOrder=Asc&limit=100&cursor=' .. pages))
- end
- if Site.nextPageCursor and Site.nextPageCursor ~= "null" then
- pages = Site.nextPageCursor
- end
- if Site["data"][1] ~= nil then
- for i,v in pairs(Site["data"]) do
- if v.id ~= game.JobId and #v.players < v.maxPlayers then
- stopsearch = true
- game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, v.id)
- end
- end
- elseif Site.nextPageCursor and Site.nextPageCursor ~= nil then
- pages = Site.nextPageCursor
- end
- end
- function Teleport()
- while task.wait() do
- pcall(function()
- TPReturner()
- if pages ~= "" then
- TPReturner()
- end
- end)
- if stopsearch then
- break
- end
- end
- end
- spawn(function()
- pcall(function()
- while wait() do
- for i,v in pairs(game:GetService("Players"):GetChildren()) do
- if v.Name ~= game.Players.LocalPlayer.Name then
- if game.Players.LocalPlayer.Name:sub(1,3) == v.Name:sub(1,3) then
- Teleport()
- end
- end
- end
- end
- end)
- end)
- getgenv().Setting = {
- ["AutoFarm"] = false;
- ["FarmMasteryAfterMax"] = true;
- ["Level"] = game.Players.LocalPlayer.Data.Level.Value;
- ["Weapon"] = "";
- ["Superhuman"] = true;
- ["Electric Claw"] = true;
- ["Rengoku"] = true;
- ["AutoSaber"] = true;
- ["Yama"] = true;
- ["Check Rengoku"] = false;
- ["Check Superhuman"] = {
- ["Electro"] = false;
- ["BlackLeg"] = false;
- ["FishmanKarate"] = false;
- ["DragonClaw"] = false;
- ["Superhuman"] = false;
- ["Lv"] = 0;
- };
- ["Check Electric Claw"] = {
- ["Have"] = false;
- ["Lv"] = 0;
- };
- ["Sea Check"] = false;
- ["CodeRedeemed"] = {
- ["Bluxxy"] = false,
- ["fudd10_v2"] = false,
- ["3BVISITS"] = false,
- ["UPD16"] = false,
- ["SUB2GAMERROBOT_EXP1"] = false,
- ["Sub2NoobMaster123"] = false,
- ["Sub2Daigrock"] = false,
- ["Axiore"] = false,
- ["TantaiGaming"] = false,
- ["StrawHatMaine"] = false,
- ["Sub2OfficialNoobie"] = false,
- ["TheGreatAce"] = false
- },
- ["WhiteScreenEnable"] = true;
- ["AutoAwakeFruit"] = true;
- }
- getgenv().MainSetting = {
- ["WebHooklink"] = "";
- ["WebHookNotification"] = false;
- ["SelectedFruit"] = {};
- ["BuySelectedFruit"] = false;
- ["Toggle Key"] = SolarisLib.Settings.CloseBind;
- }
- if not getgenv().Setting["FarmMasteryAfterMax"] then
- getgenv().Setting["FarmMasteryAfterMax"] = true
- end
- if _G.CanUse then
- _G.CanUse["print"] = true
- _G.CanUse["hook"] = true
- end
- local GameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name:gsub(" ", "")
- local FolderName = "Quartyz Premium"
- local gameFolder = FolderName .. "/BloxFruits"
- local FileName = gameFolder .. "/" .. "QuartyzSoCute" .. game.Players.LocalPlayer.UserId .. "[" .. game.Players.LocalPlayer.Name .. "]"
- if not isfolder(FolderName) then
- makefolder(FolderName)
- end
- if not isfolder(gameFolder) then
- makefolder(gameFolder)
- end
- if not isfile(gameFolder .. "/Saveglobalsetting.json") then
- writefile(gameFolder .. "/Saveglobalsetting.json", game:GetService("HttpService"):JSONEncode(getgenv().MainSetting))
- end
- if not isfile(FileName .. ".json") then
- writefile(FileName .. ".json", game:GetService("HttpService"):JSONEncode(getgenv().Setting))
- end
- if _G.CanUse then
- _G.CanUse["print"] = false
- _G.CanUse["hook"] = false
- end
- function Savesetting()
- if _G.CanUse then
- _G.CanUse["print"] = true
- _G.CanUse["hook"] = true
- end
- writefile(FileName .. ".json", game:GetService("HttpService"):JSONEncode(getgenv().Setting))
- if _G.CanUse then
- _G.CanUse["print"] = false
- _G.CanUse["hook"] = false
- end
- end
- function Loadsetting()
- if _G.CanUse then
- _G.CanUse["print"] = true
- _G.CanUse["hook"] = true
- end
- getgenv().Setting = game:GetService("HttpService"):JSONDecode(readfile(FileName .. ".json"))
- if _G.CanUse then
- _G.CanUse["print"] = false
- _G.CanUse["hook"] = false
- end
- end
- function Savemainsetting()
- if _G.CanUse then
- _G.CanUse["print"] = true
- _G.CanUse["hook"] = true
- end
- writefile(gameFolder .. "/Saveglobalsetting.json", game:GetService("HttpService"):JSONEncode(getgenv().MainSetting))
- if _G.CanUse then
- _G.CanUse["print"] = false
- _G.CanUse["hook"] = false
- end
- end
- function Loadglobalsetting()
- if _G.CanUse then
- _G.CanUse["print"] = true
- _G.CanUse["hook"] = true
- end
- getgenv().MainSetting = game:GetService("HttpService"):JSONDecode(readfile(gameFolder .. "/Saveglobalsetting.json"))
- if _G.CanUse then
- _G.CanUse["print"] = false
- _G.CanUse["hook"] = false
- end
- end
- Loadglobalsetting()
- Loadsetting()
- spawn(function()
- while task.wait() do
- pcall(function()
- SolarisLib.Settings.CloseBind = getgenv().MainSetting["Toggle Key"]
- end)
- end
- end)
- if getgenv().Setting["Yama"] == nil then
- getgenv().Setting["Yama"] = true
- end
- if getgenv().MainSetting["Toggle Key"] == nil then
- getgenv().MainSetting["Toggle Key"] = SolarisLib.Settings.CloseBind
- end
- Weapon = {}
- for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- table.insert(Weapon ,v.Name)
- end
- end
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- table.insert(Weapon, v.Name)
- end
- end
- FruitList = {}
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
- if not table.find(FruitList, v.Name) and v.Name then
- table.insert(FruitList, v.Name)
- end
- end
- ExpensiveFruit = {}
- spawn(function()
- pcall(function()
- while wait() do
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
- if v.Price >= 1000000 and not table.find(ExpensiveFruit, v) then
- table.insert(ExpensiveFruit, v)
- end
- end
- table.sort(ExpensiveFruit, function(a, b)
- return a.Price < b.Price
- end)
- end
- end)
- end)
- function FruitInStore()
- fruitinstore = {}
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
- if v.Name and not table.find(fruitinstore, v.Name) then
- table.insert(fruitinstore, v.Name)
- end
- end
- return fruitinstore
- end
- FruitCanAwaketable = {}
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
- if v.Data["Awakening"] and not table.find(FruitCanAwaketable, v) then
- table.insert(FruitCanAwaketable, v)
- end
- end
- table.sort(FruitCanAwaketable, function(a, b)
- return a.Price > b.Price
- end)
- FruitCanAwake = {}
- for i,v in pairs(FruitCanAwaketable) do
- if not table.find(FruitCanAwake, v.Name) then
- table.insert(FruitCanAwake, v.Name)
- end
- end
- spawn(function()
- while true do wait(5)
- table.clear(ExpensiveFruit)
- end
- end)
- function TP(P)
- local TPFunc = {}
- Distance = (P.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
- if (CFrame.new(-11578.7676, 48.7659416, -7557.87988).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 40 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener", "Check") ~= 0 and getgenv().Setting["AutoAwakeFruit"] then
- return
- end
- if Distance < 8 then
- Speed = 1000
- elseif Distance < 275 then
- Speed = 250
- pcall(function()
- tweenplay:Cancel()
- end)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = P
- elseif Distance >= 275 then
- Speed = 250
- end
- tweenplay = game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Distance/Speed, Enum.EasingStyle.Linear), {CFrame = P})
- tweenplay:Play()
- function TPFunc:Stop()
- tweenplay:Cancel()
- return tweenplay
- end
- return TPFunc
- end
- function GetDistance(P)
- local Distance = (P.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude
- return Distance
- end
- function CheckLevel(lvl)
- local LowerLevel;
- local Lvl = lvl or game:GetService("Players").LocalPlayer.Data.Level.Value
- if Lvl >= 1 and Lvl <= 9 then
- if tostring(game.Players.LocalPlayer.Team) == "Marines" then
- namemon = "Trainee [Lv. 5]"
- namequest = "MarineQuest"
- questlv = 1
- npcpos = CFrame.new(-2709.67944, 24.5206585, 2104.24585, -0.744724929, -3.97967455e-08, -0.667371571, 4.32403588e-08, 1, -1.07884304e-07, 0.667371571, -1.09201515e-07, -0.744724929)
- elseif tostring(game.Players.LocalPlayer.Team) == "Pirates" then
- namemon = "Bandit [Lv. 5]"
- namequest = "BanditQuest1"
- questlv = 1
- npcpos = CFrame.new(1059.99731, 16.9222069, 1549.28162, -0.95466274, 7.29721794e-09, 0.297689587, 1.05190106e-08, 1, 9.22064114e-09, -0.297689587, 1.19340022e-08, -0.95466274)
- end
- return {["QuestLv"] = questlv, ["CFrameQuest"] = npcpos, ["NameMon"] = namemon, ["NameQuest"] = namequest}
- end
- local GuideModule = require(game:GetService("ReplicatedStorage").GuideModule)
- local Quests = require(game:GetService("ReplicatedStorage").Quests)
- for i,v in pairs(GuideModule["Data"]["NPCList"]) do
- for i1,v1 in pairs(v["Levels"]) do
- if Lvl >= v1 then
- if not levelreq then
- levelreq = 0
- end
- if v1 > levelreq then
- npcpos = i["CFrame"]
- questlv = i1
- levelreq = v1
- end
- if #v["Levels"] == 3 and questlv == 3 then
- npcpos = i["CFrame"]
- questlv = 2
- levelreq = v["Levels"][2]
- end
- end
- end
- end
- for i,v in pairs(Quests) do
- for i1,v1 in pairs(v) do
- if v1["LevelReq"] == levelreq and i ~= "CitizenQuest" then
- namequest = i
- for i2,v2 in pairs(v1["Task"]) do
- namemon = i2
- end
- end
- end
- end
- if namequest == "MarineQuest2" then
- namequest = "MarineQuest2"
- questlv = 1
- namemon = "Chief Petty Officer [Lv. 120]"
- levelreq = 120
- elseif namequest == "ImpelQuest" then
- namequest = "PrisonerQuest"
- questlv = 2
- namemon = "Dangerous Prisoner"
- levelreq = 210
- npcpos = CFrame.new(5310.60547, 0.350014925, 474.946594, 0.0175017118, 0, 0.999846935, 0, 1, 0, -0.999846935, 0, 0.0175017118)
- elseif namequest == "SkyExp1Quest" then
- if questlv == 1 then
- npcpos = CFrame.new(-4721.88867, 843.874695, -1949.96643, 0.996191859, -0, -0.0871884301, 0, 1, -0, 0.0871884301, 0, 0.996191859)
- elseif questlv == 2 then
- npcpos = CFrame.new(-7859.09814, 5544.19043, -381.476196, -0.422592998, 0, 0.906319618, 0, 1, 0, -0.906319618, 0, -0.422592998)
- end
- elseif namequest == "Area2Quest" and questlv == 2 then
- namequest = "Area2Quest"
- questlv = 1
- namemon = "Swan Pirate [Lv. 775]"
- levelreq = 775
- end
- namemon = namemon:sub(1,#namemon)
- if not namemon:find("Lv") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- monlv = string.match(v.Name, "%d+")
- if v.Name:find(namemon) and #v.Name > #namemon and tonumber(monlv) <= Lvl + 50 then
- namemon = v.Name
- end
- end
- end
- if not namemon:find("Lv") then
- for i,v in pairs(game:GetService("ReplicatedStorage"):GetChildren()) do
- monlv = string.match(v.Name, "%d+")
- if v.Name:find(namemon) and #v.Name > #namemon and tonumber(monlv) <= Lvl + 50 then
- namemon = v.Name
- end
- end
- end
- return {["QuestLv"] = questlv, ["CFrameQuest"] = npcpos, ["NameMon"] = namemon, ["NameQuest"] = namequest, ["LevelReq"] = levelreq}
- end
- function EquipWeapon(ToolSe)
- if not CheckFruit and game.Players.LocalPlayer.Backpack:FindFirstChild(ToolSe) then
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if v.Name == ToolSe then
- wait(0.6)
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
- end
- end
- end
- end
- function SelectFruit(name)
- if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(name) then
- game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(name))
- end
- end
- game:GetService("Players").LocalPlayer.Data.Level.Changed:Connect(function(param)
- if param > getgenv().Setting["Level"] then
- getgenv().Setting["Level"] = param
- Savesetting()
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- CFrameQuest = CheckLevel()["CFrameQuest"]
- QuestLv = CheckLevel()["QuestLv"]
- Namemon = CheckLevel()["NameMon"]
- if Namemon:find("Lv") then
- NameMon = Namemon
- end
- NameQuest = CheckLevel()["NameQuest"]
- Farm_Mode = CFrame.new(0, 30, 8)
- end)
- end
- end)
- spawn(function()
- while wait() and Second_Sea do
- pcall(function()
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") == 0 then
- ContinueFarm = true
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") ~= 0 and ExpensiveFruit[1] ~= nil then
- ContinueFarm = true
- end
- end)
- end
- end)
- function UseLessFruit()
- uselessfruit = {}
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
- if not table.find(FruitCanAwake, v.Name) and v.Price < 1000000 then
- table.insert(uselessfruit, v.Name)
- end
- end
- return uselessfruit
- end
- function BestFruit()
- bestfruit = {}
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
- if table.find(FruitCanAwake, v.Name) or v.Price >= 1000000 then
- table.insert(bestfruit, v.Name)
- end
- end
- return bestfruit
- end
- function SkillWork()
- skillcorrect = {}
- for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Main.Skills[game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Name]:GetDescendants()) do
- if v.ClassName == "TextLabel" then
- if v.Name == "Title" then
- if v.TextColor3 == Color3.fromRGB(255, 255, 255) and v.Parent.Name ~= "Template" then
- if not table.find(skillcorrect,v.Parent.Name) then
- table.insert(skillcorrect,v.Parent.Name)
- end
- else
- if table.find(skillcorrect,v.Parent.Name) then
- table.remove(skillcorrect,v.Parent.Name)
- end
- end
- end
- end
- end
- return skillcorrect
- end
- --game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AwakeningChanger", "Check")
- function AwakeCheck()
- awakedskill = {}
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getAwakenedAbilities")) do
- if v["Key"] then
- table.insert(awakedskill, v["Key"])
- if v["Awakened"] then
- awakedskill[v["Key"]] = true
- else
- awakedskill[v["Key"]] = false
- end
- end
- end
- return awakedskill
- end
- spawn(function()
- while wait() do
- if getgenv().Setting["AutoFarm"] and getgenv().Setting["AutoAwakeFruit"] and getgenv().Setting["Level"] >= 2300 and UseLessFruit()[1] ~= nil and table.find(AwakeCheck(), "V") and AwakeCheck()["V"] == false then
- pcall(function()
- GoAwakening = true
- if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- if game.Players.LocalPlayer.Data.DevilFruit.Value == "Bird: Phoenix" then
- NameChip = "Ice"
- else
- if game.Players.LocalPlayer.Data.DevilFruit.Value ~= "" then
- if game.Players.LocalPlayer.Data.DevilFruit.Value:find(" ") then
- NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value
- elseif game.Players.LocalPlayer.Data.DevilFruit.Value:find("-") then
- NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value:split("-")[1]
- end
- else
- NameChip = "Flame"
- end
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
- if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip):find("cooldown") then
- CheckFruit = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", UseLessFruit()[1])
- wait()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
- wait()
- CheckFruit = false
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game.Players.LocalPlayer.Character:FindFirstChild("Special Microchip") then
- if Second_Sea then
- fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
- elseif Third_Sea then
- fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
- end
- end
- elseif not game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible and game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- SolarisLib:Notification("Auto Awake Fruit", "Have Someone In Dungeon", 0.25)
- if game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y < 200 then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, 201, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
- end
- end
- end)
- else
- GoAwakening = false
- end
- end
- end)
- spawn(function()
- while wait() and Third_Sea do
- pcall(function()
- if game:GetService("Workspace").Enemies:FindFirstChild("Deandre [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Urban [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Diablo [Lv. 1750]") or game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") or game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") or game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
- StartEliteHunter = true
- else
- StartEliteHunter = false
- end
- end)
- end
- end)
- spawn(function()
- while wait() and Third_Sea do
- pcall(function()
- if UseLessFruit()[1] then
- CanStartRaid = true
- elseif game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") then
- CanStartRaid = true
- else
- CanStartRaid = false
- end
- end)
- end
- end)
- local Remotes = game:GetService("ReplicatedStorage").Remotes
- local LocalPlayer = game.Players.LocalPlayer
- spawn(function()
- while wait() do
- if getgenv().Setting["AutoFarm"] then
- pcall(function()
- if ((First_Sea and getgenv().Setting["Level"] >= 700) or (Second_Sea and getgenv().Setting["Level"] >= 1500 and ContinueFarm)) then
- if getgenv().Setting["Level"] >= 700 and First_Sea then
- if game.Workspace.Map.Ice.Door.CanCollide == true and game.Workspace.Map.Ice.Door.Transparency == 0 then
- if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Key") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Key") and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").UsedKey == false then
- TP(CFrame.new(4851.8720703125, 5.6514348983765, 718.47094726563))
- wait(.5)
- if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - CFrame.new(4851.8720703125, 5.6514348983765, 718.47094726563).Position).Magnitude <= 5 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress","Detective")
- end
- elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild("Key") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Key") then
- EquipWeapon("Key")
- TP(CFrame.new(1347.7124, 37.3751602, -1325.6488))
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").KilledIceBoss == false and game.Workspace.Map.Ice.Door.CanCollide == false and game.Workspace.Map.Ice.Door.Transparency == 1 then
- if game:GetService("Workspace").Enemies:FindFirstChild("Ice Admiral [Lv. 700] [Boss]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Ice Admiral [Lv. 700] [Boss]" and v.Humanoid.Health > 0 then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60,60,60)
- RawFastAttack = true
- until v.Humanoid.Health <= 0 or not v.Parent or not getgenv().Setting["AutoFarm"]
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
- end
- end
- else
- RawFastAttack = true
- TP(CFrame.new(1347.7124, 37.3751602, -1325.6488))
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").TalkedDetective == true and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").UsedKey == true and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("DressrosaQuestProgress").KilledIceBoss == true then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelDressrosa")
- end
- elseif getgenv().Setting["Level"] >= 1500 and Second_Sea then
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress").KilledIndraBoss == false then
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 3 then
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") == 0 then
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") == 0 then
- if (CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 10 then
- wait(1.1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Begin")
- else
- TP(CFrame.new(-1926.3221435547, 12.819851875305, 1738.3092041016))
- end
- if game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "rip_indra [Lv. 1500] [Boss]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- RawFastAttack = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
- until getgenv().Setting["AutoFarm"] == false or v.Humanoid.Health <= 0 or not v.Parent
- RawFastAttack = false
- end
- end
- elseif not game:GetService("Workspace").Enemies:FindFirstChild("rip_indra [Lv. 1500] [Boss]") and (CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 1000 then
- TP(CFrame.new(-26880.93359375, 22.848554611206, 473.18951416016))
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ZQuestProgress","Check") ~= 0 then
- if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") or game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
- if game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Don Swan [Lv. 1000] [Boss]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- RawFastAttack = true
- until getgenv().Setting["AutoFarm"] == false or v.Humanoid.Health <= 0 or not v.Parent
- RawFastAttack = false
- end
- end
- else
- if (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 1000 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
- end
- TP(CFrame.new(2284.912109375, 15.537666320801, 905.48291015625))
- end
- elseif not game:GetService("Workspace").Enemies:FindFirstChild("Don Swan [Lv. 1000] [Boss]") and not game:GetService("ReplicatedStorage"):FindFirstChild("Don Swan [Lv. 1000] [Boss]") then
- if (CFrame.new(2284.912109375, 15.537666320801, 905.48291015625).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude > 1000 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(2284.912109375, 15.537666320801, 905.48291015625))
- end
- TP(CFrame.new(2284.912109375, 15.537666320801, 905.48291015625))
- end
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1") ~= 0 then
- CheckFruit = true
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Quake Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Human: Buddha Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("String Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Bird: Phoenix Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Rumble Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Paw Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Gravity Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dough Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Shadow Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Venom Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Control Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Soul Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Quake Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Human: Buddha Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("String Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Bird: Phoenix Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Rumble Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Paw Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Gravity Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Dough Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Shadow Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Venom Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Control Fruit") or game.Players.LocalPlayer.Backpack:FindFirstChild("Soul Fruit") or game.Players.LocalPlayer.Character:FindFirstChild("Dragon Fruit") then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","1")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","2")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TalkTrevor","3")
- CheckFruit = false
- elseif ExpensiveFruit[1] ~= nil then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", ExpensiveFruit[1].Name)
- end
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 0 then
- if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Swan Pirates") and string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "50") and game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == true then
- if game:GetService("Workspace").Enemies:FindFirstChild("Swan Pirate [Lv. 775]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Swan Pirate [Lv. 775]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- PosMonBartilo = v.HumanoidRootPart.CFrame
- MagnetBartilo = true
- until not v.Parent or v.Humanoid.Health <= 0 or getgenv().Setting["AutoFarm"] == false or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
- MagnetBartilo = false
- end
- end
- elseif game:GetService("ReplicatedStorage"):FindFirstChild("Swan Pirate [Lv. 775]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Swan Pirate [Lv. 775]").HumanoidRootPart.CFrame)
- end
- else
- TP(CFrame.new(-456.28952, 73.0200958, 299.895966))
- if (Vector3.new(-456.28952, 73.0200958, 299.895966) - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
- wait(1.1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest","BartiloQuest",1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
- end
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 1 then
- if QuestBartilo == nil then
- TP(CFrame.new(-456.28952, 73.0200958, 299.895966))
- end
- if (Vector3.new(-456.28952, 73.0200958, 299.895966) - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 30 then
- wait(1.1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
- QuestBartilo = 1
- end
- if game:GetService("Workspace").Enemies:FindFirstChild("Jeremy [Lv. 850] [Boss]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Jeremy [Lv. 850] [Boss]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- RawFastAttack = true
- until not v.Parent or v.Humanoid.Health <= 0 or getgenv().Setting["AutoFarm"] == false
- RawFastAttack = false
- end
- end
- elseif QuestBartilo == 1 and game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Jeremy [Lv. 850] [Boss]").HumanoidRootPart.CFrame)
- end
- elseif game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BartiloQuestProgress","Bartilo") == 2 then
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate1, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate2, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate3, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate4, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate5, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate6, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate7, 0)
- task.wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Map.Dressrosa.BartiloPlates.Plate8, 0)
- end
- else
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("TravelZou")
- end
- end
- elseif not First_Sea and (FragmentRaid or AwakeFragmentsRaid) and getgenv().Setting["Level"] >= 1100 and CanStartRaid then
- if not game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- if game.Players.LocalPlayer.Data.DevilFruit.Value == "Bird: Phoenix" then
- NameChip = "Ice"
- else
- if game.Players.LocalPlayer.Data.DevilFruit.Value ~= "" then
- if game.Players.LocalPlayer.Data.DevilFruit.Value:find(" ") then
- NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value
- elseif game.Players.LocalPlayer.Data.DevilFruit.Value:find("-") then
- NameChip = game.Players.LocalPlayer.Data.DevilFruit.Value:split("-")[1]
- end
- else
- NameChip = "Flame"
- end
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
- if not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Special Microchip") and not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Special Microchip") and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip):find("cooldown") then
- CheckFruit = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", UseLessFruit()[1])
- wait()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("RaidsNpc", "Select", NameChip)
- wait()
- CheckFruit = false
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Special Microchip") or game.Players.LocalPlayer.Character:FindFirstChild("Special Microchip") then
- if Second_Sea then
- fireclickdetector(game:GetService("Workspace").Map.CircleIsland.RaidSummon2.Button.Main.ClickDetector)
- elseif Third_Sea then
- fireclickdetector(game:GetService("Workspace").Map["Boat Castle"].RaidSummon2.Button.Main.ClickDetector)
- end
- end
- elseif not game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible and game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- if game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y < 200 then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.X, 200, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z)
- end
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") and game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible then
- for i,v in pairs(Workspace.Enemies:GetChildren()) do
- if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
- v.Humanoid.Health = 0
- sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
- end
- end
- if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 5"].CFrame*CFrame.new(0,80,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 4"].CFrame*CFrame.new(0,80,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 3"].CFrame*CFrame.new(0,80,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
- if game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"]:FindFirstChild("Mesh").Scale.Y >= 1580 then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(300,30,0))
- else
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(0,30,0))
- end
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 1"].CFrame*CFrame.new(0,70,0))
- end
- end
- end
- elseif getgenv().Setting["Rengoku"] and getgenv().Setting["Level"] >= 1350 and Second_Sea and not getgenv().Setting["Check Rengoku"] then
- if not game:GetService("Workspace").Map.IceCastle:FindFirstChild("RengokuChest") then
- getgenv().Setting["Check Rengoku"] = true
- Savesetting()
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Hidden Key") or game.Players.LocalPlayer.Character:FindFirstChild("Hidden Key") then
- TP(game:GetService("Workspace").Map.IceCastle:FindFirstChild("RengokuChest").Detection.CFrame)
- if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Rengoku") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Rengoku") then
- getgenv().Setting["Check Rengoku"] = true
- Savesetting()
- end
- elseif not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
- if GetDistance(CFrame.new(5668.41211, 28.176754, -6483.41553, 0.977241755, 1.14578029e-07, 0.21212855, -1.15998432e-07, 1, -5.74894665e-09, -0.21212855, -1.89884695e-08, 0.977241755)) < 5 then
- wait(1.1)
- if getgenv().Setting["Level"] >= 1350 and getgenv().Setting["Level"] <= 1374 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", "FrostQuest", 1)
- elseif getgenv().Setting["Level"] >= 1375 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", "FrostQuest", 2)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
- else
- TP(CFrame.new(5668.41211, 28.176754, -6483.41553, 0.977241755, 1.14578029e-07, 0.21212855, -1.15998432e-07, 1, -5.74894665e-09, -0.21212855, -1.89884695e-08, 0.977241755))
- if getgenv().Setting["AutoFarm"] and game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Z > 30000 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 89.034996032715, -132.83953857422))
- end
- end
- elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
- if game:GetService("Workspace").Enemies:FindFirstChild("Snow Lurker [Lv. 1375]") or game:GetService("Workspace").Enemies:FindFirstChild("Arctic Warrior [Lv. 1350]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and v.Humanoid.Health > 0 then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- PosMonRengoku = v.HumanoidRootPart.CFrame
- RengokuMagnet = true
- until game.Players.LocalPlayer.Backpack:FindFirstChild("Hidden Key") or getgenv().Setting["Rengoku"] == false or not v.Parent or v.Humanoid.Health <= 0
- RengokuMagnet = false
- end
- end
- elseif game:GetService("ReplicatedStorage"):FindFirstChild("Snow Lurker [Lv. 1375]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Snow Lurker [Lv. 1375]").HumanoidRootPart.CFrame)
- elseif game:GetService("ReplicatedStorage"):FindFirstChild("Arctic Warrior [Lv. 1350]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Arctic Warrior [Lv. 1350]").HumanoidRootPart.CFrame)
- end
- end
- elseif getgenv().Setting["AutoFarm"] and Third_Sea and getgenv().Setting["Electric Claw"] and ((game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400) or (game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400)) and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") ~= 0 then
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw", true) == 4 then
- repeat task.wait() TP(CFrame.new(-10369.7725, 331.654175, -10130.3047, 0.879783928, -1.15147909e-08, 0.475373745, -1.70712194e-10, 1, 2.45385472e-08, -0.475373745, -2.16697718e-08, 0.879783928)) until (CFrame.new(-10369.7725, 331.654175, -10130.3047, 0.879783928, -1.15147909e-08, 0.475373745, -1.70712194e-10, 1, 2.45385472e-08, -0.475373745, -2.16697718e-08, 0.879783928).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5 or AutoElectricClaw == false or game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") == 0
- if (CFrame.new(-10369.7725, 331.654175, -10130.3047, 0.879783928, -1.15147909e-08, 0.475373745, -1.70712194e-10, 1, 2.45385472e-08, -0.475373745, -2.16697718e-08, 0.879783928).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5 then
- wait(1.1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start")
- end
- repeat task.wait() TP(CFrame.new(-12548.998046875, 332.40396118164, -7603.1865234375)) until (CFrame.new(-12548.998046875, 332.40396118164, -7603.1865234375).Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).Magnitude <= 5 or getgenv().Setting["Electric Claw"] == false or game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") == 0
- end
- elseif getgenv().Setting["Level"] >= 2300 and getgenv().Setting["AutoAwakeFruit"] and table.find(FruitCanAwake, game.Players.LocalPlayer.Data.DevilFruit.Value) and table.find(AwakeCheck(), "V") and AwakeCheck()["V"] == false and UseLessFruit()[1] ~= nil then
- if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") and game:GetService("Players")["LocalPlayer"].PlayerGui.Main.Timer.Visible then
- for i,v in pairs(game.Workspace.Enemies:GetDescendants()) do
- if v:FindFirstChild("Humanoid") and v:FindFirstChild("HumanoidRootPart") and v.Humanoid.Health > 0 then
- pcall(function()
- v.Humanoid.Health = 0
- sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
- end)
- end
- end
- if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") or game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- if game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 5") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 5"].CFrame*CFrame.new(0,80,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 4") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 4"].CFrame*CFrame.new(0,80,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 3") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 3"].CFrame*CFrame.new(0,80,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 2") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 2"].CFrame*CFrame.new(0,30,0))
- elseif game:GetService("Workspace")["_WorldOrigin"].Locations:FindFirstChild("Island 1") then
- TP(game:GetService("Workspace")["_WorldOrigin"].Locations["Island 1"].CFrame*CFrame.new(0,70,0))
- end
- end
- end
- elseif getgenv().Setting["AutoSaber"] and getgenv().Setting["Level"] >= 275 and First_Sea and (game:GetService("Workspace").Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") or game:GetService("ReplicatedStorage"):FindFirstChild("Saber Expert [Lv. 200] [Boss]")) and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress").KilledShanks == false then
- local RemoteProQuest = Remotes.CommF_:InvokeServer("ProQuestProgress")
- if not Workspace.Map.Jungle.QuestPlates.Door.CanCollide then
- if RemoteProQuest["UsedTorch"] then
- if RemoteProQuest["UsedCup"] then
- if RemoteProQuest["TalkedSon"] then
- if RemoteProQuest["KilledMob"] then
- if RemoteProQuest["UsedRelic"] then
- if not RemoteProQuest["KilledShanks"] then
- if game:GetService("Workspace").Enemies:FindFirstChild("Saber Expert [Lv. 200] [Boss]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Saber Expert [Lv. 200] [Boss]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- RawFastAttack = true
- until not v.Parent or v.Humanoid.Health <= 0 or AutoSaber == false
- RawFastAttack = false
- end
- end
- else
- RawFastAttack = false
- TP(CFrame.new(-1458.89502, 29.8870335, -50.633564))
- if GetDistance(CFrame.new(-1458.89502, 29.8870335, -50.633564)) <= 100 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
- end
- end
- end
- else
- if not LocalPlayer.Character:FindFirstChild("Relic") and not LocalPlayer.Backpack:FindFirstChild("Relic") then
- Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon")
- else
- EquipWeapon("Relic")
- if LocalPlayer.Character:FindFirstChild("Relic") then
- Remotes.CommF_:InvokeServer("ProQuestProgress", "PlaceRelic")
- end
- end
- end
- elseif game:GetService("Workspace").Enemies:FindFirstChild("Mob Leader [Lv. 120] [Boss]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Mob Leader [Lv. 120] [Boss]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- RawFastAttack = true
- until not v.Parent or v.Humanoid.Health <= 0 or AutoSaber == false
- RawFastAttack = false
- end
- end
- else
- RawFastAttack = false
- TP(CFrame.new(-2844.7307128906, 7.4180502891541, 5356.6723632813))
- end
- else
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","RichSon")
- end
- else
- if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Cup") or game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Cup") then
- EquipWeapon("Cup")
- if game:GetService("Players").LocalPlayer.Character.Cup.Handle.Drop1.Transparency == 1 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","FillCup",game:GetService("Players").LocalPlayer.Character.Cup)
- elseif game:GetService("Players").LocalPlayer.Character.Cup.Handle.Drop1.Transparency ~= 1 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","SickMan")
- end
- elseif not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Cup") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Cup") then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress","GetCup")
- end
- end
- elseif not LocalPlayer.Character:FindFirstChild("Torch") and not LocalPlayer.Backpack:FindFirstChild("Torch") then
- Remotes.CommF_:InvokeServer("ProQuestProgress", "GetTorch")
- else
- Remotes.CommF_:InvokeServer("ProQuestProgress", "DestroyTorch")
- end
- else
- for i,v in pairs(RemoteProQuest["Plates"]) do
- if v == false then
- Remotes.CommF_:InvokeServer("ProQuestProgress", "Plate", i)
- end
- end
- getsenv(game.Players.LocalPlayer.PlayerScripts.QuestPro):refresh()
- end
- elseif getgenv().Setting["Yama"] and Third_Sea and StartEliteHunter then
- if not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
- if GetDistance(CFrame.new(-5418.392578125, 313.74130249023, -2824.9157714844)) < 5 then
- wait(1.1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("EliteHunter")
- else
- TP(CFrame.new(-5418.392578125, 313.74130249023, -2824.9157714844))
- end
- elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
- if string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Deandre") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Diablo") or string.find(game.Players.LocalPlayer.PlayerGui.Main.Quest.Container.QuestTitle.Title.Text, "Urban") then
- if game:GetService("Workspace").Enemies:FindFirstChild("Deandre [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Diablo [Lv. 1750]") or game:GetService("Workspace").Enemies:FindFirstChild("Urban [Lv. 1750]") then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == "Deandre [Lv. 1750]" or v.Name == "Diablo [Lv. 1750]" or v.Name == "Urban [Lv. 1750]" then
- repeat task.wait()
- EquipWeapon(getgenv().Setting["Weapon"])
- TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- v.Humanoid.WalkSpeed = 0
- OldFrame = v.HumanoidRootPart.CFrame
- v.HumanoidRootPart.CFrame = OldFrame
- RawFastAttack = true
- until v.Humanoid.Health <= 0 or not StartEliteHunter or game.Players.LocalPlayer.PlayerGui.Main.Quest.Visible == false
- RawFastAttack = false
- end
- end
- elseif game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Deandre [Lv. 1750]").HumanoidRootPart.CFrame)
- elseif game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Urban [Lv. 1750]").HumanoidRootPart.CFrame)
- elseif game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]") then
- TP(game:GetService("ReplicatedStorage"):FindFirstChild("Diablo [Lv. 1750]").HumanoidRootPart.CFrame)
- end
- else
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
- end
- end
- elseif getgenv().Setting["AutoFarm"] then
- if First_Sea then
- if getgenv().Setting["Level"] >= 150 and getgenv().Setting["Level"] <= 189 and GetDistance(CFrameQuest) > 1500 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
- elseif getgenv().Setting["Level"] >= 375 and getgenv().Setting["Level"] <= 449 and GetDistance(CFrameQuest) > 3000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(61163.8515625, 11.6796875, 1819.7841796875))
- elseif getgenv().Setting["Level"] >= 450 and getgenv().Setting["Level"] <= 474 and GetDistance(CFrameQuest) > 3000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
- elseif getgenv().Setting["Level"] >= 475 and getgenv().Setting["Level"] <= 624 and game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y < 2000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-7894.6176757813, 5547.1416015625, -380.29119873047))
- elseif getgenv().Setting["Level"] >= 625 and game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.Y > 3000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-4607.82275, 872.54248, -1667.55688))
- end
- elseif Second_Sea then
- if getgenv().Setting["Level"] >= 1250 and getgenv().Setting["Level"] <= 1349 and GetDistance(CFrameQuest) > 20000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(923.21252441406, 126.9760055542, 32852.83203125))
- elseif getgenv().Setting["Level"] >= 1350 and GetDistance(CFrameQuest) > 20000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(-6508.5581054688, 89.034996032715, -132.83953857422))
- end
- elseif Third_Sea then
- if getgenv().Setting["Level"] >= 1575 and getgenv().Setting["Level"] <= 1699 and GetDistance(CFrameQuest) > 2000 then
- if toposfarm then
- toposfarm:Stop()
- wait(0.05)
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("requestEntrance",Vector3.new(5314.58203125, 25.419387817383, -125.94227600098))
- end
- end
- if not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
- if GetDistance(CFrameQuest) < 5 then
- wait(1.1)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StartQuest", NameQuest, QuestLv)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("SetSpawnPoint")
- elseif GetDistance(CFrameQuest) < 20 or GetDistance(CFrameQuest) > 400 then
- toquest = TP(CFrameQuest)
- elseif GetDistance(CFrameQuest) >= 20 and GetDistance(CFrameQuest) <= 400 then
- if toquest then
- toquest:Stop()
- wait(0.06)
- end
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrameQuest
- end
- elseif game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible then
- if game:GetService("Workspace").Enemies:FindFirstChild(NameMon) then
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v.Name == NameMon and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
- repeat task.wait()
- if string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Container.QuestReward.Title.Text:gsub(",","") ,require(game:GetService("ReplicatedStorage").Quests)[NameQuest][QuestLv].Reward.Exp) then
- MinHealth = v.Humanoid.MaxHealth * 25 / 100
- if FarmMasteryFruit and getgenv().Setting["FarmMasteryAfterMax"] then
- if v.Humanoid.Health <= MinHealth then
- EquipWeapon(game.Players.LocalPlayer.Data.DevilFruit.Value)
- if GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) < 20 or GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) > 400 then
- tweenmob = TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- elseif GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) >= 20 and GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) <= 400 then
- if tweenmob then
- tweenmob:Stop()
- wait(0.06)
- end
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * Farm_Mode
- end
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- PosMon = v.HumanoidRootPart.CFrame
- MagnetActive = true
- spawn(function()
- if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Human-Human: Buddha") then
- if game.Players.LocalPlayer.Character.HumanoidRootPart.Size == Vector3.new(2, 2.0199999809265, 1) then
- if table.find(SkillWork(), "Z") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "Z", false, game)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "Z", false, game)
- end
- end
- if table.find(SkillWork(), "X") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "X", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "X", false, game)
- end
- if table.find(SkillWork(), "C") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "C", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "C", false, game)
- end
- if table.find(SkillWork(), "V") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "V", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "V", false, game)
- end
- elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(game.Players.LocalPlayer.Data.DevilFruit.Value) then
- if table.find(SkillWork(), "Z") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "Z", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "Z", false, game)
- end
- if table.find(SkillWork(), "X") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "X", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "X", false, game)
- end
- if table.find(SkillWork(), "C") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "C", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "C", false, game)
- end
- if table.find(SkillWork(), "V") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "V", false, game)
- game:GetService("Players").LocalPlayer.Character[game.Players.LocalPlayer.Data.DevilFruit.Value].RemoteEvent:FireServer(v.HumanoidRootPart.Position)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "V", false, game)
- end
- end
- end)
- else
- EquipWeapon(getgenv().Setting["Weapon"])
- if GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) < 20 or GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) > 400 then
- tweenmob = TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- elseif GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) >= 20 and GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) <= 400 then
- if tweenmob then
- tweenmob:Stop()
- wait(0.06)
- end
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * Farm_Mode
- end
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- PosMon = v.HumanoidRootPart.CFrame
- MagnetActive = true
- end
- else
- if game.Players.LocalPlayer.Backpack:FindFirstChild(getgenv().Setting["Weapon"]) then
- EquipWeapon(getgenv().Setting["Weapon"])
- end
- if GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) < 20 or GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) > 400 then
- tweenmob = TP(v.HumanoidRootPart.CFrame * Farm_Mode)
- elseif GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) >= 20 and GetDistance(v.HumanoidRootPart.CFrame * Farm_Mode) <= 400 then
- if tweenmob then
- tweenmob:Stop()
- wait(0.06)
- end
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * Farm_Mode
- end
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- PosMon = v.HumanoidRootPart.CFrame
- MagnetActive = true
- if game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") and table.find(SkillWork(), "V") then
- game:GetService("VirtualInputManager"):SendKeyEvent(true, "V", false, game)
- game:GetService("VirtualInputManager"):SendKeyEvent(false, "V", false, game)
- end
- end
- else
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AbandonQuest")
- end
- until not getgenv().Setting["AutoFarm"] or v.Humanoid.Health <= 0 or not game:GetService("Players").LocalPlayer.PlayerGui.Main.Quest.Visible
- MagnetActive = false
- end
- end
- elseif game:GetService("ReplicatedStorage"):FindFirstChild(NameMon) then
- tweenmob = TP(game:GetService("ReplicatedStorage"):FindFirstChild(NameMon).HumanoidRootPart.CFrame)
- elseif GetDistance(PosMon) >= 400 then
- tweenmob = TP(PosMon * Farm_Mode)
- end
- end
- end
- end)
- end
- end
- end)
- spawn(function()
- while wait() and Second_Sea do
- pcall(function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("ProQuestProgress").KilledShanks then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
- end
- end)
- end
- end)
- function CheckFragmentsWant()
- amount_Fragments = 0
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
- if v.Data["Awakening"] and v.Name == game.Players.LocalPlayer.Data.DevilFruit.Value then
- for i1,v1 in pairs(v.Data["Awakening"]["Fragments"]) do
- if not AwakeCheck()[i1] then
- amount_Fragments = amount_Fragments + v.Data["Awakening"]["Fragments"][i1]
- end
- end
- end
- end
- return amount_Fragments
- end
- spawn(function()
- while wait() and not First_Sea do
- pcall(function()
- if getgenv().Setting["AutoFarm"] and getgenv().Setting["AutoAwakeFruit"] and getgenv().Setting["Level"] >= 2300 then
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Awakener", "Check") ~= 0 then
- local args = {
- [1] = "Awakener",
- [2] = "Awaken"
- }
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer(unpack(args))
- end
- if game.Players.LocalPlayer.Data.Fragments.Value < CheckFragmentsWant() then
- AwakeFragmentsRaid = true
- else
- AwakeFragmentsRaid = false
- end
- else
- AwakeFragmentsRaid = false
- end
- end)
- end
- end)
- spawn(function()
- while wait() and Third_Sea do
- pcall(function()
- if game.Players.LocalPlayer.Data.DevilFruit.Value == "" then
- if getgenv().Setting["AutoAwakeFruit"] and getgenv().Setting["AutoFarm"] then
- for i,v in pairs(FruitCanAwake) do
- for i1,v1 in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
- if v1.Name == v then
- CheckFruit = true
- wait()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LoadFruit", v.Name)
- wait()
- game:GetService("Players").LocalPlayer.Character:WaitForChild(v.Name).EatRemote:InvokeServer("Eat")
- wait()
- CheckFruit = false
- end
- end
- end
- end
- end
- end)
- end
- end)
- counttime = 0
- spawn(function()
- while wait() do
- if getgenv().MainSetting["WebHookNotification"] then
- WebHook(getgenv().MainSetting["WebHooklink"])
- repeat wait(1)
- counttime = counttime + 1
- until counttime >= 180 or not getgenv().MainSetting["WebHookNotification"]
- counttime = 0
- end
- end
- end)
- spawn(function()
- while wait() and not Third_Sea do
- pcall(function()
- if getgenv().MainSetting["BuySelectedFruit"] then
- if not table.find(getgenv().MainSetting["SelectedFruit"], game.Players.LocalPlayer.Data.DevilFruit.Value) then
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")) do
- for i1,v1 in next, v do
- if i1 == "Name" then
- if v["OnSale"] and table.find(getgenv().MainSetting["SelectedFruit"], v1) and not table.find(getgenv().MainSetting["SelectedFruit"], game.Players.LocalPlayer.Data.DevilFruit.Value) then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("PurchaseRawFruit", v1)
- end
- end
- end
- end
- end
- end
- end)
- end
- end)
- spawn(function()
- while wait() do
- if getgenv().Setting["Level"] ~= 2300 then
- if getgenv().Setting["AutoFarm"] and getgenv().Setting["CodeRedeemed"]["TheGreatAce"] == false then
- pcall(function()
- if not string.find(game:GetService("Players").LocalPlayer.PlayerGui.Main.Level.Exp.Text, "2x") then
- for i,v in pairs(getgenv().Setting["CodeRedeemed"]) do
- if v == false then
- game:GetService("ReplicatedStorage").Remotes.Redeem:InvokeServer(i)
- getgenv().Setting["CodeRedeemed"][i] = true
- Savesetting()
- end
- end
- end
- end)
- end
- end
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- if getgenv().Setting["AutoFarm"] and getgenv().Setting["FarmMasteryAfterMaxLv"] then
- if getgenv().Setting["Level"] >= 2300 then
- if table.find(FruitCanAwake, game.Players.LocalPlayer.Data.DevilFruit.Value) and table.find(AwakeCheck(), "V") and AwakeCheck()["V"] then
- if getgenv().Setting["Check Superhuman"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman") ~= 0 then
- if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Superhuman") then
- if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
- game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
- else
- getgenv().Setting["Weapon"] = "Superhuman"
- getgenv().Setting["Check Superhuman"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value
- Savesetting()
- end
- elseif getgenv().Setting["Check Electric Claw"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw") ~= 0 then
- if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electric Claw") then
- if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
- game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
- else
- getgenv().Setting["Weapon"] = "Electric Claw"
- getgenv().Setting["Check Electric Claw"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value
- Savesetting()
- end
- else
- FarmMasteryFruit = true
- end
- else
- if getgenv().Setting["Check Superhuman"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman") ~= 0 then
- if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Superhuman") then
- if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
- game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
- else
- getgenv().Setting["Weapon"] = "Superhuman"
- getgenv().Setting["Check Superhuman"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value
- Savesetting()
- end
- elseif getgenv().Setting["Check Electric Claw"]["Lv"] <= 349 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw") ~= 0 then
- if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw") and not game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Electric Claw") then
- if game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool") then
- game:GetService("Players").LocalPlayer.Character.Humanoid:UnequipTools()
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
- else
- getgenv().Setting["Weapon"] = "Electric Claw"
- getgenv().Setting["Check Electric Claw"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value
- Savesetting()
- end
- elseif game.Players.LocalPlayer.Data.DevilFruit.Value ~= "" then
- FarmMasteryFruit = true
- end
- end
- end
- end
- end)
- end
- end)
- spawn(function()
- while wait() and Second_Sea do
- if getgenv().Setting["AutoFarm"] then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LegendarySwordDealer", "1")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LegendarySwordDealer", "2")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("LegendarySwordDealer", "3")
- end
- end
- end)
- spawn(function()
- while wait() do
- if getgenv().Setting["Superhuman"] then
- pcall(function()
- oldName = nil
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") and v.ToolTip == "Melee" then
- if not oldName then
- oldName = v.Name
- elseif oldName and v.Name == oldName then
- game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(15)
- end
- for i1,v1 in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
- if v1:IsA("Tool") and v1.ToolTip == "Melee" then
- game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(15)
- end
- end
- end
- end
- end)
- end
- end
- end)
- spawn(function()
- while wait() do
- if getgenv().Setting["Superhuman"] and (not getgenv().Setting["Check Superhuman"]["Superhuman"] or Second_Sea) then
- pcall(function()
- if game.Players.LocalPlayer.Character.Humanoid.Health > 0 then
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Superhuman") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman") then
- getgenv().Setting["Weapon"] = "Superhuman"
- getgenv().Setting["Check Superhuman"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Superhuman").Level.Value
- getgenv().Setting["Check Superhuman"]["Superhuman"] = true
- Savesetting()
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Dragon Claw") then
- getgenv().Setting["Weapon"] = "Dragon Claw"
- Savesetting()
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Fishman Karate") then
- getgenv().Setting["Weapon"] = "Fishman Karate"
- Savesetting()
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electro") then
- getgenv().Setting["Weapon"] = "Electro"
- Savesetting()
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") or game:GetService("Players").LocalPlayer.Character:FindFirstChild("Black Leg") then
- getgenv().Setting["Weapon"] = "Black Leg"
- Savesetting()
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") then
- getgenv().Setting["Weapon"] = "Combat"
- Savesetting()
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Combat") or game.Players.LocalPlayer.Character:FindFirstChild("Combat") or not getgenv().Setting["Check Superhuman"]["Electro"] then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Backpack:FindFirstChild("Black Leg").Level.Value >= 300 then
- getgenv().Setting["Check Superhuman"]["BlackLeg"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
- wait()
- end
- if game.Players.LocalPlayer.Character:FindFirstChild("Black Leg") and game.Players.LocalPlayer.Character:FindFirstChild("Black Leg").Level.Value >= 300 then
- getgenv().Setting["Check Superhuman"]["BlackLeg"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
- wait()
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 300 then
- getgenv().Setting["Check Superhuman"]["Electro"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
- wait()
- end
- if game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 300 then
- getgenv().Setting["Check Superhuman"]["Electro"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
- wait()
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Backpack:FindFirstChild("Fishman Karate").Level.Value >= 300 then
- getgenv().Setting["Check Superhuman"]["FishmanKarate"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2")
- if game.Players.LocalPlayer.Data.Fragments.Value <= 1499 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 1 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 2 then
- FragmentRaid = true
- end
- wait()
- end
- if game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate") and game.Players.LocalPlayer.Character:FindFirstChild("Fishman Karate").Level.Value >= 300 then
- getgenv().Setting["Check Superhuman"]["FishmanKarate"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2")
- if game.Players.LocalPlayer.Data.Fragments.Value <= 1499 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 1 and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward", "DragonClaw", "2") ~= 2 then
- FragmentRaid = true
- end
- wait()
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Backpack:FindFirstChild("Dragon Claw").Level.Value >= 300 then
- FragmentRaid = false
- getgenv().Setting["Check Superhuman"]["DragonClaw"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
- wait()
- end
- if game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw") and game.Players.LocalPlayer.Character:FindFirstChild("Dragon Claw").Level.Value >= 300 then
- FragmentRaid = false
- getgenv().Setting["Check Superhuman"]["DragonClaw"] = true
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
- wait()
- end
- end
- end)
- end
- end
- end)
- spawn(function()
- while task.wait() do
- if getgenv().Setting["AutoFarm"] then
- if game.Players.LocalPlayer.Data.Stats.Melee.Level.Value ~= 2300 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint", "Melee", 1)
- elseif game.Players.LocalPlayer.Data.Stats.Defense.Level.Value ~= 2300 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint", "Defense", 1)
- elseif getgenv().Setting["AutoAwakeFruit"] and game.Players.LocalPlayer.Data.Stats["Demon Fruit"].Level.Value ~= 2300 then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AddPoint", "Demon Fruit", 1)
- end
- end
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- if getgenv().Setting["Electric Claw"] and not getgenv().Setting["Check Electric Claw"]["Have"] and (getgenv().Setting["Check Superhuman"]["Superhuman"] == true or not getgenv().Setting["Superhuman"]) and Third_Sea then
- if (game.Players.LocalPlayer.Character:FindFirstChild("Electro") and game.Players.LocalPlayer.Character:FindFirstChild("Electro").Level.Value >= 400) or (game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") and game.Players.LocalPlayer.Backpack:FindFirstChild("Electro").Level.Value >= 400) then
- if game.Players.LocalPlayer.Data.Fragments.Value <= 4999 and not getgenv().Setting["Check Electric Claw"]["Have"] and game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw","Start") == 0 then
- FragmentRaid = true
- end
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
- end
- if game.Players.LocalPlayer.Backpack:FindFirstChild("Electro") or game.Players.LocalPlayer.Character:FindFirstChild("Electro") then
- getgenv().Setting["Weapon"] = "Electro"
- Savesetting()
- elseif game.Players.LocalPlayer.Backpack:FindFirstChild("Electric Claw") or game.Players.LocalPlayer.Character:FindFirstChild("Electric Claw") then
- FragmentRaid = false
- getgenv().Setting["Weapon"] = "Electric Claw"
- getgenv().Setting["Check Electric Claw"]["Lv"] = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Electric Claw").Level.Value
- getgenv().Setting["Check Electric Claw"]["Have"] = true
- Savesetting()
- else
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
- end
- end
- end)
- end
- end)
- spawn(function()
- while wait() do
- pcall(function()
- if not game.Players.LocalPlayer.Character:FindFirstChild("HasBuso") then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Buso")
- end
- end)
- end
- end)
- spawn(function()
- pcall(function()
- while wait() do
- if getgenv().Setting["AutoFarm"] and not CheckFruit and not GoAwakening then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("Cousin","Buy")
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if string.find(v.Name, "Fruit") then
- FruitDeleteSpace = v.Name:gsub(" Fruit", "")
- if v.Name == "Bird: Falcon Fruit" then
- NameFruit = "Bird-Bird: Falcon"
- elseif v.Name == "Bird: Phoenix Fruit" then
- NameFruit = "Bird-Bird: Phoenix"
- elseif v.Name == "Human: Buddha Fruit" then
- NameFruit = "Human-Human: Buddha"
- else
- NameFruit = FruitDeleteSpace.."-"..FruitDeleteSpace
- end
- if not table.find(FruitInStore(), NameFruit) then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit", NameFruit)
- end
- end
- end
- for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
- if string.find(v.Name, "Fruit") then
- FruitDeleteSpace = v.Name:gsub(" Fruit", "")
- if v.Name == "Bird: Falcon Fruit" then
- NameFruit = "Bird-Bird: Falcon"
- elseif v.Name == "Bird: Phoenix Fruit" then
- NameFruit = "Bird-Bird: Phoenix"
- elseif v.Name == "Human: Buddha Fruit" then
- NameFruit = "Human-Human: Buddha"
- else
- NameFruit = FruitDeleteSpace.."-"..FruitDeleteSpace
- end
- if not table.find(FruitInStore(), NameFruit) then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("StoreFruit", NameFruit)
- end
- end
- end
- end
- end
- end)
- end)
- spawn(function()
- while task.wait() do
- pcall(function()
- for i,v in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
- if v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and not v.Name:find("Boss") then
- if getgenv().Setting["AutoFarm"] and MagnetActive and tonumber(v.Name:match("%d+")) <= tonumber(NameMon:match("%d+")) then
- if (v.HumanoidRootPart.Position - PosMon.Position).Magnitude <= 350 then
- v.Head.CanCollide = false
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- v.Humanoid.WalkSpeed = 0
- v.HumanoidRootPart.CFrame = PosMon
- sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
- end
- elseif getgenv().Setting["AutoFarm"] and MagnetBartilo then
- if v.Name == "Swan Pirate [Lv. 775]" then
- v.Head.CanCollide = false
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- v.Humanoid.WalkSpeed = 0
- v.HumanoidRootPart.CFrame = PosMonBartilo
- sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
- end
- elseif getgenv().Setting["Rengoku"] and RengokuMagnet then
- if (v.Name == "Snow Lurker [Lv. 1375]" or v.Name == "Arctic Warrior [Lv. 1350]") and (v.HumanoidRootPart.Position - PosMonRengoku.Position).Magnitude <= 375 then
- v.Head.CanCollide = false
- v.HumanoidRootPart.CanCollide = false
- v.HumanoidRootPart.Size = Vector3.new(60, 60, 60)
- v.Humanoid.WalkSpeed = 0
- v.HumanoidRootPart.CFrame = PosMonRengoku
- sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
- end
- end
- end
- end
- end)
- end
- end)
- local LPH_JIT_MAX = LPH_JIT_MAX or function(...) return ... end
- local RigC = getupvalue(require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework),2)
- local particle = require(game:GetService("Players").LocalPlayer.PlayerScripts.CombatFramework.Particle)
- local kkii = require(game:GetService("ReplicatedStorage").Util.CameraShaker)
- local function maxincrement()
- return #RigC.activeController.anims.basic
- end
- kkii:Stop()
- LPH_JIT_MAX(function()
- spawn(function()
- game:GetService("RunService").Stepped:Connect(function()
- pcall(function()
- RigC.activeController.increment = maxincrement() - 1
- RigC.activeController.timeToNextAttack = -(math.huge*math.huge*math.huge)
- RigC.activeController.hitboxMagnitude = 50
- game:GetService("RunService").RenderStepped:wait()
- RigC.activeController.attacking = false
- end)
- end)
- game:GetService("RunService").Heartbeat:Connect(function()
- pcall(function()
- if RawFastAttack or (getgenv().Setting["AutoFarm"] and MagnetActive) or (getgenv().Setting["AutoFarm"] and MagnetBartilo) or (getgenv().Setting["Rengoku"] and RengokuMagnet) then
- RigC.activeController:attack()
- end
- end)
- end)
- local hookparticle;
- hookparticle = hookfunc(particle.play, function(...)
- local args = {...}
- args[2] = nil
- return hookparticle(args[1], args[2], args[3])
- end)
- end)
- end)()
- spawn(function()
- game:GetService("CoreGui").RobloxPromptGui.promptOverlay.ChildAdded:Connect(function(child)
- if child.Name == 'ErrorPrompt' and child:FindFirstChild('MessageArea') and child.MessageArea:FindFirstChild("ErrorFrame") then
- if not game:GetService("CoreGui").RobloxPromptGui.promptOverlay.ErrorPrompt.MessageArea.ErrorFrame.ErrorMessage.Text:lower():find("teleport") then
- game:GetService("TeleportService"):Teleport(game.PlaceId)
- end
- end
- end)
- end)
- spawn(function()
- game:GetService("RunService").Heartbeat:Connect(function()
- if getgenv().Setting["AutoFarm"] then
- if syn then
- setfflag("HumanoidParallelRemoveNoPhysics", "False")
- setfflag("HumanoidParallelRemoveNoPhysicsNoSimulate2", "False")
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- else
- if not game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("MyBodyVelocity") then
- local BodyVelocity = Instance.new("BodyVelocity")
- BodyVelocity.Name = "MyBodyVelocity"
- BodyVelocity.Parent = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
- BodyVelocity.MaxForce = Vector3.new(10000, 10000, 10000)
- BodyVelocity.Velocity = Vector3.new(0, 0, 0)
- end
- if not game:GetService("Workspace"):FindFirstChild("LOL") then
- local LOL = Instance.new("Part")
- LOL.Name = "LOL"
- LOL.Parent = game.Workspace
- LOL.Anchored = true
- LOL.Transparency = 1
- LOL.Size = Vector3.new(20 ,0.25 ,20)
- LOL.Material = "Neon"
- elseif game:GetService("Workspace"):FindFirstChild("LOL") then
- game.Workspace["LOL"].CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0, -3.9, 0)
- end
- end
- elseif game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("MyBodyVelocity") then
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("MyBodyVelocity"):Destroy()
- elseif game:GetService("Workspace"):FindFirstChild("LOL") then
- game:GetService("Workspace"):FindFirstChild("LOL"):Destroy()
- end
- end)
- game:GetService("RunService").Stepped:Connect(function()
- if getgenv().Setting["AutoFarm"] then
- for _, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if v:IsA("BasePart") then
- v.CanCollide = false
- end
- end
- end
- end)
- end)
- function WebHook(url)
- pcall(function()
- local Race = game.Players.LocalPlayer.Data.Race.Value
- local Fruit = game.Players.LocalPlayer.Data.DevilFruit.Value or "not Have"
- local PlayersServer = #game.Players:GetPlayers()
- local Ping = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString()
- local cpu = game:GetService("Stats").PerformanceStats.CPU:GetValueString()
- local Memory = game:GetService("Stats").PerformanceStats.Memory:GetValueString()
- local gpu = game:GetService("Stats").PerformanceStats.GPU:GetValueString()
- local Fps = math.floor(workspace:GetRealPhysicsFPS())
- WeaponMelee = "Error"
- WeaponMeleeLv = "Error"
- WeaponSword = "Error"
- WeaponSwordLv = "Error"
- for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- if v.ToolTip == "Melee" then
- WeaponMelee = v.Name
- WeaponMeleeLv = v.Level.Value
- elseif v.ToolTip == "Sword" then
- WeaponSword = v.Name
- WeaponSwordLv = v.Level.Value
- end
- end
- end
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- if v.ToolTip == "Melee" then
- WeaponMelee = v.Name
- WeaponMeleeLv = v.Level.Value
- elseif v.ToolTip == "Sword" then
- WeaponSword = v.Name
- WeaponSwordLv = v.Level.Value
- end
- end
- end
- fruitinstore = ""
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")) do
- if i > 1 then
- fruitinstore = fruitinstore..", "..v.Name
- else
- fruitinstore = fruitinstore..v.Name
- end
- end
- wpstorage = ""
- for i, v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")) do
- if i > 1 then
- wpstorage = wpstorage..", "..v.Name
- else
- wpstorage = wpstorage..v.Name
- end
- end
- awakened = ""
- if game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("AwakeningChanger", "Check") then
- for i,v in pairs(game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getAwakenedAbilities")) do
- if v["Key"] then
- if v["Awakened"] then
- if i ~= "X" then
- awakened = awakened..", "..v["Key"]
- else
- awakened = awakened..v["Key"]
- end
- end
- end
- end
- end
- local data = {
- ["content"] = "",
- ["embeds"] = {
- {
- ["color"] = tonumber(0x000000),
- ["title"] = "Check Status".." Credit Van Thang(Vin Hub)",
- ["fields"] = {
- {
- ["name"] = "Name :",
- ["value"] = "||"..game.Players.LocalPlayer.Name.."||",
- ["inline"] = false
- },
- {
- ["name"] = "Data",
- ["value"] = "**Fragments : "..tostring(game:GetService("Players").LocalPlayer.Data.Fragments.Value).."\nBeli : "..tostring(game:GetService("Players").LocalPlayer.Data.Beli.Value).."\nLevel : "..tostring(game:GetService("Players").LocalPlayer.Data.Level.Value).. "\nFruit : ".. Fruit .."\nAwakened Skill : " .. awakened .. "**",
- ["inline"] = false,
- },
- {
- ["name"] = "Weapon",
- ["value"] = "**Melee : ".. WeaponMelee .."\nMastery : ".. WeaponMeleeLv .."\nSword : ".. WeaponSword .."\nMastery : ".. WeaponSwordLv .."**",
- ["inline"] = false
- },
- {
- ["name"] = "Inventory Devil Fruit",
- ["value"] = "**Inventory Fruit : "..fruitinstore.."**",
- ["inline"] = false
- },
- {
- ["name"] = "Inventory Weapons",
- ["value"] = "**Inventory :"..wpstorage.."**",
- ["inline"] = false
- },
- },
- }
- }
- }
- local request = http_request
- local response = request(
- {
- Url = url,
- Method = "POST",
- Headers = {
- ["Content-Type"] = "application/json"
- },
- Body = game:GetService("HttpService"):JSONEncode(data)
- }
- )
- end)
- end
- if getgenv().Setting["Level"] == 0 then
- getgenv().Setting["Level"] = game.Players.LocalPlayer.Data.Level.Value
- Savesetting()
- end
- function UpdatePlayer()
- for i,v in pairs(game:GetService("Players"):GetChildren()) do
- pcall(function()
- if v.Character and v.Name ~= game.Players.LocalPlayer.Name then
- if ESPPlayer then
- if v.Character.Head and not v.Character.Head:FindFirstChild("PlayerESP : "..v.Name) then
- local Bb = Instance.new("BillboardGui", v.Character.Head)
- Bb.Name = "PlayerESP : "..v.Name
- Bb.ExtentsOffset = Vector3.new(0, 1, 0)
- Bb.Size = UDim2.new(1, 200, 1, 30)
- Bb.Adornee = v.Character.Head
- Bb.AlwaysOnTop = true
- local Textlb = Instance.new("TextLabel", Bb)
- Textlb.Font = "GothamBold"
- Textlb.FontSize = "Size14"
- Textlb.Text = v.Name.."\n"..math.round((v.Character.Head.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
- Textlb.Size = UDim2.new(1,0,1,0)
- Textlb.BackgroundTransparency = 1
- Textlb.TextStrokeTransparency = 0.5
- if v.Team == game:GetService("Players").LocalPlayer.Team then
- Textlb.TextColor3 = Color3.new(0, 255, 0)
- else
- Textlb.TextColor3 = Color3.new(0, 0, 204)
- end
- else
- v.Character.Head["PlayerESP : "..v.Name].TextLabel.Text = v.Name.."\n"..math.round((v.Character.Head.Position - game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
- end
- else
- if v.Character.Head:FindFirstChild("PlayerESP : "..v.Name) then
- v.Character.Head:FindFirstChild("PlayerESP : "..v.Name):Destroy()
- end
- end
- end
- end)
- end
- end
- function UpdateDevilFruit()
- for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
- pcall(function()
- if string.find(v.Name, "Fruit") then
- if ESPFruit then
- if not v.Handle:FindFirstChild(v.Name) then
- local Bb = Instance.new("BillboardGui", v.Handle)
- Bb.Name = v.Name
- Bb.ExtentsOffset = Vector3.new(0, 1, 0)
- Bb.Size = UDim2.new(1, 200, 1, 30)
- Bb.Adornee = v.Handle
- Bb.AlwaysOnTop = true
- local Textlb = Instance.new("TextLabel", Bb)
- Textlb.Font = "GothamBold"
- Textlb.FontSize = "Size14"
- Textlb.Size = UDim2.new(1,0,1,0)
- Textlb.BackgroundTransparency = 1
- Textlb.TextStrokeTransparency = 0.5
- Textlb.Text = v.Name.."\n"..math.round((v.Handle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
- Textlb.TextColor3 = Color3.new(255, 255, 255)
- else
- v.Handle[v.Name].TextLabel.Text = v.Name.."\n"..math.round((v.Handle.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude/3).." m."
- end
- end
- else
- if v.Handle:FindFirstChild(v.Name) then
- v.Handle:FindFirstChild(v.Name):Destroy()
- end
- end
- end)
- end
- end
- function BoostFPS()
- local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
- local g = game
- local w = g.Workspace
- local l = g.Lighting
- local t = w.Terrain
- t.WaterWaveSize = 0
- t.WaterWaveSpeed = 0
- t.WaterReflectance = 0
- t.WaterTransparency = 0
- l.GlobalShadows = false
- l.FogEnd = 9e9
- l.Brightness = 0
- settings().Rendering.QualityLevel = "Level01"
- for i, v in pairs(g:GetDescendants()) do
- if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
- v.Material = "Plastic"
- v.Reflectance = 0
- elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
- v.Transparency = 1
- elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
- v.Lifetime = NumberRange.new(0)
- elseif v:IsA("Explosion") then
- v.BlastPressure = 1
- v.BlastRadius = 1
- elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or v:IsA("Sparkles") then
- v.Enabled = false
- elseif v:IsA("MeshPart") then
- v.Material = "Plastic"
- v.Reflectance = 0
- v.TextureID = 10385902758728957
- end
- end
- for i, e in pairs(l:GetChildren()) do
- if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
- e.Enabled = false
- end
- end
- end
- if _G.AutoFarm then
- getgenv().Setting["AutoFarm"] = _G.AutoFarm
- end
- if _G.Superhuman == false then
- getgenv().Setting["Superhuman"] = _G.Superhuman
- end
- if _G.ElectricClaw == false then
- getgenv().Setting["Electric Claw"] = _G.ElectricClaw
- end
- if _G.Rengoku == false then
- getgenv().Setting["Rengoku"] = _G.Rengoku
- end
- if _G.Saber == false then
- getgenv().Setting["AutoSaber"] = _G.Saber
- end
- if _G.Yama == false then
- getgenv().Setting["Yama"] = _G.Yama
- end
- if _G.MasAfterMax == false then
- getgenv().Setting["FarmMasteryAfterMax"] = _G.MasAfterMax
- end
- if _G.AutoAwakeFruit == false then
- getgenv().Setting["AutoAwakeFruit"] = _G.AutoAwakeFruit
- end
- if _G.WhiteScreen == false then
- getgenv().Setting["WhiteScreenEnable"] = _G.WhiteScreen
- end
- if _G.FastMode then
- BoostFPS()
- end
- if Third_Sea and getgenv().Setting["Superhuman"] and getgenv().Setting["Electric Claw"] then
- getgenv().Setting["Superhuman"] = false
- end
- local win = SolarisLib:Window("Quartyz")
- local Main = win:Tab("Main")
- local Section1 = Main:Section("Main")
- local Section2 = Main:Section("Setting")
- Section1:Toggle("Auto Farm Level", getgenv().Setting["AutoFarm"], function(vu)
- getgenv().Setting["AutoFarm"] = vu
- if not vu then
- TP(game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
- end
- Savesetting()
- end)
- local weapondrop = Section1:Dropdown("Weapon", Weapon, function(vu)
- getgenv().Setting["Weapon"] = vu
- Savesetting()
- end)
- if getgenv().Setting["Weapon"] ~= "" then
- weapondrop:Set(getgenv().Setting["Weapon"])
- end
- Section1:Button("Refresh Weapon", function(vu)
- weapondrop:Clear()
- for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- weapondrop:Add(v.Name)
- end
- end
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- weapondrop:Add(v.Name)
- end
- end
- end)
- Section1:Bind("Toggle UI", Enum.KeyCode[getgenv().MainSetting["Toggle Key"]], function(vu)
- getgenv().MainSetting["Toggle Key"] = vu
- print(vu)
- Savemainsetting()
- end)
- Section2:Textbox("WebHooklink", true, function(vu)
- getgenv().MainSetting["WebHooklink"] = vu
- Savemainsetting()
- end)
- Section2:Toggle("WebHook [Every 3 minutes]", getgenv().MainSetting["WebHookNotification"], function(vu)
- getgenv().MainSetting["WebHookNotification"] = vu
- Savemainsetting()
- end)
- local Dropdownfruit = Section2:MultiDropdown("Fruit Select", FruitList, function(vu)
- getgenv().MainSetting["SelectedFruit"] = vu
- Savemainsetting()
- end)
- pcall(function()
- if getgenv().MainSetting["SelectedFruit"][1] == nil then
- Dropdownfruit:Set({"Dragon-Dragon", "Shadow-Shadow", "Venom-Venom", "Quake-Quake", "Human-Human: Buddha", "Rumble-Rumble", "Magma-Magma", "Dark-Dark", "Ice-Ice"})
- else
- Dropdownfruit:Set(getgenv().MainSetting["SelectedFruit"])
- end
- end)
- Section2:Toggle("Auto Buy Selected Fruit", getgenv().MainSetting["BuySelectedFruit"], function(vu)
- getgenv().MainSetting["BuySelectedFruit"] = vu
- Savemainsetting()
- end)
- Section2:Toggle("Rengoku", getgenv().Setting["Rengoku"], function(vu)
- getgenv().Setting["Rengoku"] = vu
- Savesetting()
- end)
- Section2:Toggle("Yama", getgenv().Setting["Yama"], function(vu)
- getgenv().Setting["Yama"] = vu
- Savesetting()
- end)
- Section2:Toggle("Saber", getgenv().Setting["AutoSaber"], function(vu)
- getgenv().Setting["AutoSaber"] = vu
- Savesetting()
- end)
- Section2:Toggle("Superhuman", getgenv().Setting["Superhuman"], function(vu)
- getgenv().Setting["Superhuman"] = vu
- if vu and not getgenv().Setting["Check Superhuman"]["Electro"] and not getgenv().Setting["Check Superhuman"]["Superhuman"] then
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
- end
- Savesetting()
- end)
- Section2:Toggle("Electric Claw", getgenv().Setting["Electric Claw"], function(vu)
- getgenv().Setting["Electric Claw"] = vu
- Savesetting()
- end)
- Section2:Toggle("Auto Mastery After Max Lv", getgenv().Setting["FarmMasteryAfterMax"], function(vu)
- getgenv().Setting["FarmMasteryAfterMax"] = vu
- Savesetting()
- end)
- Section2:Toggle("Auto Awake Fruit", getgenv().Setting["AutoAwakeFruit"], function(vu)
- getgenv().Setting["AutoAwakeFruit"] = vu
- Savesetting()
- end)
- Section2:Toggle("White Screen", getgenv().Setting["WhiteScreenEnable"], function(vu)
- getgenv().Setting["WhiteScreenEnable"] = vu
- Savesetting()
- end)
- Section2:Button("Fast Mode", function()
- BoostFPS()
- end)
- local Ser = Main:Section("Server")
- Ser:Button("Rejoin Server", function()
- game:GetService("TeleportService"):Teleport(game.PlaceId)
- end)
- Ser:Button("Hop Server", function()
- Teleport()
- end)
- Ser:Button("Hop Server(Less Player)", function()
- local maxplayers, gamelink, goodserver = math.huge, "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100"
- local function serversearch()
- website = game:GetService"HttpService":JSONDecode(game:HttpGetAsync(gamelink))
- for _, v in pairs(website.data) do
- pcall(function()
- if v.id and v.playing and tonumber(maxplayers) > tonumber(v.playing) then
- maxplayers = v.playing
- goodserver = v.id
- end
- end)
- end
- end
- function getservers()
- pcall(serversearch)
- for i, v in pairs(website) do
- if i == "nextPageCursor" then
- if gamelink:find"&cursor=" then
- local a = gamelink:find"&cursor="
- local b = gamelink:sub(a)
- gamelink = gamelink:gsub(b, "")
- end
- gamelink = gamelink .. "&cursor=" .. v
- pcall(getservers)
- end
- end
- end
- SolarisLib:Notification("Warning", "wait for searching server\nand wait for hop", 30)
- pcall(getservers)
- game:GetService"TeleportService":TeleportToPlaceInstance(game.PlaceId, goodserver)
- end)
- local Misc = win:Tab("Misc")
- local Misc1 = Misc:Section("ESP")
- Misc1:Toggle("EPS Fruit", false, function(vu)
- ESPFruit = vu
- while ESPFruit do wait()
- UpdateDevilFruit()
- end
- end)
- Misc1:Toggle("ESP Player", false, function(vu)
- ESPPlayer = vu
- while ESPPlayer do wait()
- UpdatePlayer()
- end
- end)
- local BuyItem = Misc:Section("Item")
- BuyItem:Label("Abilities")
- BuyItem:Button("Skyjump", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
- end)
- BuyItem:Button("Buso Haki", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
- end)
- BuyItem:Button("Soru", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
- end)
- BuyItem:Button("Ken Haki", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Start")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("KenTalk","Buy")
- end)
- BuyItem:Toggle("Auto Buy Abilities", false, function(vu)
- Abilities = vu
- while Abilities do wait()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Geppo")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Buso")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyHaki","Soru")
- end
- end)
- BuyItem:Button("Refund Stat [2500 F]", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Refund","1")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Refund","2")
- end)
- BuyItem:Button("Reroll Race [3000 F]", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Reroll","1")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Reroll","2")
- end)
- BuyItem:Label("Fighting Style")
- BuyItem:Button("Black Leg", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyBlackLeg")
- end)
- BuyItem:Button("Electro", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectro")
- end)
- BuyItem:Button("Fishman Karate", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyFishmanKarate")
- end)
- BuyItem:Button("Dragon Claw", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","1")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","DragonClaw","2")
- end)
- BuyItem:Button("Superhuman", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySuperhuman")
- end)
- BuyItem:Button("Death Step", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDeathStep")
- end)
- BuyItem:Button("Sharkman Karate", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate",true)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuySharkmanKarate")
- end)
- BuyItem:Button("Electric Claw", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw",true)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyElectricClaw")
- end)
- BuyItem:Button("Dragon Talon", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon",true)
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyDragonTalon")
- end)
- BuyItem:Label("Sword")
- BuyItem:Button("Katana", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Katana")
- end)
- BuyItem:Button("Cutlass", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cutlass")
- end)
- BuyItem:Button("Duel Katana", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Duel Katana")
- end)
- BuyItem:Button("Iron Mace", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Iron Mace")
- end)
- BuyItem:Button("Pipe", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Pipe")
- end)
- BuyItem:Button("Triple Katana", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Triple Katana")
- end)
- BuyItem:Button("Dual-Headed Blade", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Dual-Headed Blade")
- end)
- BuyItem:Button("Bisento", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Bisento")
- end)
- BuyItem:Button("Soul Cane", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Soul Cane")
- end)
- BuyItem:Label("Gun")
- BuyItem:Button("Slingshot", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Slingshot")
- end)
- BuyItem:Button("Musket", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Musket")
- end)
- BuyItem:Button("Flintlock", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Flintlock")
- end)
- BuyItem:Button("Refined Flintlock", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Refined Flintlock")
- end)
- BuyItem:Button("Cannon", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Cannon")
- end)
- BuyItem:Button("Kabucha", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","1")
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BlackbeardReward","Slingshot","2")
- end)
- BuyItem:Label("Accessory")
- BuyItem:Button("Black Cape", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Black Cape")
- end)
- BuyItem:Button("Toemo Ring", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Tomoe Ring")
- end)
- BuyItem:Button("Swordsman Hat", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("BuyItem","Swordsman Hat")
- end)
- local UITab = win:Tab("Other UI")
- local UItab = UITab:Section("game")
- UItab:Button("Devil Shop", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("GetFruits")
- game.Players.localPlayer.PlayerGui.Main.FruitShop.Visible = true
- end)
- UItab:Button("Awakening UI", function()
- game.Players.LocalPlayer.PlayerGui.Main.AwakeningToggler.Visible = true
- end)
- UItab:Button("Inventory UI", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryWeapons")
- game.Players.localPlayer.PlayerGui.Main.Inventory.Visible = true
- end)
- UItab:Button("Fruit Inventory", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getInventoryFruits")
- game:GetService("Players").LocalPlayer.PlayerGui.Main.FruitInventory.Visible = true
- end)
- UItab:Button("Color Haki", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getColors")
- game.Players.localPlayer.PlayerGui.Main.Colors.Visible = true
- end)
- UItab:Button("Title Name", function()
- game:GetService("ReplicatedStorage").Remotes.CommF_:InvokeServer("getTitles")
- game.Players.localPlayer.PlayerGui.Main.Titles.Visible = true
- end)
- local WindowFocusReleasedFunction = function()
- if getgenv().Setting["WhiteScreenEnable"] then
- RunService:Set3dRenderingEnabled(false)
- else
- RunService:Set3dRenderingEnabled(true)
- end
- setfpscap(30)
- return
- end
- local WindowFocusedFunction = function()
- RunService:Set3dRenderingEnabled(true)
- setfpscap(30)
- return
- end
- local Initialize = function()
- UserInputService.WindowFocusReleased:Connect(WindowFocusReleasedFunction)
- UserInputService.WindowFocused:Connect(WindowFocusedFunction)
- return
- end
- Initialize()
- local vu = game:GetService("VirtualUser")
- game:GetService("Players").LocalPlayer.Idled:connect(function()
- vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- wait(1)
- vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- end)
- SolarisLib:Notification("Quartyz", "Whitelisted", 3)
- return SolarisLib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement