Ares Blatant
Ares Blatant
Ares Blatant
Loader.Name = "Loader"
Loader.Parent = game.CoreGui
Loader.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Main.Name = "Main"
Main.Parent = Loader
Main.AnchorPoint = Vector2.new(0.5, 0.5)
Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Main.BackgroundTransparency = 1.000
Main.BorderSizePixel = 0
Main.ClipsDescendants = true
Main.Position = UDim2.new(0.5, 0, 0.482113808, 0)
Main.Size = UDim2.new(0, 321, 0, 137)
Circle.Name = "Circle"
Circle.Parent = Main
Circle.AnchorPoint = Vector2.new(0.5, 0.5)
Circle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Circle.BackgroundTransparency = 1.000
Circle.BorderSizePixel = 0
Circle.Position = UDim2.new(0.5, 0, 0.5, 0)
Circle.Size = UDim2.new(0, 0, 0, 0)
Circle.Image = "rbxassetid://2712739733"
Circle.ImageColor3 = Color3.fromRGB(10, 10, 10)
TopBar.Name = "TopBar"
TopBar.Parent = Main
TopBar.AnchorPoint = Vector2.new(0.5, 0.5)
TopBar.BackgroundColor3 = Color3.fromRGB(9, 8, 19)
TopBar.BorderSizePixel = 0
TopBar.Position = UDim2.new(0.499000013, 0, 0.0729999989, 0)
TopBar.Size = UDim2.new(0, 325, 0, 25)
TopBar.BackgroundTransparency = 1
Title.Name = "Title"
Title.Parent = TopBar
Title.AnchorPoint = Vector2.new(0.5, 0.5)
Title.BackgroundColor3 = Color3.fromRGB(9, 8, 19)
Title.BackgroundTransparency = 1.000
Title.BorderColor3 = Color3.fromRGB(27, 42, 53)
Title.BorderSizePixel = 0
Title.Position = UDim2.new(0.173846155, 0, 0.5, 0)
Title.Size = UDim2.new(0, 113, 0, 25)
Title.Font = Enum.Font.Gotham
Title.Text = " " .. LoaderTitle
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextSize = 14.000
Title.TextXAlignment = Enum.TextXAlignment.Left
Title.TextTransparency = 1
Exit.Name = "Exit"
Exit.Parent = TopBar
Exit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Exit.BackgroundTransparency = 1.000
Exit.BorderSizePixel = 0
Exit.Position = UDim2.new(0.941538453, 0, 0.270000011, 0)
Exit.Size = UDim2.new(0, 12, 0, 12)
Exit.Image = "rbxassetid://2712739733"
Exit.ImageColor3 = Color3.fromRGB(255, 47, 50)
Exit.ImageTransparency = 1
Exit.MouseButton1Click:Connect(
function()
gui(DeclineButton, {TextTransparency = 1})
gui(DeclineButton, {BackgroundTransparency = 1})
gui(AcceptButton, {TextTransparency = 1})
gui(AcceptButton, {BackgroundTransparency = 1})
gui(GameInfo, {TextTransparency = 1})
gui(Start, {BackgroundTransparency = 1})
gui(TopBar, {BackgroundTransparency = 1})
gui(Start, {TextTransparency = 1})
gui(GameInfo, {TextTransparency = 1})
gui(Title, {TextTransparency = 1})
gui(Exit, {ImageTransparency = 1})
wait(1)
Circle:TweenSize(UDim2.new(0, 85, 0, 85), Enum.EasingDirection.In,
Enum.EasingStyle.Sine, 1)
wait(1)
Circle:TweenSize(UDim2.new(0, 0, 0, 0), Enum.EasingDirection.Out,
Enum.EasingStyle.Sine, 0.6)
wait(0.6)
Loader:Destroy()
end
)
GameInfo.Name = "GameInfo"
GameInfo.Parent = Main
GameInfo.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
GameInfo.BackgroundTransparency = 1.000
GameInfo.BorderSizePixel = 0
GameInfo.Position = UDim2.new(0.0841121525, 0, 0.259652048, 0)
GameInfo.Size = UDim2.new(0, 267, 0, 34)
GameInfo.Font = Enum.Font.GothamSemibold
GameInfo.Text = "Game found: Da Hood"
GameInfo.TextColor3 = Color3.fromRGB(150, 150, 150)
GameInfo.TextSize = 20.000
GameInfo.TextWrapped = true
GameInfo.TextTransparency = 1
AcceptButton.Name = "AcceptButton"
AcceptButton.Parent = Main
AcceptButton.BackgroundColor3 = Color3.fromRGB(10, 9, 31)
AcceptButton.BorderSizePixel = 0
AcceptButton.Position = UDim2.new(0.0591900311, 0, 0.630491614, 0)
AcceptButton.Size = UDim2.new(0, 100, 0, 31)
AcceptButton.Font = Enum.Font.Gotham
AcceptButton.Text = "Yes, Open."
AcceptButton.TextColor3 = Color3.fromRGB(255, 255, 255)
AcceptButton.TextSize = 17.000
AcceptButton.TextTransparency = 1
AcceptButton.BackgroundTransparency = 1
AcceptButton.MouseButton1Click:Connect(
function()
frame.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
dragging = true
mousePos = input.Position
framePos = parent.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement then
dragInput = input
end
end)
input.InputChanged:Connect(function(input)
if input == dragInput and dragging then
local delta = input.Position - mousePos
parent.Position = UDim2.new(framePos.X.Scale, framePos.X.Offset +
delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y)
end
end)
end
function Library:Window(options)
options.text = options.text or "NEVERLOSE"
local SG = Instance.new("ScreenGui")
local Body = Instance.new("Frame")
Dragify(Body, Body)
local bodyCorner = Instance.new("UICorner")
SG.Parent = game.CoreGui
SG.Name = "Ares"
Body.Name = "Body"
Body.Parent = SG
Body.AnchorPoint = Vector2.new(0.5, 0.5)
Body.BackgroundColor3 = Color3.fromRGB(9, 8, 13)
Body.BorderSizePixel = 0
Body.Position = UDim2.new(0.465730786, 0, 0.5, 0)
Body.Size = UDim2.new(0, 658, 0, 516)
bodyCorner.CornerRadius = UDim.new(0, 4)
bodyCorner.Name = "bodyCorner"
bodyCorner.Parent = Body
SideBar.Name = "SideBar"
SideBar.Parent = Body
SideBar.BackgroundColor3 = Color3.fromRGB(26, 36, 48)
SideBar.BorderSizePixel = 0
SideBar.Size = UDim2.new(0, 187, 0, 516)
sidebarCorner.CornerRadius = UDim.new(0, 4)
sidebarCorner.Name = "sidebarCorner"
sidebarCorner.Parent = SideBar
sbLine.Name = "sbLine"
sbLine.Parent = SideBar
sbLine.BackgroundColor3 = Color3.fromRGB(15, 23, 36)
sbLine.BorderSizePixel = 0
sbLine.Position = UDim2.new(0.99490571, 0, 0, 0)
sbLine.Size = UDim2.new(0, 3, 0, 516)
TopBar.Name = "TopBar"
TopBar.Parent = Body
TopBar.BackgroundColor3 = Color3.fromRGB(9, 8, 13)
TopBar.BackgroundTransparency = 1.000
TopBar.BorderColor3 = Color3.fromRGB(14, 21, 32)
TopBar.BorderSizePixel = 0
TopBar.Position = UDim2.new(0.25166446, 0, 0, 0)
TopBar.Size = UDim2.new(0, 562, 0, 49)
tbLine.Name = "tbLine"
tbLine.Parent = TopBar
tbLine.BackgroundColor3 = Color3.fromRGB(15, 23, 36)
tbLine.BorderSizePixel = 0
tbLine.Position = UDim2.new(0.0400355868, 0, 1, 0)
tbLine.Size = UDim2.new(0, 469, 0, 3)
Title.Name = "Title"
Title.Parent = SideBar
Title.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
Title.BackgroundTransparency = 1.000
Title.BorderSizePixel = 0
Title.Position = UDim2.new(0.0614973232, 0, 0.0213178284, 0)
Title.Size = UDim2.new(0, 162, 0, 26)
Title.Font = Enum.Font.ArialBold
Title.Text = options.text
Title.TextColor3 = Color3.fromRGB(234, 239, 245)
Title.TextSize = 28.000
Title.TextWrapped = true
--[[saveBtn.Name = "saveBtn"
saveBtn.Parent = TopBar
saveBtn.AnchorPoint = Vector2.new(0.5, 0.5)
saveBtn.BackgroundColor3 = Color3.fromRGB(9, 8, 13)
saveBtn.Position = UDim2.new(0.146918148, 0, 0.479591846, 0)
saveBtn.Size = UDim2.new(0, 88, 0, 20)
saveBtn.AutoButtonColor = false
saveBtn.Font = Enum.Font.GothamBold
saveBtn.Text = " Save"
saveBtn.TextColor3 = Color3.fromRGB(132, 146, 153)
saveBtn.TextSize = 14.000
saveLabel.Name = "saveLabel"
saveLabel.Parent = saveBtn
saveLabel.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
saveLabel.BackgroundTransparency = 1.000
saveLabel.BorderSizePixel = 0
saveLabel.Position = UDim2.new(0.0862553269, 0, 0.0500000007, 0)
saveLabel.Size = UDim2.new(0, 18, 0, 18)
saveLabel.Image = "rbxassetid://7999984136"
saveLabel.ImageColor3 = Color3.fromRGB(132, 146, 153)
]]
allPages.Name = "allPages"
allPages.Parent = Body
allPages.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
allPages.BackgroundTransparency = 1.000
allPages.BorderSizePixel = 0
allPages.Position = UDim2.new(0.29508087, 0, 0.100775197, 0)
allPages.Size = UDim2.new(0, 463, 0, 464)
tabContainer.Name = "tabContainer"
tabContainer.Parent = SideBar
tabContainer.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
tabContainer.BackgroundTransparency = 1.000
tabContainer.BorderSizePixel = 0
tabContainer.Position = UDim2.new(0, 0, 0.100775197, 0)
tabContainer.Size = UDim2.new(0, 187, 0, 464)
local tabsections = {}
function tabsections:TabSection(options)
options.text = options.text or "Tab Section"
tabLayout.Name = "tabLayout"
tabLayout.Parent = tabContainer
tabSection.Name = "tabSection"
tabSection.Parent = tabContainer
tabSection.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
tabSection.BackgroundTransparency = 1.000
tabSection.BorderSizePixel = 0
tabSection.Size = UDim2.new(0, 189, 0, 22)
tabSectionLabel.Name = "tabSectionLabel"
tabSectionLabel.Parent = tabSection
tabSectionLabel.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
tabSectionLabel.BackgroundTransparency = 1.000
tabSectionLabel.BorderSizePixel = 0
tabSectionLabel.Size = UDim2.new(0, 190, 0, 22)
tabSectionLabel.Font = Enum.Font.Gotham
tabSectionLabel.Text = " ".. options.text
tabSectionLabel.TextColor3 = Color3.fromRGB(79, 107, 126)
tabSectionLabel.TextSize = 17.000
tabSectionLabel.TextXAlignment = Enum.TextXAlignment.Left
tabSectionLayout.Name = "tabSectionLayout"
tabSectionLayout.Parent = tabSection
tabSectionLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
tabSectionLayout.SortOrder = Enum.SortOrder.LayoutOrder
tabSectionLayout.Padding = UDim.new(0, 7)
local tabs = {}
function tabs:Tab(options)
options.text = options.text or "New Tab"
options.icon = options.icon or "rbxassetid://7999345313"
tabButton.Name = "tabButton"
tabButton.Parent = tabSection
tabButton.BackgroundColor3 = Color3.fromRGB(13, 57, 84)
tabButton.BorderSizePixel = 0
tabButton.Position = UDim2.new(0.0714285746, 0, 0.402777791, 0)
tabButton.Size = UDim2.new(0, 165, 0, 30)
tabButton.AutoButtonColor = false
tabButton.Font = Enum.Font.GothamSemibold
tabButton.Text = " " .. options.text
tabButton.TextColor3 = Color3.fromRGB(234, 239, 245)
tabButton.TextSize = 14.000
tabButton.BackgroundTransparency = 1
tabButton.TextXAlignment = Enum.TextXAlignment.Left
tabButton.MouseButton1Click:Connect(function()
for i,v in next, allPages:GetChildren() do
v.Visible = false
end
newPage.Visible = true
TweenService:Create(tabButton, TweenInfo.new(0.06,
Enum.EasingStyle.Quart, Enum.EasingDirection.In), {
BackgroundTransparency = 0
}):Play()
end)
tabButtonCorner.CornerRadius = UDim.new(0, 4)
tabButtonCorner.Name = "tabButtonCorner"
tabButtonCorner.Parent = tabButton
tabIcon.Name = "tabIcon"
tabIcon.Parent = tabButton
tabIcon.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
tabIcon.BackgroundTransparency = 1.000
tabIcon.BorderSizePixel = 0
tabIcon.Position = UDim2.new(0.0408859849, 0, 0.133333355, 0)
tabIcon.Size = UDim2.new(0, 21, 0, 21)
tabIcon.Image = options.icon
tabIcon.ImageColor3 = Color3.fromRGB(43, 154, 198)
newPage.Name = "newPage"
newPage.Parent = allPages
newPage.Visible = false
newPage.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
newPage.BackgroundTransparency = 1.000
newPage.BorderSizePixel = 0
newPage.ClipsDescendants = false
newPage.Position = UDim2.new(0.021598272, 0, 0.0237068962, 0)
newPage.Size = UDim2.new(0, 442, 0, 440)
newPage.ScrollBarThickness = 4
newPage.CanvasSize = UDim2.new(0,0,0,0)
pageLayout.Name = "pageLayout"
pageLayout.Parent = newPage
pageLayout.SortOrder = Enum.SortOrder.LayoutOrder
pageLayout.CellPadding = UDim2.new(0, 12, 0, 12)
pageLayout.CellSize = UDim2.new(0, 215, 0, -10)
pageLayout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function()
newPage.CanvasSize =
UDim2.new(0,0,0,pageLayout.AbsoluteContentSize.Y)
end)
ResizeTS(50)
local sections = {}
function sections:Section(options)
options.text = options.text or "Section"
sectionFrame.Name = "sectionFrame"
sectionFrame.Parent = newPage
sectionFrame.BackgroundColor3 = Color3.fromRGB(0, 15, 30)
sectionFrame.BorderSizePixel = 0
sectionFrame.Size = UDim2.new(0, 215, 0, 134)
sectionLabel.Name = "sectionLabel"
sectionLabel.Parent = sectionFrame
sectionLabel.BackgroundColor3 = Color3.fromRGB(234, 239, 245)
sectionLabel.BackgroundTransparency = 1.000
sectionLabel.BorderSizePixel = 0
sectionLabel.Position = UDim2.new(0.0121902823, 0, 0, 0)
sectionLabel.Size = UDim2.new(0, 213, 0, 25)
sectionLabel.Font = Enum.Font.GothamSemibold
sectionLabel.Text = " " .. options.text
sectionLabel.TextColor3 = Color3.fromRGB(234, 239, 245)
sectionLabel.TextSize = 14.000
sectionLabel.TextXAlignment = Enum.TextXAlignment.Left
sectionFrameCorner.CornerRadius = UDim.new(0, 4)
sectionFrameCorner.Name = "sectionFrameCorner"
sectionFrameCorner.Parent = sectionFrame
sectionLayout.Name = "sectionLayout"
sectionLayout.Parent = sectionFrame
sectionLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
sectionLayout.SortOrder = Enum.SortOrder.LayoutOrder
sectionLayout.Padding = UDim.new(0, 2)
sLine.Name = "sLine"
sLine.Parent = sectionFrame
sLine.BackgroundColor3 = Color3.fromRGB(13, 28, 44)
sLine.BorderSizePixel = 0
sLine.Position = UDim2.new(0.0255813953, 0, 0.41538462, 0)
sLine.Size = UDim2.new(0, 202, 0, 3)
sLine.Font = Enum.Font.SourceSans
sLine.Text = ""
sLine.TextColor3 = Color3.fromRGB(0, 0, 0)
sLine.TextSize = 0
sectionSizeConstraint.Name = "sectionSizeConstraint"
sectionSizeConstraint.Parent = sectionFrame
sectionSizeConstraint.MinSize = Vector2.new(215, 35)
local elements = {}
function elements:Button(options)
if not options.text or not options.callback then
Notify("Button", "Missing arguments!") return end
TextButton.Parent = sectionFrame
TextButton.BackgroundColor3 = Color3.fromRGB(13, 57, 84)
TextButton.BorderSizePixel = 0
TextButton.Position = UDim2.new(0.0348837227, 0, 0.355555564,
0)
TextButton.Size = UDim2.new(0, 200, 0, 22)
TextButton.AutoButtonColor = false
TextButton.Text = options.text
TextButton.Font = Enum.Font.Gotham
TextButton.TextColor3 = Color3.fromRGB(157, 171, 182)
TextButton.TextSize = 14.000
TextButton.BackgroundTransparency = 1
buttoneffect({frame = TextButton, entered = TextButton})
clickEffect({button = TextButton, amount = 5})
TextButton.MouseButton1Click:Connect(function()
options.callback()
end)
Resize(25)
end
function elements:Toggle(options)
if not options.text or not options.callback then
Notify("Toggle", "Missing arguments!") return end
if options.state then
toggleButton.Position = UDim2.new(0.74, 0, 0.5, 0)
toggleLabel.TextColor3 = Color3.fromRGB(234, 239, 246)
toggleButton.BackgroundColor3 = Color3.fromRGB(2, 162, 243)
toggleFrame.BackgroundColor3 = Color3.fromRGB(2, 23, 49)
end
toggleLabel.Name = "toggleLabel"
toggleLabel.Parent = sectionFrame
toggleLabel.BackgroundColor3 = Color3.fromRGB(157, 171, 182)
toggleLabel.BackgroundTransparency = 1.000
toggleLabel.Position = UDim2.new(0.0348837227, 0, 0.965517223,
0)
toggleLabel.Size = UDim2.new(0, 200, 0, 22)
toggleLabel.Font = Enum.Font.Gotham
toggleLabel.Text = " " .. options.text
toggleLabel.TextColor3 = Color3.fromRGB(157, 171, 182)
toggleLabel.TextSize = 14.000
toggleLabel.TextXAlignment = Enum.TextXAlignment.Left
buttoneffect({frame = toggleLabel, entered = toggleLabel})
toggleFrame.Name = "toggleFrame"
toggleFrame.Parent = toggleLabel
toggleFrame.BackgroundColor3 = Color3.fromRGB(4, 4, 11)
toggleFrame.BorderSizePixel = 0
toggleFrame.AnchorPoint = Vector2.new(0.5, 0.5)
toggleFrame.Position = UDim2.new(0.9, 0, 0.5, 0)
toggleFrame.Size = UDim2.new(0, 38, 0, 18)
toggleFrame.AutoButtonColor = false
toggleFrame.Font = Enum.Font.SourceSans
toggleFrame.Text = ""
toggleFrame.TextColor3 = Color3.fromRGB(0, 0, 0)
toggleFrame.TextSize = 14.000
toggleFrame.MouseButton1Click:Connect(function()
PerformToggle()
end)
toggleButton.Name = "toggleButton"
toggleButton.Parent = toggleFrame
toggleButton.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
toggleButton.BorderSizePixel = 0
toggleButton.AnchorPoint = Vector2.new(0.5, 0.5)
toggleButton.Position = UDim2.new(0.25, 0, 0.5, 0)
toggleButton.Size = UDim2.new(0, 16, 0, 16)
toggleButton.AutoButtonColor = false
toggleButton.Font = Enum.Font.SourceSans
toggleButton.Text = ""
toggleButton.TextColor3 = Color3.fromRGB(0, 0, 0)
toggleButton.TextSize = 14.000
toggleButton.MouseButton1Click:Connect(function()
PerformToggle()
end)
Resize(25)
end
function elements:Slider(options)
if not options.text or not options.min or not options.max or
not options.callback then Notify("Slider", "Missing arguments!") return end
local Value
local Held = false
local percentage = 0
local step = 0.01
UIS.InputEnded:Connect(function(Mouse)
Held = false
end)
Slider.Name = "Slider"
Slider.Parent = sectionFrame
Slider.BackgroundColor3 = Color3.fromRGB(157, 171, 182)
Slider.BackgroundTransparency = 1.000
Slider.Position = UDim2.new(0.0395348854, 0, 0.947335422, 0)
Slider.Size = UDim2.new(0, 200, 0, 22)
sliderLabel.Name = "sliderLabel"
sliderLabel.Parent = Slider
sliderLabel.AnchorPoint = Vector2.new(0.5, 0.5)
sliderLabel.BackgroundColor3 = Color3.fromRGB(157, 171, 182)
sliderLabel.BackgroundTransparency = 1.000
sliderLabel.Position = UDim2.new(0.2, 0, 0.5, 0)
sliderLabel.Size = UDim2.new(0, 77, 0, 22)
sliderLabel.Font = Enum.Font.Gotham
sliderLabel.Text = " " .. options.text
sliderLabel.TextColor3 = Color3.fromRGB(157, 171, 182)
sliderLabel.TextSize = 14.000
sliderLabel.TextXAlignment = Enum.TextXAlignment.Left
sliderLabel:GetPropertyChangedSignal("TextBounds"):Connect(function()
if sliderLabel.TextBounds.X > 75 then
sliderLabel.TextScaled = true
else
sliderLabel.TextScaled = false
end
end)
sliderFrame.Name = "sliderFrame"
sliderFrame.Parent = sliderLabel
sliderFrame.BackgroundColor3 = Color3.fromRGB(29, 87, 118)
sliderFrame.BorderSizePixel = 0
sliderFrame.AnchorPoint = Vector2.new(0.5, 0.5)
sliderFrame.Position = UDim2.new(1.6, 0, 0.5, 0)
sliderFrame.Size = UDim2.new(0, 72, 0, 2)
sliderFrame.Text = ""
sliderFrame.AutoButtonColor = false
sliderFrame.MouseButton1Down:Connect(function()
Held = true
end)
sliderBall.Name = "sliderBall"
sliderBall.Parent = sliderFrame
sliderBall.AnchorPoint = Vector2.new(0.5, 0.5)
sliderBall.BackgroundColor3 = Color3.fromRGB(67, 136, 231)
sliderBall.BorderSizePixel = 0
sliderBall.Position = UDim2.new(0, 0, 0.5, 0)
sliderBall.Size = UDim2.new(0, 14, 0, 14)
sliderBall.AutoButtonColor = false
sliderBall.Font = Enum.Font.SourceSans
sliderBall.Text = ""
sliderBall.TextColor3 = Color3.fromRGB(0, 0, 0)
sliderBall.TextSize = 14.000
sliderBall.MouseButton1Down:Connect(function()
Held = true
end)
RS.RenderStepped:Connect(function()
if Held then
local BtnPos = sliderBall.Position
local MousePos = UIS:GetMouseLocation().X
local FrameSize = sliderFrame.AbsoluteSize.X
local FramePos = sliderFrame.AbsolutePosition.X
local pos = snap((MousePos-FramePos)/FrameSize,step)
percentage = math.clamp(pos,0,0.9)
Value = ((((tonumber(options.max) -
tonumber(options.min)) / 0.9) * percentage)) + tonumber(options.min)
Value = round(Value, options.float)
Value = math.clamp(Value, options.min, options.max)
sliderTextBox.Text = Value
options.callback(Value)
sliderBall.Position =
UDim2.new(percentage,0,BtnPos.Y.Scale, BtnPos.Y.Offset)
end
end)
sliderTextBox.Name = "sliderTextBox"
sliderTextBox.Parent = sliderLabel
sliderTextBox.BackgroundColor3 = Color3.fromRGB(1, 7, 17)
sliderTextBox.AnchorPoint = Vector2.new(0.5, 0.5)
sliderTextBox.Position = UDim2.new(2.4, 0, 0.5, 0)
sliderTextBox.Size = UDim2.new(0, 31, 0, 15)
sliderTextBox.Font = Enum.Font.Gotham
sliderTextBox.Text = options.min
sliderTextBox.TextColor3 = Color3.fromRGB(234, 239, 245)
sliderTextBox.TextSize = 11.000
sliderTextBox.TextWrapped = true
sliderTextBox.Focused:Connect(function()
TweenService:Create(sliderLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quart, Enum.EasingDirection.In), {TextColor3 = Color3.fromRGB(234,
239, 246)}):Play()
end)
sliderTextBox.FocusLost:Connect(function(Enter)
TweenService:Create(sliderLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quart, Enum.EasingDirection.In), {TextColor3 = Color3.fromRGB(157,
171, 182)}):Play()
if Enter then
if sliderTextBox.Text ~= nil and sliderTextBox.Text ~=
"" then
if tonumber(sliderTextBox.Text) > options.max then
sliderTextBox.Text = tostring(options.max)
options.callback(options.max)
elseif tonumber(sliderTextBox.Text) < options.min
then
sliderTextBox.Text = tostring(options.min)
options.callback(options.min)
elseif not tonumber(sliderTextBox.Text) <
options.min and not tonumber(sliderTextBox.Text) > options.max then
options.callback(sliderTextBox.Text)
end
end
end
end)
Resize(25)
end
function elements:Dropdown(options)
if not options.text or not options.default or not options.list
or not options.callback then Notify("Dropdown", "Missing arguments!") return end
local DropYSize = 0
local Dropped = false
Dropdown.Name = "Dropdown"
Dropdown.Parent = sectionFrame
Dropdown.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Dropdown.BackgroundTransparency = 1.000
Dropdown.BorderSizePixel = 0
Dropdown.Position = UDim2.new(0.0697674453, 0, 0.237037033, 0)
Dropdown.Size = UDim2.new(0, 200, 0, 22)
Dropdown.ZIndex = 2
dropdownLabel.Name = "dropdownLabel"
dropdownLabel.Parent = Dropdown
dropdownLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
dropdownLabel.BackgroundTransparency = 1.000
dropdownLabel.BorderSizePixel = 0
dropdownLabel.Size = UDim2.new(0, 105, 0, 22)
dropdownLabel.Font = Enum.Font.Gotham
dropdownLabel.Text = " " .. options.text
dropdownLabel.TextColor3 = Color3.fromRGB(157, 171, 182)
dropdownLabel.TextSize = 14.000
dropdownLabel.TextXAlignment = Enum.TextXAlignment.Left
dropdownLabel.TextWrapped = true
dropdownText.Name = "dropdownText"
dropdownText.Parent = dropdownLabel
dropdownText.BackgroundColor3 = Color3.fromRGB(2, 5, 12)
dropdownText.Position = UDim2.new(1.08571434, 0, 0.0909090936,
0)
dropdownText.Size = UDim2.new(0, 87, 0, 18)
dropdownText.Font = Enum.Font.Gotham
dropdownText.Text = " " .. options.default
dropdownText.TextColor3 = Color3.fromRGB(234, 239, 245)
dropdownText.TextSize = 12.000
dropdownText.TextXAlignment = Enum.TextXAlignment.Left
dropdownText.TextWrapped = true
dropdownArrow.Name = "dropdownArrow"
dropdownArrow.Parent = dropdownText
dropdownArrow.BackgroundColor3 = Color3.fromRGB(2, 5, 12)
dropdownArrow.BorderSizePixel = 0
dropdownArrow.Position = UDim2.new(0.87356323, 0, 0.138888866,
0)
dropdownArrow.Size = UDim2.new(0, 11, 0, 13)
dropdownArrow.AutoButtonColor = false
dropdownArrow.Image = "rbxassetid://8008296380"
dropdownArrow.ImageColor3 = Color3.fromRGB(157, 171, 182)
dropdownArrow.MouseButton1Click:Connect(function()
Dropped = not Dropped
if Dropped then
if dropdownLabel.TextColor3 ~= Color3.fromRGB(234, 239,
245) then
TweenService:Create(dropdownLabel,
TweenInfo.new(0.06, Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(234, 239, 246)
}):Play()
end
TweenService:Create(dropdownList, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
Size = UDim2.new(0, 87, 0, DropYSize)
}):Play()
TweenService:Create(dropdownList, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
BorderSizePixel = 1
}):Play()
elseif not Dropped then
if dropdownLabel.TextColor3 ~= Color3.fromRGB(157, 171,
182) then
TweenService:Create(dropdownLabel,
TweenInfo.new(0.12, Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(157, 171, 182)
}):Play()
end
TweenService:Create(dropdownList, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
Size = UDim2.new(0, 87, 0, 0)
}):Play()
TweenService:Create(dropdownList, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
BorderSizePixel = 0
}):Play()
end
end)
dropdownList.Name = "dropdownList"
dropdownList.Parent = dropdownText
dropdownList.BackgroundColor3 = Color3.fromRGB(2, 5, 12)
dropdownList.Position = UDim2.new(0, 0, 1, 0)
dropdownList.Size = UDim2.new(0, 87, 0, 0)
dropdownList.ClipsDescendants = true
dropdownList.BorderSizePixel = 0
dropdownList.ZIndex = 10
dropListLayout.Name = "dropListLayout"
dropListLayout.Parent = dropdownList
dropListLayout.SortOrder = Enum.SortOrder.LayoutOrder
Resize(25)
dropdownBtn.Name = "dropdownBtn"
dropdownBtn.Parent = dropdownList
dropdownBtn.BackgroundColor3 = Color3.fromRGB(234, 239,
245)
dropdownBtn.BackgroundTransparency = 1.000
dropdownBtn.BorderSizePixel = 0
dropdownBtn.Position = UDim2.new(-0.0110929646, 0,
0.0305557251, 0)
dropdownBtn.Size = UDim2.new(0, 87, 0, 18)
dropdownBtn.AutoButtonColor = false
dropdownBtn.Font = Enum.Font.Gotham
dropdownBtn.TextColor3 = Color3.fromRGB(234, 239, 245)
dropdownBtn.TextSize = 12.000
dropdownBtn.Text = v
dropdownBtn.ZIndex = 15
clickEffect({button = dropdownBtn, amount = 5})
Count = Count + 1
dropdownList.ZIndex -= Count
DropYSize = DropYSize + 18
dropdownBtn.MouseButton1Click:Connect(function()
dropdownText.Text = " " .. v
options.callback(v)
end)
end
end
function elements:Textbox(options)
if not options.text or not options.value or not
options.callback then Notify("Textbox", "Missing arguments!") return end
Textbox.Name = "Textbox"
Textbox.Parent = sectionFrame
Textbox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Textbox.BackgroundTransparency = 1.000
Textbox.BorderSizePixel = 0
Textbox.Position = UDim2.new(0.0348837227, 0, 0.945454538, 0)
Textbox.Size = UDim2.new(0, 200, 0, 22)
buttoneffect({frame = textBoxLabel, entered = Textbox})
textBoxLabel.Name = "textBoxLabel"
textBoxLabel.Parent = Textbox
textBoxLabel.AnchorPoint = Vector2.new(0.5, 0.5)
textBoxLabel.BackgroundColor3 = Color3.fromRGB(157, 171, 182)
textBoxLabel.BackgroundTransparency = 1.000
textBoxLabel.Position = UDim2.new(0.237000003, 0, 0.5, 0)
textBoxLabel.Size = UDim2.new(0, 99, 0, 22)
textBoxLabel.Font = Enum.Font.Gotham
textBoxLabel.Text = " " .. options.text
textBoxLabel.TextColor3 = Color3.fromRGB(157, 171, 182)
textBoxLabel.TextSize = 14.000
textBoxLabel.TextXAlignment = Enum.TextXAlignment.Left
textBox.Name = "textBox"
textBox.Parent = Textbox
textBox.AnchorPoint = Vector2.new(0.5, 0.5)
textBox.BackgroundColor3 = Color3.fromRGB(1, 7, 17)
textBox.Position = UDim2.new(0.850000024, 0, 0.5, 0)
textBox.Size = UDim2.new(0, 53, 0, 15)
textBox.Font = Enum.Font.Gotham
textBox.Text = options.value
textBox.TextColor3 = Color3.fromRGB(234, 239, 245)
textBox.TextSize = 11.000
textBox.TextWrapped = true
Resize(25)
textBox.Focused:Connect(function()
TweenService:Create(textBoxLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {TextColor3 = Color3.fromRGB(234,
239, 246)}):Play()
end)
textBox.FocusLost:Connect(function(Enter)
TweenService:Create(textBoxLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {TextColor3 = Color3.fromRGB(157,
171, 182)}):Play()
if Enter then
if textBox.Text ~= nil and textBox.Text ~= "" then
options.callback(textBox.Text)
end
end
end)
end
function elements:Colorpicker(options)
if not options.text or not options.color or not
options.callback then Notify("Colorpicker", "Missing arguments!") return end
Colorpicker.Name = "Colorpicker"
Colorpicker.Parent = sectionFrame
Colorpicker.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Colorpicker.BackgroundTransparency = 1.000
Colorpicker.BorderSizePixel = 0
Colorpicker.Position = UDim2.new(0.0348837227, 0, 0.945454538,
0)
Colorpicker.Size = UDim2.new(0, 200, 0, 22)
Colorpicker.ZIndex = 2
colorpickerLabel.Name = "colorpickerLabel"
colorpickerLabel.Parent = Colorpicker
colorpickerLabel.AnchorPoint = Vector2.new(0.5, 0.5)
colorpickerLabel.BackgroundColor3 = Color3.fromRGB(157, 171,
182)
colorpickerLabel.BackgroundTransparency = 1.000
colorpickerLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
colorpickerLabel.Size = UDim2.new(0, 200, 0, 22)
colorpickerLabel.Font = Enum.Font.Gotham
colorpickerLabel.Text = " " .. options.text
colorpickerLabel.TextColor3 = Color3.fromRGB(157, 171, 182)
colorpickerLabel.TextSize = 14.000
colorpickerLabel.TextXAlignment = Enum.TextXAlignment.Left
colorpickerButton.Name = "colorpickerButton"
colorpickerButton.Parent = colorpickerLabel
colorpickerButton.AnchorPoint = Vector2.new(0.5, 0.5)
colorpickerButton.BackgroundColor3 = Color3.fromRGB(255, 255,
255)
colorpickerButton.BackgroundTransparency = 1.000
colorpickerButton.BorderSizePixel = 0
colorpickerButton.Position = UDim2.new(0.920, 0, 0.57, 0)
colorpickerButton.Size = UDim2.new(0, 15, 0, 15)
colorpickerButton.Image = "rbxassetid://8023491332"
colorpickerButton.MouseButton1Click:Connect(function()
colorpickerFrame.Visible = not colorpickerFrame.Visible
vis = not vis
TweenService:Create(colorpickerLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quart, Enum.EasingDirection.InOut), {
TextColor3 = vis and Color3.fromRGB(234, 239, 246) or
Color3.fromRGB(157, 171, 182)
}):Play()
end)
colorpickerFrame.Name = "colorpickerFrame"
colorpickerFrame.Parent = Colorpicker
colorpickerFrame.Visible = false
colorpickerFrame.BackgroundColor3 = Color3.fromRGB(0, 10, 21)
colorpickerFrame.Position = UDim2.new(1.15, 0, 0.5, 0)
colorpickerFrame.Size = UDim2.new(0, 251, 0, 221)
colorpickerFrame.ZIndex = 15
Dragify(colorpickerFrame, Colorpicker)
RGB.Name = "RGB"
RGB.Parent = colorpickerFrame
RGB.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RGB.BackgroundTransparency = 1.000
RGB.BorderSizePixel = 0
RGB.Position = UDim2.new(0.0670000017, 0, 0.0680000037, 0)
RGB.Size = UDim2.new(0, 179, 0, 161)
RGB.AutoButtonColor = false
RGB.Image = "rbxassetid://6523286724"
RGB.ZIndex = 16
RGBCircle.Name = "RGBCircle"
RGBCircle.Parent = RGB
RGBCircle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
RGBCircle.BackgroundTransparency = 1.000
RGBCircle.BorderColor3 = Color3.fromRGB(27, 42, 53)
RGBCircle.BorderSizePixel = 0
RGBCircle.Size = UDim2.new(0, 14, 0, 14)
RGBCircle.Image = "rbxassetid://3926309567"
RGBCircle.ImageRectOffset = Vector2.new(628, 420)
RGBCircle.ImageRectSize = Vector2.new(48, 48)
RGBCircle.ZIndex = 16
Darkness.Name = "Darkness"
Darkness.Parent = colorpickerFrame
Darkness.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Darkness.BorderSizePixel = 0
Darkness.Position = UDim2.new(0.831940293, 0, 0.0680000708, 0)
Darkness.Size = UDim2.new(0, 33, 0, 161)
Darkness.AutoButtonColor = false
Darkness.Image = "rbxassetid://156579757"
Darkness.ZIndex = 16
DarknessCircle.Name = "DarknessCircle"
DarknessCircle.Parent = Darkness
DarknessCircle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
DarknessCircle.BorderSizePixel = 0
DarknessCircle.Position = UDim2.new(0, 0, 0, 0)
DarknessCircle.Size = UDim2.new(0, 33, 0, 5)
DarknessCircle.ZIndex = 16
colorHex.Name = "colorHex"
colorHex.Parent = colorpickerFrame
colorHex.BackgroundColor3 = Color3.fromRGB(9, 8, 13)
colorHex.Position = UDim2.new(0.0717131495, 0, 0.850678742, 0)
colorHex.Size = UDim2.new(0, 94, 0, 24)
colorHex.Font = Enum.Font.GothamSemibold
colorHex.Text = "#FFFFFF"
colorHex.TextColor3 = Color3.fromRGB(234, 239, 245)
colorHex.TextSize = 14.000
colorHex.ZIndex = 16
Copy.Parent = colorpickerFrame
Copy.BackgroundColor3 = Color3.fromRGB(9, 8, 13)
Copy.Position = UDim2.new(0.72111553, 0, 0.850678742, 0)
Copy.Size = UDim2.new(0, 60, 0, 24)
Copy.AutoButtonColor = false
Copy.Font = Enum.Font.GothamSemibold
Copy.Text = "Copy"
Copy.TextColor3 = Color3.fromRGB(234, 239, 245)
Copy.TextSize = 14.000
Copy.ZIndex = 16
Resize(25)
Copy.MouseButton1Click:Connect(function()
if setclipboard then
setclipboard(tostring(colorHex.Text))
Notify("Cryptweb:", tostring(colorHex.Text))
Notify("Cryptweb:", "Done!")
else
print(tostring(colorHex.Text))
Notify("Cryptweb:", tostring(colorHex.Text))
Notify("Cryptweb:", "Your exploit does not support the
function 'setclipboard', so we've printed it out.")
end
end)
local ceil,clamp,atan2,pi =
math.ceil,math.clamp,math.atan2,math.pi
local tostr,sub = tostring,string.sub
local fromHSV = Color3.fromHSV
local v2,udim2 = Vector2.new,UDim2.new
update();
end
local function UpdateRing(iX,iY)
local ml = mouseLocation()
local x,y = ml.X - RGB.AbsolutePosition.X,ml.Y -
RGB.AbsolutePosition.Y
local maxX,maxY = RGB.AbsoluteSize.X,RGB.AbsoluteSize.Y
if x<0 then
x=0
end
if x>maxX then
x=maxX
end
if y<0 then
y=0
end
if y>maxY then
y=maxY
end
x = x/maxX
y = y/maxY
local cx = RGBCircle.AbsoluteSize.X/2
local cy = RGBCircle.AbsoluteSize.Y/2
RGBCircle.Position = udim2(x,-cx,y,-cy)
color = {1-x,1-y,color[3]}
local realcolor =
Color3.fromHSV(color[1],color[2],color[3])
Darkness.BackgroundColor3 = realcolor
DarknessCircle.BackgroundColor3 = realcolor
options.callback(realcolor)
update();
end
RGB.MouseButton1Down:Connect(function()
WheelDown = true
UpdateRing(getmouse.X,getmouse.Y)
end)
Darkness.MouseButton1Down:Connect(function()
SlideDown = true
UpdateSlide(getmouse.X,getmouse.Y)
end)
UserInputService.InputEnded:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1
then
WheelDown = false
SlideDown = false
end
end)
RGB.MouseMoved:Connect(function()
if WheelDown then
UpdateRing(getmouse.X,getmouse.Y)
end
end)
Darkness.MouseMoved:Connect(function()
if SlideDown then
UpdateSlide(getmouse.X,getmouse.Y)
end
end)
function elements:Keybind(options)
if not options.text or not options.default or not
options.callback then Notify("Keybind", "Missing arguments") return end
Resize(25)
local blacklisted = {
Return = true,
Space = true,
Tab = true,
W = true,
A = true,
S = true,
D = true,
I = true,
O = true,
Unknown = true
}
local short = {
RightControl = "RCtrl",
LeftControl = "LCtrl",
LeftShift = "LShift",
RightShift = "RShift",
MouseButton1 = "M1",
MouseButton2 = "M2",
LeftAlt = "LAlt",
RightAlt = "RAlt"
}
Keybind.Name = "Keybind"
Keybind.Parent = sectionFrame
Keybind.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Keybind.BackgroundTransparency = 1.000
Keybind.BorderSizePixel = 0
Keybind.Position = UDim2.new(0.0348837227, 0, 0.945454538, 0)
Keybind.Size = UDim2.new(0, 200, 0, 22)
Keybind.ZIndex = 2
buttoneffect({frame = keybindButton, entered = Keybind})
keybindButton.Name = "keybindButton"
keybindButton.Parent = Keybind
keybindButton.AnchorPoint = Vector2.new(0.5, 0.5)
keybindButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
keybindButton.BackgroundTransparency = 1.000
keybindButton.BorderSizePixel = 0
keybindButton.Position = UDim2.new(0.5, 0, 0.5, 0)
keybindButton.Size = UDim2.new(0, 200, 0, 22)
keybindButton.AutoButtonColor = false
keybindButton.Font = Enum.Font.Gotham
keybindButton.Text = " " .. options.text
keybindButton.TextColor3 = Color3.fromRGB(157, 171, 182)
keybindButton.TextSize = 14.000
keybindButton.TextXAlignment = Enum.TextXAlignment.Left
keybindButton.MouseButton1Click:Connect(function()
keybindLabel.Text = "... "
TweenService:Create(keybindButton, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(234, 239, 246)
}):Play()
TweenService:Create(keybindLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(234, 239, 246)
}):Play()
local inputbegan =
game:GetService("UserInputService").InputBegan:wait()
if not blacklisted[inputbegan.KeyCode.Name] then
TweenService:Create(keybindLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(157, 171, 182)
}):Play()
TweenService:Create(keybindButton, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(157, 171, 182)
}):Play()
keybindLabel.Text = short[inputbegan.KeyCode.Name] or
inputbegan.KeyCode.Name
oldKey = inputbegan.KeyCode.Name
else
TweenService:Create(keybindButton, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(157, 171, 182)
}):Play()
TweenService:Create(keybindLabel, TweenInfo.new(0.06,
Enum.EasingStyle.Quad, Enum.EasingDirection.In), {
TextColor3 = Color3.fromRGB(157, 171, 182)
}):Play()
keybindLabel.Text = short[oldKey] or oldKey
end
end)
game:GetService("UserInputService").InputBegan:connect(function(key, focused)
if not focused then
if key.KeyCode.Name == oldKey then
options.callback(oldKey)
end
end
end)
keybindLabel.Name = "keybindLabel"
keybindLabel.Parent = keybindButton
keybindLabel.AnchorPoint = Vector2.new(0.5, 0.5)
keybindLabel.BackgroundColor3 = Color3.fromRGB(157, 171, 182)
keybindLabel.BackgroundTransparency = 1.000
keybindLabel.Position = UDim2.new(0.910000026, 0, 0.5, 0)
keybindLabel.Size = UDim2.new(0, 36, 0, 22)
keybindLabel.Font = Enum.Font.Gotham
keybindLabel.Text = oldKey .. " "
keybindLabel.TextColor3 = Color3.fromRGB(157, 171, 182)
keybindLabel.TextSize = 14.000
keybindLabel.TextXAlignment = Enum.TextXAlignment.Right
end
return elements
end
return sections
end
return tabs
end
return tabsections
end
--[[
local Window = Library:Window({text = "Neverlose"})
getgenv().Target = true
-- Configuration
getgenv().Key = Enum.KeyCode.C
getgenv().Prediction = 0.125
getgenv().ChatMode = false
getgenv().notification = true
getgenv().part = "HumanoidRootPart"
getgenv().showdot = true
getgenv().AutoPrediction = false
getgenv().Multiplier = 1
getgenv().SpinBotSpeed = 0
getgenv().FakeLagSpeed = 0.000005
--//Esp Section
local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/xhulo/esp/
main/jhad"))()
userInput.InputBegan:connect(function(Key)
if Key.KeyCode == Enum.KeyCode.Z then
Enabled = not Enabled
if Enabled == true then
repeat
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame +
game.Players.LocalPlayer.Character.Humanoid.MoveDirection * getgenv().Multiplier
runService.Stepped:wait()
until Enabled == false
end
end
end)
end})
for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v:IsA("Script") and v.Name ~= "Health" and v.Name ~= "Sound" and
v:FindFirstChild("LocalScript") then
v:Destroy()
end
end
game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
repeat
wait()
until game.Players.LocalPlayer.Character
char.ChildAdded:Connect(function(child)
if child:IsA("Script") then
wait(0.1)
if child:FindFirstChild("LocalScript") then
child.LocalScript:FireServer()
end
end
end)
end)
end})
--variables
local Tracer = Instance.new("Part", game.Workspace)
Tracer.Name = "gay"
Tracer.Anchored = true
Tracer.CanCollide = false
Tracer.Transparency = 0.8
Tracer.Parent = game.Workspace
Tracer.Shape = _G.Types.Block
Tracer.Size = Vector3.new(4,8,6)
Tracer.Color = Color3.fromRGB(55, 107, 140)
--
local plr = game.Players.LocalPlayer
local mouse = plr:GetMouse()
local Runserv = game:GetService("RunService")
circle = Drawing.new("Circle")
circle.Color = Color3.fromRGB(255,255,255)
circle.Thickness = 0
circle.NumSides = 732
circle.Radius = 120
circle.Thickness = 0
circle.Transparency = 0.7
circle.Visible = false
circle.Filled = false
Runserv.RenderStepped:Connect(function()
circle.Position = Vector2.new(mouse.X,mouse.Y+35)
end)
})
return
end
getgenv().valiansh = true
UserInputService.InputBegan:Connect(function(keygo,ok)
if (not ok) then
if (keygo.KeyCode == getgenv().Key) then
if getgenv().Target == true then
Locking = not Locking
if Locking then
Plr = getClosestPlayerToCursor()
if getgenv().notification then
game.StarterGui:SetCore("SendNotification", {
Title = "Ares";
Text = "Target: "..tostring(Plr.Character.Humanoid.DisplayName);
Icon = "http://www.roblox.com/asset/?id=9210032337";
})
end
elseif not Locking then
if getgenv().notification then
game.StarterGui:SetCore("SendNotification", {
Title = "Ares",
Text = "Unlocked",
Icon = "http://www.roblox.com/asset/?id=9210032337";
Duration = 5
})
elseif getgenv().Target == false then
game.StarterGui:SetCore("SendNotification", {
Title = "Ares",
Text = "Target isn't enabled",
Icon = "http://www.roblox.com/asset/?id=9210032337";
Duration = 5
})
end
end end
end
end
end)
function getClosestPlayerToCursor()
local closestPlayer
local shortestDistance = circle.Radius
for i, v in pairs(game.Players:GetPlayers()) do
if v ~= game.Players.LocalPlayer and v.Character and
v.Character:FindFirstChild("Humanoid") and v.Character.Humanoid.Health ~= 0 and
v.Character:FindFirstChild("LowerTorso") then
local pos = CC:WorldToViewportPoint(v.Character.PrimaryPart.Position)
local magnitude = (Vector2.new(pos.X, pos.Y) -
Vector2.new(LocalMouse.X, LocalMouse.Y)).magnitude
if magnitude < shortestDistance then
closestPlayer = v
shortestDistance = magnitude
end
end
end
return closestPlayer
end
--
if getgenv().showdot == true then
game:GetService"RunService".Stepped:connect(function()
if Locking and Plr.Character and Plr.Character:FindFirstChild("LowerTorso")
then
Tracer.CFrame = CFrame.new(Plr.Character.LowerTorso.Position+
(Plr.Character.LowerTorso.Velocity*Prediction))
else
Tracer.CFrame = CFrame.new(0, 9999, 0)
end
end)
end
--
local rawmetatable = getrawmetatable(game)
local old = rawmetatable.__namecall
setreadonly(rawmetatable, false)
rawmetatable.__namecall = newcclosure(function(...)
local args = {...}
if Locking and getnamecallmethod() == "FireServer" and args[2] ==
"UpdateMousePos" then
args[3] = Plr.Character[getgenv().part].Position+
(Plr.Character[getgenv().part].Velocity*Prediction)
return old(unpack(args))
end
return old(...)
end)
if getgenv().airshotfunc == true then
Plr.Character:WaitForChild("Humanoid").StateChanged:Connect(function(old,new)
if new == Enum.HumanoidStateType.Freefall then
getgenv().part = "RightFoot"
else
getgenv().part = "LowerTorso"
end
end)
end
end
end)
function bindable.OnInvoke(response)
if response == "Yes" then
writefile("kittennotif.me", "_disabled")
StarterGui:SetCore(
"SendNotification",
{
Title = "kittenassist.me",
Text = "Created a file in workspace, delete it
in the future if you want it to keep showing.",
Duration = 5
}
)
end
end
end
else
local StarterGui = game:GetService("StarterGui") -- not sure why
you used CoreGui
local bindable = Instance.new("BindableFunction")
function bindable.OnInvoke(response)
if response == "Yes" then
writefile("kittennotif.me", "_disabled")
StarterGui:SetCore(
"SendNotification",
{
Title = "kittenassist.me",
Text = "Created a file in workspace, delete it in
the future if you want it to keep showing.",
Duration = 5
}
)
end
end
end
DeclineButton.Name = "DeclineButton"
DeclineButton.Parent = Main
DeclineButton.BackgroundColor3 = Color3.fromRGB(10, 9, 31)
DeclineButton.BorderSizePixel = 0
DeclineButton.Position = UDim2.new(0.632398725, 0, 0.630491614, 0)
DeclineButton.Size = UDim2.new(0, 100, 0, 31)
DeclineButton.Font = Enum.Font.Gotham
DeclineButton.Text = "No, Close."
DeclineButton.TextColor3 = Color3.fromRGB(255, 255, 255)
DeclineButton.TextSize = 17.000
DeclineButton.TextTransparency = 1
DeclineButton.BackgroundTransparency = 1
DeclineButton.MouseButton1Click:Connect(
function()
gui(DeclineButton, {TextTransparency = 1})
gui(DeclineButton, {BackgroundTransparency = 1})
gui(AcceptButton, {TextTransparency = 1})
gui(AcceptButton, {BackgroundTransparency = 1})
gui(GameInfo, {TextTransparency = 1})
gui(Start, {BackgroundTransparency = 1})
gui(TopBar, {BackgroundTransparency = 1})
gui(Start, {TextTransparency = 1})
gui(GameInfo, {TextTransparency = 1})
gui(Title, {TextTransparency = 1})
gui(Exit, {ImageTransparency = 1})
wait(1)
gui(Circle, {Size = UDim2.new(0, 0, 0, 0)})
wait(1.6)
LoadedPressed = true
Loader:Destroy()
wait(2)
if isfile("kittennotif.me") then
if readfile("kittennotif.me") ~= "_disabled" then
local StarterGui = game:GetService("StarterGui") -- not sure
why you used CoreGui
local bindable = Instance.new("BindableFunction")
function bindable.OnInvoke(response)
if response == "Yes" then
writefile("kittennotif.me", "_disabled")
StarterGui:SetCore(
"SendNotification",
{
Title = "kittenassist.me",
Text = "Created a file in workspace, delete it
in the future if you want it to keep showing.",
Duration = 5
}
)
end
end
StarterGui:SetCore(
"SendNotification",
{
Title = "kittenassist.me",
Text = "Would you like to disable the join buyer
discord GUI?",
Duration = 5,
Callback = bindable,
Button1 = "Yes",
Button2 = "No"
}
)
end
else
local StarterGui = game:GetService("StarterGui") -- not sure why
you used CoreGui
local bindable = Instance.new("BindableFunction")
function bindable.OnInvoke(response)
if response == "Yes" then
writefile("kittennotif.me", "_disabled")
StarterGui:SetCore(
"SendNotification",
{
Title = "kittenassist.me",
Text = "Created a file in workspace, delete it in
the future if you want it to keep showing.",
Duration = 5
}
)
end
end
end
end
)
Start.Name = "Start"
Start.Parent = Main
Start.BackgroundColor3 = Color3.fromRGB(10, 9, 31)
Start.BorderSizePixel = 0
Start.Position = UDim2.new(0.0591900349, 0, 0.630491614, 0)
Start.Size = UDim2.new(0, 284, 0, 31)
Start.Font = Enum.Font.Gotham
Start.Text = "Load Script"
Start.TextColor3 = Color3.fromRGB(255, 255, 255)
Start.TextSize = 17.000
Start.TextTransparency = 1
Start.BackgroundTransparency = 1
Start.MouseButton1Click:Connect(
function()
TweenService:Create(
GameInfo,
TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.In),
{TextTransparency = 1}
):Play()
gui(Start, {BackgroundTransparency = 1})
--gui(TopBar, {BackgroundTransparency = 1})
gui(Start, {TextTransparency = 1})
--gui(Title, {TextTransparency = 1})
--gui(Exit, {ImageTransparency = 1})
if isfile("kittennotif.me") then
if readfile("kittennotif.me") ~= "_disabled" then
TweenService:Create(
GameInfo,
TweenInfo.new(1, Enum.EasingStyle.Sine,
Enum.EasingDirection.In),
{TextTransparency = 1}
):Play()
wait(1)
GameInfo.TextScaled = true
GameInfo.Text = "Are You Sure"
gui(GameInfo, {TextTransparency = 0})
gui(AcceptButton, {BackgroundTransparency = 0})
gui(AcceptButton, {TextTransparency = 0})
gui(DeclineButton, {BackgroundTransparency = 0})
gui(DeclineButton, {TextTransparency = 0})
LoadedPressed = true
Start:Destroy()
else
gui(DeclineButton, {TextTransparency = 1})
gui(DeclineButton, {BackgroundTransparency = 1})
gui(AcceptButton, {TextTransparency = 1})
gui(AcceptButton, {BackgroundTransparency = 1})
TweenService:Create(
Start,
TweenInfo.new(1, Enum.EasingStyle.Sine,
Enum.EasingDirection.In),
{BackgroundTransparency = 0}
):Play()
gui(Start, {BackgroundTransparency = 1})
gui(TopBar, {BackgroundTransparency = 1})
gui(Start, {TextTransparency = 1})
gui(GameInfo, {TextTransparency = 1})
gui(Title, {TextTransparency = 1})
gui(Exit, {ImageTransparency = 1})
wait(1)
Circle:TweenSize(UDim2.new(0, 85, 0, 85),
Enum.EasingDirection.In, Enum.EasingStyle.Sine, 1)
wait(1)
Circle:TweenSize(UDim2.new(0, 0, 0, 0),
Enum.EasingDirection.Out, Enum.EasingStyle.Sine, 0.6)
wait(1)
LoadedPressed = true
Loader:Destroy()
end
else
GameInfo.TextScaled = true
GameInfo.Text = "Are You Sure?"
wait(0.1)
gui(GameInfo, {TextTransparency = 0})
gui(AcceptButton, {BackgroundTransparency = 0})
gui(AcceptButton, {TextTransparency = 0})
gui(DeclineButton, {BackgroundTransparency = 0})
gui(DeclineButton, {TextTransparency = 0})
Start:Destroy()
end
end
)
)
gui(GameInfo, {TextTransparency = 0})
gui(Title, {TextTransparency = 0})
gui(Exit, {ImageTransparency = 0})
repeat
wait()
until LoadedPressed == true