Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Bacon squad")
- game:GetService("StarterGui"):SetCore("SendNotification",{
- Title = "Bacon hub",
- Text = "ROAD TO 30 SUBS GUYSSSS!",
- Button1 = "Ok!",
- Duration = 30
- })
- --Scripting is at the bottom - thx to mana64
- if game.CoreGui:FindFirstChild("Library") then
- game.CoreGui:FindFirstChild("Library"):Destroy()
- end
- local VLib = {RainbowColorValue = 0, HueSelectionPosition = 0}
- 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()
- coroutine.wrap(
- function()
- while wait() do
- VLib.RainbowColorValue = VLib.RainbowColorValue + 1 / 255
- VLib.HueSelectionPosition = VLib.HueSelectionPosition + 1
- if VLib.RainbowColorValue >= 1 then
- VLib.RainbowColorValue = 0
- end
- if VLib.HueSelectionPosition == 80 then
- VLib.HueSelectionPosition = 0
- end
- end
- end
- )()
- 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.2), {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
- local Library = Instance.new("ScreenGui")
- Library.Name = "Library"
- Library.Parent = game.CoreGui
- Library.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- local uitoggled = false
- UserInputService.InputBegan:Connect(
- function(io, p)
- if io.KeyCode == Enum.KeyCode.RightControl then
- if uitoggled == false then
- Library.Enabled = false
- uitoggled = true
- else
- Library.Enabled = true
- uitoggled = false
- end
- end
- end
- )
- function VLib:Window(text, textgame, textcircle)
- local FirstTab = false
- local MainFrame = Instance.new("Frame")
- local MainCorner = Instance.new("UICorner")
- local LeftFrame = Instance.new("Frame")
- local LeftFrameCorner = Instance.new("UICorner")
- local MainTitle = Instance.new("TextLabel")
- local Circle = Instance.new("Frame")
- local CircleCorner = Instance.new("UICorner")
- local CircleName = Instance.new("TextLabel")
- local GameTitle = Instance.new("TextLabel")
- local TabHolder = Instance.new("Frame")
- local TabHoldLayout = Instance.new("UIListLayout")
- local RainbowLine = Instance.new("Frame")
- local RainbowLineCorner = Instance.new("UICorner")
- local ContainerHold = Instance.new("Folder")
- local DragFrame = Instance.new("Frame")
- local Glow = Instance.new("ImageLabel")
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = Library
- MainFrame.BackgroundColor3 = Color3.fromRGB(27, 27, 27)
- MainFrame.Position = UDim2.new(0.5, -325, 0.5, -250)
- MainFrame.Size = UDim2.new(0, 650, 0, 500)
- MainCorner.CornerRadius = UDim.new(0, 5)
- MainCorner.Name = "MainCorner"
- MainCorner.Parent = MainFrame
- LeftFrame.Name = "LeftFrame"
- LeftFrame.Parent = MainFrame
- LeftFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- LeftFrame.Position = UDim2.new(-0.000674468291, 0, -0.000149806539, 0)
- LeftFrame.Size = UDim2.new(0, 190, 0, 500)
- LeftFrameCorner.CornerRadius = UDim.new(0, 5)
- LeftFrameCorner.Name = "LeftFrameCorner"
- LeftFrameCorner.Parent = LeftFrame
- MainTitle.Name = "MainTitle"
- MainTitle.Parent = LeftFrame
- MainTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- MainTitle.BackgroundTransparency = 1.000
- MainTitle.Position = UDim2.new(0.168, 0, 0.043, 0)
- MainTitle.Size = UDim2.new(0, 71, 0, 20)
- MainTitle.Font = Enum.Font.Gotham
- MainTitle.Text = text
- MainTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- MainTitle.TextSize = 25.000
- MainTitle.TextXAlignment = Enum.TextXAlignment.Left
- GameTitle.Name = "GameTitle"
- GameTitle.Parent = LeftFrame
- GameTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- GameTitle.BackgroundTransparency = 1.000
- GameTitle.Position = UDim2.new(0.168, 0, 0.089, 6)
- GameTitle.Size = UDim2.new(0, 71, 0, 20)
- GameTitle.Font = Enum.Font.Gotham
- GameTitle.Text = textgame
- GameTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- GameTitle.TextSize = 17.000
- GameTitle.TextTransparency = 0.400
- GameTitle.TextXAlignment = Enum.TextXAlignment.Left
- TabHolder.Name = "TabHolder"
- TabHolder.Parent = LeftFrame
- TabHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TabHolder.BackgroundTransparency = 1.000
- TabHolder.Position = UDim2.new(0.0806451589, 0, 0.189360261, 0)
- TabHolder.Size = UDim2.new(0, 159, 0, 309)
- TabHoldLayout.Name = "TabHoldLayout"
- TabHoldLayout.Parent = TabHolder
- TabHoldLayout.SortOrder = Enum.SortOrder.LayoutOrder
- TabHoldLayout.Padding = UDim.new(0,5)
- ContainerHold.Name = "ContainerHold"
- ContainerHold.Parent = MainFrame
- DragFrame.Name = "DragFrame"
- DragFrame.Parent = MainFrame
- DragFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- DragFrame.BackgroundTransparency = 1.000
- DragFrame.Position = UDim2.new(0.30130294, 0, 0.00253164559, 0)
- DragFrame.Size = UDim2.new(0, 428, 0, 21)
- Glow.Name = "Glow"
- Glow.Parent = LeftFrame
- Glow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Glow.BackgroundTransparency = 1.000
- Glow.BorderSizePixel = 0
- Glow.Position = UDim2.new(0, -15, 0, -15)
- Glow.Size = UDim2.new(1, 30, 1, 30)
- 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)
- MakeDraggable(MainFrame, MainFrame)
- function VLib:Notification(textdesc)
- local NotificationHold = Instance.new("TextButton")
- local NotificationFrame = Instance.new("Frame")
- local OkayBtn = Instance.new("TextButton")
- local OkayBtnCorner = Instance.new("UICorner")
- local OkayBtnTitle = Instance.new("TextLabel")
- local NotificationTitle = Instance.new("TextLabel")
- local NotificationDesc = Instance.new("TextLabel")
- NotificationHold.Name = "NotificationHold"
- NotificationHold.Parent = MainFrame
- NotificationHold.BackgroundColor3 = Color3.fromRGB(125, 125, 125)
- NotificationHold.BackgroundTransparency = 0.700
- NotificationHold.BorderSizePixel = 0
- NotificationHold.Size = UDim2.new(0, 650, 0, 500)
- NotificationHold.AutoButtonColor = false
- NotificationHold.Font = Enum.Font.SourceSans
- NotificationHold.Text = ""
- NotificationHold.TextColor3 = Color3.fromRGB(0, 0, 0)
- NotificationHold.TextSize = 14.000
- TweenService:Create(
- NotificationHold,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundTransparency = 0.7}
- ):Play()
- wait(0.4)
- NotificationFrame.Name = "NotificationFrame"
- NotificationFrame.Parent = NotificationHold
- NotificationFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- NotificationFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- NotificationFrame.BorderSizePixel = 0
- NotificationFrame.ClipsDescendants = true
- NotificationFrame.Position = UDim2.new(0.5, 0, 0.498432577, 0)
- NotificationFrame.Size = UDim2.new(0, 0, 0, 0)
- NotificationFrame:TweenSize(UDim2.new(0, 305,0, 283), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
- OkayBtn.Name = "OkayBtn"
- OkayBtn.Parent = NotificationFrame
- OkayBtn.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
- OkayBtn.Position = UDim2.new(0.171131134, 0, 0.759717345, 0)
- OkayBtn.Size = UDim2.new(0, 200, 0, 42)
- OkayBtn.AutoButtonColor = false
- OkayBtn.Font = Enum.Font.SourceSans
- OkayBtn.Text = ""
- OkayBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
- OkayBtn.TextSize = 14.000
- OkayBtnCorner.CornerRadius = UDim.new(0, 5)
- OkayBtnCorner.Name = "OkayBtnCorner"
- OkayBtnCorner.Parent = OkayBtn
- OkayBtnTitle.Name = "OkayBtnTitle"
- OkayBtnTitle.Parent = OkayBtn
- OkayBtnTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- OkayBtnTitle.BackgroundTransparency = 1.000
- OkayBtnTitle.Size = UDim2.new(0, 200, 0, 42)
- OkayBtnTitle.Text = "OK!"
- OkayBtnTitle.Font = Enum.Font.Gotham
- OkayBtnTitle.TextColor3 = Color3.fromRGB(202, 202, 202)
- OkayBtnTitle.TextSize = 24.000
- NotificationTitle.Name = "NotificationTitle"
- NotificationTitle.Parent = NotificationFrame
- NotificationTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NotificationTitle.BackgroundTransparency = 1.000
- NotificationTitle.Position = UDim2.new(0.0559394211, 0, 0.0652336925, 0)
- NotificationTitle.Size = UDim2.new(0, 272, 0, 26)
- NotificationTitle.ZIndex = 3
- NotificationTitle.Font = Enum.Font.Gotham
- NotificationTitle.Text = "Notification"
- NotificationTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- NotificationTitle.TextSize = 24.000
- NotificationDesc.Name = "NotificationDesc"
- NotificationDesc.Parent = NotificationFrame
- NotificationDesc.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- NotificationDesc.BackgroundTransparency = 1.000
- NotificationDesc.Position = UDim2.new(0.0670000017, 0, 0.218999997, 0)
- NotificationDesc.Size = UDim2.new(0, 274, 0, 146)
- NotificationDesc.Font = Enum.Font.Gotham
- NotificationDesc.Text = textdesc
- NotificationDesc.TextColor3 = Color3.fromRGB(255, 255, 255)
- NotificationDesc.TextSize = 20.000
- NotificationDesc.TextWrapped = true
- NotificationDesc.TextXAlignment = Enum.TextXAlignment.Center
- NotificationDesc.TextYAlignment = Enum.TextYAlignment.Top
- OkayBtn.MouseEnter:Connect(function()
- TweenService:Create(
- OkayBtn,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundColor3 = Color3.fromRGB(37,37,37)}
- ):Play()
- end)
- OkayBtn.MouseLeave:Connect(function()
- TweenService:Create(
- OkayBtn,
- TweenInfo.new(.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundColor3 = Color3.fromRGB(34, 34, 34)}
- ):Play()
- end)
- OkayBtn.MouseButton1Click:Connect(function()
- NotificationFrame:TweenSize(UDim2.new(0, 0,0, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, .6, true)
- wait(0.4)
- TweenService:Create(
- NotificationHold,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundTransparency = 1}
- ):Play()
- wait(.3)
- NotificationHold:Destroy()
- end)
- end
- coroutine.wrap(
- function()
- while wait() do
- end
- end
- )()
- local Tabs = {}
- function Tabs:Tab(text)
- local Tab = Instance.new("TextButton")
- local TabCorner = Instance.new("UICorner")
- local Title = Instance.new("TextLabel")
- local UIGradient = Instance.new('UIGradient')
- Tab.Name = "Tab"
- Tab.Parent = TabHolder
- Tab.BackgroundColor3 = Color3.fromRGB(255,255,255)
- Tab.Size = UDim2.new(0, 170, 0, 35)
- Tab.AutoButtonColor = false
- Tab.Font = Enum.Font.SourceSans
- Tab.Text = ""
- Tab.TextColor3 = Color3.fromRGB(0, 0, 0)
- Tab.TextSize = 15.000
- Tab.BackgroundTransparency = 1
- UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(121,9,112
- )), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(27,50,255))}
- UIGradient.Parent = Tab
- TabCorner.CornerRadius = UDim.new(0, 3)
- TabCorner.Name = "TabCorner"
- TabCorner.Parent = Tab
- Title.Name = "Title"
- Title.Parent = Tab
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0566037744, 0, 0.1, 0)
- Title.Size = UDim2.new(0, 150, 0, 29)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 17.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- local Container = Instance.new("ScrollingFrame")
- local ContainerLayout = Instance.new("UIListLayout")
- Container.Name = "Container"
- Container.Parent = ContainerHold
- Container.Active = true
- Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Container.BackgroundTransparency = 1.000
- Container.BorderSizePixel = 0
- Container.Position = UDim2.new(0.34, 0, 0.0506329127, 0)
- Container.Size = UDim2.new(0, 420, 0, 450)
- Container.ScrollBarThickness = 5
- Container.CanvasSize = UDim2.new(0, 0, 0, 0)
- Container.Visible = false
- Container.ScrollBarImageColor3 = Color3.fromRGB(100, 100, 100)
- ContainerLayout.Name = "ContainerLayout"
- ContainerLayout.Parent = Container
- ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
- ContainerLayout.Padding = UDim.new(0, 15)
- if FirstTab == false then
- FirstTab = true
- Tab.BackgroundTransparency = 0
- Container.Visible = true
- end
- Tab.MouseButton1Click:Connect(
- function()
- for i, v in next, ContainerHold:GetChildren() do
- if v.Name == "Container" then
- v.Visible = false
- end
- end
- for i, v in next, TabHolder:GetChildren() do
- if v.ClassName == "TextButton" then
- TweenService:Create(
- v,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundTransparency = 1}
- ):Play()
- TweenService:Create(
- Tab,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {BackgroundTransparency = 0}
- ):Play()
- end
- end
- Container.Visible = true
- end
- )
- local ContainerItems = {}
- function ContainerItems:Button(text, callback)
- local Button = Instance.new("TextButton")
- local ButtonCorner = Instance.new("UICorner")
- Button.Name = "Button"
- Button.Parent = Container
- Button.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Button.Size = UDim2.new(0, 405, 0, 40)
- Button.AutoButtonColor = false
- Button.Font = Enum.Font.Gotham
- Button.TextColor3 = Color3.fromRGB(255, 255, 255)
- Button.TextSize = 15.000
- Button.Text = text
- ButtonCorner.CornerRadius = UDim.new(0, 5)
- ButtonCorner.Name = "ButtonCorner"
- ButtonCorner.Parent = Button
- Button.MouseEnter:Connect(
- function()
- TweenService:Create(
- Button,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
- ):Play()
- end
- )
- Button.MouseLeave:Connect(
- function()
- TweenService:Create(
- Button,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
- ):Play()
- end
- )
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- Button.MouseButton1Click:Connect(
- function()
- pcall(callback)
- Button.TextSize = 0
- TweenService:Create(Button, TweenInfo.new(.2, Enum.EasingStyle.Quad), {TextSize = 17}):Play()
- wait(.2)
- TweenService:Create(Button, TweenInfo.new(.2, Enum.EasingStyle.Quad), {TextSize = 14}):Play()
- end
- )
- end
- function ContainerItems:Toggle(text,Default,callback)
- local Toggled = Default or false
- local ValueToggle = ValueTogglea or false
- local Toggle = Instance.new("TextButton")
- local ToggleCorner = Instance.new("UICorner")
- local Title = Instance.new("TextLabel")
- local ToggleFrame = Instance.new("Frame")
- local ToggleFrameCorner = Instance.new("UICorner")
- local ToggleFrameRainbow = Instance.new("Frame")
- local ToggleFrameRainbowCorner = Instance.new("UICorner")
- local ToggleDot = Instance.new("Frame")
- local ToggleDotCorner = Instance.new("UICorner")
- local UIGradient_2 = Instance.new('UIGradient')
- Toggle.Name = "Toggle"
- Toggle.Parent = Container
- Toggle.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Toggle.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
- Toggle.Size = UDim2.new(0, 405, 0, 40)
- Toggle.AutoButtonColor = false
- Toggle.Font = Enum.Font.Gotham
- Toggle.Text = ""
- Toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
- Toggle.TextSize = 14.000
- ToggleCorner.CornerRadius = UDim.new(0, 5)
- ToggleCorner.Name = "ToggleCorner"
- ToggleCorner.Parent = Toggle
- Title.Name = "Title"
- Title.Parent = Toggle
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
- Title.Size = UDim2.new(0, 430, 0, 40)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 15.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- ToggleFrame.Name = "ToggleFrame"
- ToggleFrame.Parent = Toggle
- ToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 23, 27)
- ToggleFrame.Position = UDim2.new(0.88, 0, 0.21, 0)
- ToggleFrame.Size = UDim2.new(0, 40, 0, 22)
- ToggleFrameCorner.CornerRadius = UDim.new(1, 0)
- ToggleFrameCorner.Name = "ToggleFrameCorner"
- ToggleFrameCorner.Parent = ToggleFrame
- ToggleFrameRainbow.Name = "ToggleFrameRainbow"
- ToggleFrameRainbow.Parent = ToggleFrame
- ToggleFrameRainbow.BackgroundColor3 = Color3.fromRGB(27,27,27)
- ToggleFrameRainbow.BackgroundTransparency = 1.000
- ToggleFrameRainbow.Position = UDim2.new(-0.0198377371, 0, 0.00601506233, 0)
- ToggleFrameRainbow.Size = UDim2.new(0, 40, 0, 22)
- ToggleFrameRainbowCorner.CornerRadius = UDim.new(1, 0)
- ToggleFrameRainbowCorner.Name = "ToggleFrameRainbowCorner"
- ToggleFrameRainbowCorner.Parent = ToggleFrameRainbow
- ToggleDot.Name = "ToggleDot"
- ToggleDot.Parent = ToggleFrameRainbow
- ToggleDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ToggleDot.Position = UDim2.new(0.104999997, -3, 0.289000005, -4)
- ToggleDot.Size = UDim2.new(0, 16, 0, 16)
- UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
- UIGradient_2.Parent = ToggleDot
- ToggleDotCorner.CornerRadius = UDim.new(1, 0)
- ToggleDotCorner.Name = "ToggleDotCorner"
- ToggleDotCorner.Parent = ToggleDot
- Toggle.MouseEnter:Connect(
- function()
- TweenService:Create(
- Toggle,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
- ):Play()
- end
- )
- Toggle.MouseLeave:Connect(
- function()
- TweenService:Create(
- Toggle,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
- ):Play()
- end
- )
- if Toggled == true then
- UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
- TweenService:Create(
- ToggleFrameRainbow,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundTransparency = 0}
- ):Play()
- TweenService:Create(
- ToggleDot,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
- ):Play()
- pcall(callback, Toggled)
- else
- ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(46, 255, 255)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(228, 92, 255))}
- TweenService:Create(
- ToggleFrameRainbow,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundTransparency = 1}
- ):Play()
- TweenService:Create(
- ToggleDot,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
- ):Play()
- end
- Toggle.MouseButton1Click:Connect(
- function()
- if Toggled == false then
- UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
- TweenService:Create(
- ToggleFrameRainbow,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundTransparency = 0}
- ):Play()
- TweenService:Create(
- ToggleDot,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
- ):Play()
- else
- UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
- TweenService:Create(
- ToggleFrameRainbow,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundTransparency = 1}
- ):Play()
- TweenService:Create(
- ToggleDot,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
- ):Play()
- end
- Toggled = not Toggled
- pcall(callback, Toggled)
- end
- )
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- function ContainerItems:Slider(text, min, max, start, callback)
- local dragging = false
- local Slider = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local SliderFrame = Instance.new("Frame")
- local SliderFrameCorner = Instance.new("UICorner")
- local SliderIndicator = Instance.new("Frame")
- local SliderIndicatorCorner = Instance.new("UICorner")
- local SliderCorner = Instance.new("UICorner")
- local Value = Instance.new("TextLabel")
- local UIGradient_3 = Instance.new('UIGradient')
- Slider.Name = "Slider"
- Slider.Parent = Container
- Slider.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Slider.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
- Slider.Size = UDim2.new(0, 405, 0, 49)
- Slider.AutoButtonColor = false
- Slider.Font = Enum.Font.Gotham
- Slider.Text = ""
- Slider.TextColor3 = Color3.fromRGB(255, 255, 255)
- Slider.TextSize = 14.000
- Title.Name = "Title"
- Title.Parent = Slider
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
- Title.Size = UDim2.new(0, 192, 0, 28)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 14.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- SliderFrame.Name = "SliderFrame"
- SliderFrame.Parent = Slider
- SliderFrame.BackgroundColor3 = Color3.fromRGB(29, 29, 29)
- SliderFrame.Position = UDim2.new(0.0223324299, 0, 0.563266039, 0)
- SliderFrame.Size = UDim2.new(0, 384, 0, 11)
- SliderFrameCorner.Name = "SliderFrameCorner"
- SliderFrameCorner.Parent = SliderFrame
- SliderIndicator.Name = "SliderIndicator"
- SliderIndicator.Parent = SliderFrame
- SliderIndicator.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- SliderIndicator.BorderSizePixel = 0
- SliderIndicator.Position = UDim2.new(-0.00260408712, 0, 0.0363603085, 0)
- SliderIndicator.Size = UDim2.new((start or 0) / max, 0, 0, 11)
- UIGradient_3.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(160, 207, 236)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(102, 152, 255))}
- UIGradient_3.Parent = SliderIndicator
- SliderIndicatorCorner.Name = "SliderIndicatorCorner"
- SliderIndicatorCorner.Parent = SliderIndicator
- SliderCorner.CornerRadius = UDim.new(0, 6)
- SliderCorner.Name = "SliderCorner"
- SliderCorner.Parent = Slider
- Value.Name = "Value"
- Value.Parent = Slider
- Value.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Value.BackgroundTransparency = 1.000
- Value.Position = UDim2.new(0.496277869, 0, 0, 0)
- Value.Size = UDim2.new(0, 192, 0, 28)
- Value.Font = Enum.Font.Gotham
- Value.Text = tostring(start and math.floor((start / max) * (max - min) + min) or 0)
- Value.TextColor3 = Color3.fromRGB(255, 255, 255)
- Value.TextSize = 14.000
- Value.TextXAlignment = Enum.TextXAlignment.Right
- local function slide(input)
- local pos =
- UDim2.new(
- math.clamp((input.Position.X - SliderFrame.AbsolutePosition.X) / SliderFrame.AbsoluteSize.X, 0, 1),
- 0,
- 0,
- 11
- )
- SliderIndicator:TweenSize(pos, Enum.EasingDirection.Out, Enum.EasingStyle.Quart, 0.3, true)
- local val = math.floor(((pos.X.Scale * max) / max) * (max - min) + min)
- Value.Text = tostring(val)
- pcall(callback, val)
- end
- SliderFrame.InputBegan:Connect(
- function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- slide(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
- slide(input)
- end
- end
- )
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- function ContainerItems:Dropdown(text, list, callback)
- local dropfunc = {}
- local DropToggled = false
- local FrameSize = 0
- local ItemCount = 0
- local Dropdown = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local DropdownCorner = Instance.new("UICorner")
- local Arrow = Instance.new("ImageLabel")
- Dropdown.Name = "Dropdown"
- Dropdown.Parent = Container
- Dropdown.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Dropdown.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
- Dropdown.Size = UDim2.new(0, 405, 0, 45)
- Dropdown.AutoButtonColor = false
- Dropdown.Font = Enum.Font.Gotham
- Dropdown.Text = ""
- Dropdown.TextColor3 = Color3.fromRGB(255, 255, 255)
- Dropdown.TextSize = 15.000
- Title.Name = "Title"
- Title.Parent = Dropdown
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
- Title.Size = UDim2.new(0, 192, 0, 40)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 15.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- DropdownCorner.CornerRadius = UDim.new(0, 6)
- DropdownCorner.Name = "DropdownCorner"
- DropdownCorner.Parent = Dropdown
- Arrow.Name = "Arrow"
- Arrow.Parent = Dropdown
- Arrow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Arrow.BackgroundTransparency = 1.000
- Arrow.Position = UDim2.new(0.9, 0, 0.2, 0)
- Arrow.Size = UDim2.new(0, 27, 0, 27)
- Arrow.Image = "http://www.roblox.com/asset/?id=6034818372"
- local DropdownFrame = Instance.new("Frame")
- local DropdownFrameCorner = Instance.new("UICorner")
- local DropdownHolder = Instance.new("ScrollingFrame")
- local DropdownItemLayout = Instance.new("UIListLayout")
- local DropdownItemHolder = Instance.new("UIPadding")
- DropdownFrame.Name = "DropdownFrame"
- DropdownFrame.Parent = Container
- DropdownFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
- DropdownFrame.BorderSizePixel = 0
- DropdownFrame.Position = UDim2.new(0.334374994, 0, 0.604166687, 0)
- DropdownFrame.Size = UDim2.new(0, 403, 0, 0)
- DropdownFrame.Visible = false
- DropdownFrameCorner.Name = "DropdownFrameCorner"
- DropdownFrameCorner.Parent = DropdownFrame
- DropdownHolder.Name = "DropdownHolder"
- DropdownHolder.Parent = DropdownFrame
- DropdownHolder.Active = true
- DropdownHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- DropdownHolder.BackgroundTransparency = 1.000
- DropdownHolder.BorderSizePixel = 0
- DropdownHolder.Position = UDim2.new(0.0263156947, 0, 0.00326599111, 0)
- DropdownHolder.Size = UDim2.new(0, 386, 0, 0)
- DropdownHolder.ScrollBarThickness = 3
- DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, 0)
- DropdownHolder.ScrollBarImageColor3 = Color3.fromRGB(48, 48, 48)
- DropdownItemLayout.Name = "DropdownItemLayout"
- DropdownItemLayout.Parent = DropdownHolder
- DropdownItemLayout.SortOrder = Enum.SortOrder.LayoutOrder
- DropdownItemLayout.Padding = UDim.new(0, 5)
- DropdownItemHolder.Name = "DropdownItemHolder"
- DropdownItemHolder.Parent = DropdownHolder
- DropdownItemHolder.PaddingBottom = UDim.new(0, 5)
- DropdownItemHolder.PaddingTop = UDim.new(0, 5)
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- Dropdown.MouseEnter:Connect(
- function()
- TweenService:Create(
- Dropdown,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
- ):Play()
- end
- )
- Dropdown.MouseLeave:Connect(
- function()
- TweenService:Create(
- Dropdown,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
- ):Play()
- end
- )
- Dropdown.MouseButton1Click:Connect(
- function()
- if DropToggled == false then
- DropdownFrame.Visible = true
- DropdownFrame:TweenSize(
- UDim2.new(0, 403, 0, FrameSize),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- DropdownHolder:TweenSize(
- UDim2.new(0, 386, 0, FrameSize),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- TweenService:Create(
- Arrow,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = 180}
- ):Play()
- repeat
- wait()
- until DropdownFrame.Size == UDim2.new(0, 403, 0, FrameSize)
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- else
- DropdownFrame:TweenSize(
- UDim2.new(0, 403, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- DropdownHolder:TweenSize(
- UDim2.new(0, 386, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- TweenService:Create(
- Arrow,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = 0}
- ):Play()
- repeat
- wait()
- until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
- DropdownFrame.Visible = false
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- DropToggled = not DropToggled
- end
- )
- for i, v in next, list do
- ItemCount = ItemCount + 1
- if ItemCount == 1 then
- FrameSize = 39
- elseif ItemCount == 2 then
- FrameSize = 69
- elseif ItemCount >= 3 then
- FrameSize = 100
- end
- local Item = Instance.new("TextButton")
- local ItemCorner = Instance.new("UICorner")
- Item.Name = "Item"
- Item.Parent = DropdownHolder
- Item.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
- Item.Position = UDim2.new(0, 0, 0.0808080807, 0)
- Item.Size = UDim2.new(0, 405, 0, 24)
- Item.AutoButtonColor = false
- Item.Font = Enum.Font.Gotham
- Item.TextColor3 = Color3.fromRGB(255, 255, 255)
- Item.TextSize = 14.000
- Item.Text = v
- ItemCorner.Name = "ItemCorner"
- ItemCorner.Parent = Item
- Item.MouseEnter:Connect(
- function()
- TweenService:Create(
- Item,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(37, 37, 37)}
- ):Play()
- end
- )
- Item.MouseLeave:Connect(
- function()
- TweenService:Create(
- Item,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(32, 32, 32)}
- ):Play()
- end
- )
- Item.MouseButton1Click:Connect(
- function()
- Title.Text = text .. " - " .. v
- pcall(callback, v)
- DropToggled = false
- DropdownFrame:TweenSize(
- UDim2.new(0, 403, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- DropdownHolder:TweenSize(
- UDim2.new(0, 386, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- TweenService:Create(
- Arrow,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = 0}
- ):Play()
- repeat
- wait()
- until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
- DropdownFrame.Visible = false
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- )
- DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, DropdownItemLayout.AbsoluteContentSize.Y + 15)
- end
- function dropfunc:Clear()
- Title.Text = text
- FrameSize = 0
- ItemCount = 0
- for i,v in next, DropdownHolder:GetChildren() do
- if v.Name == "Item" then
- v:Destroy()
- end
- end
- DropdownFrame:TweenSize(
- UDim2.new(0, 403, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- DropdownHolder:TweenSize(
- UDim2.new(0, 386, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- TweenService:Create(
- Arrow,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = 0}
- ):Play()
- repeat
- wait()
- until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
- DropdownFrame.Visible = false
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- function dropfunc:Add(toadd)
- ItemCount = ItemCount + 1
- if ItemCount == 1 then
- FrameSize = 39
- elseif ItemCount == 2 then
- FrameSize = 69
- elseif ItemCount >= 3 then
- FrameSize = 100
- end
- local Item = Instance.new("TextButton")
- local ItemCorner = Instance.new("UICorner")
- Item.Name = "Item"
- Item.Parent = DropdownHolder
- Item.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
- Item.Position = UDim2.new(0, 0, 0.0808080807, 0)
- Item.Size = UDim2.new(0, 405, 0, 24)
- Item.AutoButtonColor = false
- Item.Font = Enum.Font.Gotham
- Item.TextColor3 = Color3.fromRGB(255, 255, 255)
- Item.TextSize = 14.000
- Item.Text = toadd
- ItemCorner.Name = "ItemCorner"
- ItemCorner.Parent = Item
- Item.MouseEnter:Connect(
- function()
- TweenService:Create(
- Item,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(37, 37, 37)}
- ):Play()
- end
- )
- Item.MouseLeave:Connect(
- function()
- TweenService:Create(
- Item,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(32, 32, 32)}
- ):Play()
- end
- )
- Item.MouseButton1Click:Connect(
- function()
- Title.Text = text .. " - " .. toadd
- pcall(callback, toadd)
- DropToggled = false
- DropdownFrame:TweenSize(
- UDim2.new(0, 403, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- DropdownHolder:TweenSize(
- UDim2.new(0, 386, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- TweenService:Create(
- Arrow,
- TweenInfo.new(.3, Enum.EasingStyle.Quad, Enum.EasingDirection.Out),
- {Rotation = 0}
- ):Play()
- repeat
- wait()
- until DropdownFrame.Size == UDim2.new(0, 403, 0, 0)
- DropdownFrame.Visible = false
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- )
- DropdownHolder.CanvasSize = UDim2.new(0, 0, 0, DropdownItemLayout.AbsoluteContentSize.Y + 15)
- end
- return dropfunc
- end
- function ContainerItems:Colorpicker(text, preset, callback)
- local ColorPickerToggled = false
- local OldToggleColor = Color3.fromRGB(0, 0, 0)
- local OldColor = Color3.fromRGB(0, 0, 0)
- local OldColorSelectionPosition = nil
- local OldHueSelectionPosition = nil
- local ColorH, ColorS, ColorV = 1, 1, 1
- local RainbowColorPicker = false
- local ColorPickerInput = nil
- local ColorInput = nil
- local HueInput = nil
- local Colorpicker = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local BoxColor = Instance.new("Frame")
- local BoxcolorCorner = Instance.new("UICorner")
- local ColorpickerCorner = Instance.new("UICorner")
- Colorpicker.Name = "Colorpicker"
- Colorpicker.Parent = Container
- Colorpicker.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Colorpicker.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
- Colorpicker.Size = UDim2.new(0, 405, 0, 40)
- Colorpicker.AutoButtonColor = false
- Colorpicker.Font = Enum.Font.Gotham
- Colorpicker.Text = ""
- Colorpicker.TextColor3 = Color3.fromRGB(255, 255, 255)
- Colorpicker.TextSize = 14.000
- Title.Name = "Title"
- Title.Parent = Colorpicker
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
- Title.Size = UDim2.new(0, 405, 0, 40)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 15.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- BoxColor.Name = "Boxcolor"
- BoxColor.Parent = Colorpicker
- BoxColor.BackgroundColor3 = preset
- BoxColor.Position = UDim2.new(0.88, 0, 0.3, 0)
- BoxColor.Size = UDim2.new(0, 36, 0, 19)
- BoxcolorCorner.CornerRadius = UDim.new(0, 6)
- BoxcolorCorner.Name = "BoxcolorCorner"
- BoxcolorCorner.Parent = BoxColor
- ColorpickerCorner.CornerRadius = UDim.new(0, 4)
- ColorpickerCorner.Name = "ColorpickerCorner"
- ColorpickerCorner.Parent = Colorpicker
- local ColorpickerFrame = Instance.new("Frame")
- local DropdownFrameCorner = Instance.new("UICorner")
- local Hue = Instance.new("ImageLabel")
- local HueCorner = Instance.new("UICorner")
- local HueGradient = Instance.new("UIGradient")
- local HueSelection = Instance.new("ImageLabel")
- local Color = Instance.new("ImageLabel")
- local ColorCorner = Instance.new("UICorner")
- local ColorSelection = Instance.new("ImageLabel")
- local Confirm = Instance.new("TextButton")
- local ButtonCorner = Instance.new("UICorner")
- local RainbowToggle = Instance.new("TextButton")
- local RainbowToggleCorner = Instance.new("UICorner")
- local RainbowTitle = Instance.new("TextLabel")
- local RainbowToggleFrame = Instance.new("Frame")
- local RainbowToggleFrameCorner = Instance.new("UICorner")
- local RainbowToggleFrameRainbow = Instance.new("Frame")
- local RainbowToggleFrameRainbowCorner = Instance.new("UICorner")
- local RainbowToggleDot = Instance.new("Frame")
- local RainbowToggleDotCorner = Instance.new("UICorner")
- ColorpickerFrame.Name = "ColorpickerFrame"
- ColorpickerFrame.Parent = Container
- ColorpickerFrame.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
- ColorpickerFrame.BorderSizePixel = 0
- ColorpickerFrame.Position = UDim2.new(0.165624991, 0, 0.671052635, 0)
- ColorpickerFrame.Size = UDim2.new(0, 403, 0, 0)
- ColorpickerFrame.Visible = false
- ColorpickerFrame.ClipsDescendants = true
- DropdownFrameCorner.Name = "DropdownFrameCorner"
- DropdownFrameCorner.Parent = ColorpickerFrame
- Hue.Name = "Hue"
- Hue.Parent = ColorpickerFrame
- Hue.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Hue.Position = UDim2.new(0, 209, 0, 9)
- Hue.Size = UDim2.new(0, 25, 0, 80)
- HueCorner.CornerRadius = UDim.new(0, 3)
- HueCorner.Name = "HueCorner"
- HueCorner.Parent = Hue
- HueGradient.Color =
- ColorSequence.new {
- ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 0, 4)),
- ColorSequenceKeypoint.new(0.20, Color3.fromRGB(234, 255, 0)),
- ColorSequenceKeypoint.new(0.40, Color3.fromRGB(21, 255, 0)),
- ColorSequenceKeypoint.new(0.60, Color3.fromRGB(0, 255, 255)),
- ColorSequenceKeypoint.new(0.80, Color3.fromRGB(0, 17, 255)),
- ColorSequenceKeypoint.new(0.90, Color3.fromRGB(255, 0, 251)),
- ColorSequenceKeypoint.new(1.00, Color3.fromRGB(255, 0, 4))
- }
- HueGradient.Rotation = 270
- HueGradient.Name = "HueGradient"
- HueGradient.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.48, 0, 1 - select(1, Color3.toHSV(preset)))
- HueSelection.Size = UDim2.new(0, 18, 0, 18)
- HueSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
- Color.Name = "Color"
- Color.Parent = ColorpickerFrame
- Color.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
- Color.Position = UDim2.new(0, 9, 0, 9)
- Color.Size = UDim2.new(0, 194, 0, 80)
- Color.ZIndex = 10
- Color.Image = "rbxassetid://4155801252"
- 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(preset and select(3, Color3.toHSV(preset)))
- ColorSelection.Size = UDim2.new(0, 18, 0, 18)
- ColorSelection.Image = "http://www.roblox.com/asset/?id=4805639000"
- ColorSelection.ScaleType = Enum.ScaleType.Fit
- Confirm.Name = "Confirm"
- Confirm.Parent = ColorpickerFrame
- Confirm.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
- Confirm.BackgroundTransparency = 0.010
- Confirm.Position = UDim2.new(0.612244904, 0, 0.0900000036, 0)
- Confirm.Size = UDim2.new(0, 145, 0, 27)
- Confirm.AutoButtonColor = false
- Confirm.Font = Enum.Font.Gotham
- Confirm.Text = "Confirm"
- Confirm.TextColor3 = Color3.fromRGB(255, 255, 255)
- Confirm.TextSize = 14.000
- ButtonCorner.Name = "ButtonCorner"
- ButtonCorner.Parent = Confirm
- RainbowToggle.Name = "RainbowToggle"
- RainbowToggle.Parent = ColorpickerFrame
- RainbowToggle.BackgroundColor3 = Color3.fromRGB(32, 32, 32)
- RainbowToggle.Position = UDim2.new(0.610732794, 0, 0.431324542, 0)
- RainbowToggle.Size = UDim2.new(0, 145, 0, 27)
- RainbowToggle.AutoButtonColor = false
- RainbowToggle.Font = Enum.Font.Gotham
- RainbowToggle.Text = ""
- RainbowToggle.TextColor3 = Color3.fromRGB(255, 255, 255)
- RainbowToggle.TextSize = 14.000
- RainbowToggleCorner.Name = "RainbowToggleCorner"
- RainbowToggleCorner.Parent = RainbowToggle
- RainbowTitle.Name = "RainbowTitle"
- RainbowTitle.Parent = RainbowToggle
- RainbowTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- RainbowTitle.BackgroundTransparency = 1.000
- RainbowTitle.Position = UDim2.new(0.0204080511, 0, 0, 0)
- RainbowTitle.Size = UDim2.new(0, 29, 0, 27)
- RainbowTitle.Font = Enum.Font.Gotham
- RainbowTitle.Text = "Rainbow"
- RainbowTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
- RainbowTitle.TextSize = 14.000
- RainbowTitle.TextXAlignment = Enum.TextXAlignment.Left
- RainbowToggleFrame.Name = "RainbowToggleFrame"
- RainbowToggleFrame.Parent = RainbowToggle
- RainbowToggleFrame.BackgroundColor3 = Color3.fromRGB(22, 23, 27)
- RainbowToggleFrame.Position = UDim2.new(0.693, 0, 0.142857149, 0)
- RainbowToggleFrame.Size = UDim2.new(0, 36, 0, 19)
- RainbowToggleFrameCorner.CornerRadius = UDim.new(1, 0)
- RainbowToggleFrameCorner.Name = "RainbowToggleFrameCorner"
- RainbowToggleFrameCorner.Parent = RainbowToggleFrame
- RainbowToggleFrameRainbow.Name = "RainbowToggleFrameRainbow"
- RainbowToggleFrameRainbow.Parent = RainbowToggleFrame
- RainbowToggleFrameRainbow.BackgroundColor3 = Color3.fromRGB(67,136,246)
- RainbowToggleFrameRainbow.BackgroundTransparency = 1.000
- RainbowToggleFrameRainbow.Position = UDim2.new(-0.0198377371, 0, 0.00601506233, 0)
- RainbowToggleFrameRainbow.Size = UDim2.new(0, 36, 0, 19)
- RainbowToggleFrameRainbowCorner.CornerRadius = UDim.new(1, 0)
- RainbowToggleFrameRainbowCorner.Name = "RainbowToggleFrameRainbowCorner"
- RainbowToggleFrameRainbowCorner.Parent = RainbowToggleFrameRainbow
- RainbowToggleDot.Name = "RainbowToggleDot"
- RainbowToggleDot.Parent = RainbowToggleFrameRainbow
- RainbowToggleDot.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- RainbowToggleDot.Position = UDim2.new(0.104999997, -3, 0.289000005, -4)
- RainbowToggleDot.Size = UDim2.new(0, 16, 0, 16)
- RainbowToggleDotCorner.CornerRadius = UDim.new(1, 0)
- RainbowToggleDotCorner.Name = "RainbowToggleDotCorner"
- RainbowToggleDotCorner.Parent = RainbowToggleDot
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- Colorpicker.MouseEnter:Connect(
- function()
- TweenService:Create(
- Colorpicker,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(45, 45, 45)}
- ):Play()
- end
- )
- Colorpicker.MouseLeave:Connect(
- function()
- TweenService:Create(
- Colorpicker,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundColor3 = Color3.fromRGB(35, 35, 35)}
- ):Play()
- end
- )
- local function UpdateColorPicker(nope)
- BoxColor.BackgroundColor3 = Color3.fromHSV(ColorH, ColorS, ColorV)
- Color.BackgroundColor3 = Color3.fromHSV(ColorH, 1, 1)
- pcall(callback, BoxColor.BackgroundColor3)
- 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)
- BoxColor.BackgroundColor3 = preset
- Color.BackgroundColor3 = preset
- pcall(callback, BoxColor.BackgroundColor3)
- Color.InputBegan:Connect(
- function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if RainbowColorPicker then
- return
- end
- 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(true)
- end
- )
- end
- end
- )
- Color.InputEnded:Connect(
- function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if ColorInput then
- ColorInput:Disconnect()
- end
- end
- end
- )
- Hue.InputBegan:Connect(
- function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- if RainbowColorPicker then
- return
- end
- 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
- )
- RainbowToggle.MouseButton1Down:Connect(
- function()
- RainbowColorPicker = not RainbowColorPicker
- if ColorInput then
- ColorInput:Disconnect()
- end
- if HueInput then
- HueInput:Disconnect()
- end
- if RainbowColorPicker then
- TweenService:Create(
- RainbowToggleFrameRainbow,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundTransparency = 0}
- ):Play()
- TweenService:Create(
- RainbowToggleDot,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {Position = UDim2.new(0.595, -3, 0.289000005, -4)}
- ):Play()
- OldToggleColor = BoxColor.BackgroundColor3
- OldColor = Color.BackgroundColor3
- OldColorSelectionPosition = ColorSelection.Position
- OldHueSelectionPosition = HueSelection.Position
- while RainbowColorPicker do
- BoxColor.BackgroundColor3 = Color3.fromHSV(VLib.RainbowColorValue, 1, 1)
- Color.BackgroundColor3 = Color3.fromHSV(VLib.RainbowColorValue, 1, 1)
- ColorSelection.Position = UDim2.new(1, 0, 0, 0)
- HueSelection.Position = UDim2.new(0.48, 0, 0, VLib.HueSelectionPosition)
- pcall(callback, BoxColor.BackgroundColor3)
- wait()
- end
- elseif not RainbowColorPicker then
- TweenService:Create(
- RainbowToggleFrameRainbow,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {BackgroundTransparency = 1}
- ):Play()
- TweenService:Create(
- RainbowToggleDot,
- TweenInfo.new(.2, Enum.EasingStyle.Quad),
- {Position = UDim2.new(0.104999997, -3, 0.289000005, -4)}
- ):Play()
- BoxColor.BackgroundColor3 = OldToggleColor
- Color.BackgroundColor3 = OldColor
- ColorSelection.Position = OldColorSelectionPosition
- HueSelection.Position = OldHueSelectionPosition
- pcall(callback, BoxColor.BackgroundColor3)
- end
- end
- )
- Colorpicker.MouseButton1Click:Connect(
- function()
- if ColorPickerToggled == false then
- ColorPickerToggled = not ColorPickerToggled
- ColorpickerFrame.Visible = true
- ColorpickerFrame:TweenSize(
- UDim2.new(0, 403, 0, 100),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- repeat
- wait()
- until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 100)
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- else
- ColorPickerToggled = not ColorPickerToggled
- ColorpickerFrame:TweenSize(
- UDim2.new(0, 403, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- repeat
- wait()
- until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 0)
- ColorpickerFrame.Visible = false
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- end
- )
- Confirm.MouseButton1Click:Connect(
- function()
- ColorPickerToggled = not ColorPickerToggled
- ColorpickerFrame:TweenSize(
- UDim2.new(0, 403, 0, 0),
- Enum.EasingDirection.Out,
- Enum.EasingStyle.Quart,
- 0.1,
- true
- )
- repeat
- wait()
- until ColorpickerFrame.Size == UDim2.new(0, 403, 0, 0)
- ColorpickerFrame.Visible = false
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end)
- coroutine.wrap(
- function()
- while wait() do
- end
- end
- )()
- end
- function ContainerItems:Label(text)
- local labelfunc = {}
- local Label = Instance.new("TextButton")
- local LabelCorner = Instance.new("UICorner")
- Label.Name = "Label"
- Label.Parent = Container
- Label.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Label.Size = UDim2.new(0, 405, 0, 40)
- Label.AutoButtonColor = false
- Label.Font = Enum.Font.Gotham
- Label.TextColor3 = Color3.fromRGB(255, 255, 255)
- Label.TextSize = 17.000
- Label.Text = text
- LabelCorner.CornerRadius = UDim.new(0, 5)
- LabelCorner.Name = "LabelCorner"
- LabelCorner.Parent = Label
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- function labelfunc:Refresh(tochange)
- Label.Text = tochange
- end
- return labelfunc
- end
- function ContainerItems:line()
- local labelfunc = {}
- local Label = Instance.new("TextButton")
- local LabelCorner = Instance.new("UICorner")
- Label.Name = "Label"
- Label.Parent = Container
- Label.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Label.Size = UDim2.new(0, 405, 0, 5)
- Label.AutoButtonColor = false
- Label.Font = Enum.Font.Gotham
- Label.TextColor3 = Color3.fromRGB(255, 255, 255)
- Label.TextSize = 17.000
- Label.Text = ""
- LabelCorner.CornerRadius = UDim.new(0, 5)
- LabelCorner.Name = "LabelCorner"
- LabelCorner.Parent = Label
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- function labelfunc:Refresh(tochange)
- Label.Text = tochange
- end
- return labelfunc
- end
- function ContainerItems:Bind(Title, keybind_options, callback)
- local keybind_data = {}
- local Keybind = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local KeybindFrame = Instance.new("Frame")
- local KeybindFrameCorner = Instance.new("UICorner")
- local TextButton = Instance.new("TextButton")
- local KeybindCorner = Instance.new("UICorner")
- local ContainerLayout = Instance.new("UIListLayout")
- Keybind.Name = "Keybind"
- Keybind.Parent = Container
- Keybind.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Keybind.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
- Keybind.Size = UDim2.new(0, 405, 0, 40)
- Keybind.AutoButtonColor = false
- Keybind.Font = Enum.Font.Gotham
- Keybind.Text = ""
- Keybind.TextColor3 = Color3.fromRGB(255, 255, 255)
- Keybind.TextSize = 14.000
- Title.Name = "Title"
- Title.Parent = Keybind
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
- Title.Size = UDim2.new(0, 405, 0, 40)
- Title.Font = Enum.Font.Gotham
- Title.Text = "Keybind"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 15.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- KeybindFrame.Name = "KeybindFrame"
- KeybindFrame.Parent = Keybind
- KeybindFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
- KeybindFrame.Position = UDim2.new(0.650124013, 0, 0.159999996, 0)
- KeybindFrame.Size = UDim2.new(0, 134, 0, 24)
- KeybindFrameCorner.CornerRadius = UDim.new(0, 6)
- KeybindFrameCorner.Name = "KeybindFrameCorner"
- KeybindFrameCorner.Parent = KeybindFrame
- TextButton.Parent = KeybindFrame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.BackgroundTransparency = 1.000
- TextButton.Size = UDim2.new(0, 134, 0, 23)
- TextButton.Font = Enum.Font.Gotham
- TextButton.Text = "Keybind"
- TextButton.TextColor3 = Color3.fromRGB(178, 178, 178)
- TextButton.TextSize = 15.000
- KeybindCorner.CornerRadius = UDim.new(0, 6)
- KeybindCorner.Name = "KeybindCorner"
- KeybindCorner.Parent = Keybind
- ContainerLayout.Name = "ContainerLayout"
- ContainerLayout.Parent = Container
- ContainerLayout.SortOrder = Enum.SortOrder.LayoutOrder
- ContainerLayout.Padding = UDim.new(0, 15)
- local UIS = game:GetService('UserInputService')
- keybind_name = tostring(keybind_name or "New Keybind")
- callback = typeof(callback) == "function" and callback or function()end
- keybind_options = typeof(keybind_options) == "table" and keybind_options or {}
- keybind_options = {
- ["standard"] = keybind_options.standard or Enum.KeyCode.RightShift,
- }
- callback = typeof(callback) == "function" and callback or function()end
- keybind_options = typeof(keybind_options) == "table" and keybind_options or {}
- keybind_options = {
- ["standard"] = keybind_options.standard or Enum.KeyCode.RightShift,
- }
- local shortkeys = { -- thanks to stroketon for helping me out with this
- RightControl = 'RightCtrl',
- LeftControl = 'LeftCtrl',
- LeftShift = 'LShift',
- RightShift = 'RShift',
- MouseButton1 = "Mouse1",
- MouseButton2 = "Mouse2"
- }
- local checks = {
- binding = false,
- }
- function keybind_data:SetKeybind(Keybind)
- local key = shortkeys[Keybind.Name] or Keybind.Name
- TextButton.Text = key
- keybind = Keybind
- end
- UIS.InputBegan:Connect(function(a, b)
- if checks.binding then
- spawn(function()
- wait()
- checks.binding = false
- end)
- return
- end
- if a.KeyCode == keybind and not b then
- pcall(callback, keybind)
- end
- end)
- keybind_data:SetKeybind(keybind_options.standard)
- TextButton.MouseButton1Click:Connect(function()
- if checks.binding then return end
- TextButton.Text = "..."
- checks.binding = true
- local a, b = UIS.InputBegan:Wait()
- keybind_data:SetKeybind(a.KeyCode)
- end)
- return keybind_data
- end
- function ContainerItems:Textbox(text, disapper, callback)
- local Textbox = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local TextboxFrame = Instance.new("Frame")
- local TextboxFrameCorner = Instance.new("UICorner")
- local TextBox = Instance.new("TextBox")
- local TextboxCorner = Instance.new("UICorner")
- Textbox.Name = "Textbox"
- Textbox.Parent = Container
- Textbox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- Textbox.Position = UDim2.new(-0.747557044, 0, 0.729113936, 0)
- Textbox.Size = UDim2.new(0, 405, 0, 40)
- Textbox.AutoButtonColor = false
- Textbox.Font = Enum.Font.Gotham
- Textbox.Text = ""
- Textbox.TextColor3 = Color3.fromRGB(255, 255, 255)
- Textbox.TextSize = 14.000
- Title.Name = "Title"
- Title.Parent = Textbox
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.Position = UDim2.new(0.0198511165, 0, 0, 0)
- Title.Size = UDim2.new(0, 405, 0, 40)
- Title.Font = Enum.Font.Gotham
- Title.Text = text
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextSize = 15.000
- Title.TextXAlignment = Enum.TextXAlignment.Left
- TextboxFrame.Name = "TextboxFrame"
- TextboxFrame.Parent = Textbox
- TextboxFrame.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
- TextboxFrame.Position = UDim2.new(0.650124013, 0, 0.16, 0)
- TextboxFrame.Size = UDim2.new(0, 134, 0, 24)
- TextboxFrameCorner.CornerRadius = UDim.new(0, 6)
- TextboxFrameCorner.Name = "TextboxFrameCorner"
- TextboxFrameCorner.Parent = TextboxFrame
- TextBox.Parent = TextboxFrame
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.BackgroundTransparency = 1.000
- TextBox.Size = UDim2.new(0, 134, 0, 19)
- TextBox.Font = Enum.Font.Gotham
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.TextSize = 15.000
- TextboxCorner.CornerRadius = UDim.new(0, 6)
- TextboxCorner.Name = "TextboxCorner"
- TextboxCorner.Parent = Textbox
- TextBox.FocusLost:Connect(
- function(ep)
- if ep then
- if #TextBox.Text > 0 then
- pcall(callback, TextBox.Text)
- if disapper then
- TextBox.Text = ""
- end
- end
- end
- end
- )
- Container.CanvasSize = UDim2.new(0, 0, 0, ContainerLayout.AbsoluteContentSize.Y)
- end
- return ContainerItems
- end
- return Tabs
- end
- -- oofhead should stop making jokes
- local Win = VLib:Window("Bacon hub ", "v1")
- local Main = Win:Tab("Stuff")
- local Main= Win:Tab('Main')
- Main:Button("Brookhaven gui",function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/IceMael7/IceHubBrookhaven/main/Brookhaven'))()
- end)
- Main:Button("Moon hub 1.3",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/LwQkm563"))();
- end)
- Main:Button("Moon hub 1.2",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/Gae7YC84"))();
- end)
- Main:Button("Ninja legends gui",function()
- pcall(loadstring(game:HttpGet("https://pastebin.com/raw/2UjrXwTV")))
- end)
- Main:Button("bedwars gui",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/ELCkygpv", true))()
- end)
- Main:Button("bed wars gui",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/ELCkygpv", true))()
- end)
- Main:Button("da hood gui",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/lmmake/LuaThings/main/cockandballs"))()
- end)
- Main:Button("Prison life gui",function()
- -- WILL NOT WORK ON FREE EXPLOITS!
- -- [Made By Jake11price]
- -- Enjoy
- local function SendNotification(title,text,duration,...)
- game.StarterGui:SetCore("SendNotification", {
- Title = title;
- Text = text;
- Icon = "";
- Duration = duration;
- })
- end
- game.Players.ChildAdded:Connect(function(player)
- if not pcall (function()
- SendNotification("Player Joined",""..player.Name.." Has joined the server",2.5 )
- end) then
- print ("Error")
- end
- end)
- game.Players.ChildRemoved:Connect(function(player)
- if not pcall (function()
- SendNotification("Player Left",""..player.Name.." Has rage quit",2.5 )
- end) then
- print ("Error")
- end
- end)
- for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
- if v.Name == "PurchasePromptApp" then
- v:Remove()
- end
- end
- for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
- if v.Name == "PrisonBreakerV1.6" then
- v:Remove()
- end
- end
- local toggle = false
- local PrisonBreakerV16 = Instance.new("ScreenGui")
- local openmain = Instance.new("Frame")
- local open = Instance.new("TextButton")
- local main = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local home = Instance.new("TextButton")
- local guis = Instance.new("TextButton")
- local teams = Instance.new("TextButton")
- local funcs = Instance.new("TextButton")
- local homemain = Instance.new("Frame")
- local title_2 = Instance.new("TextLabel")
- local TextLabel = Instance.new("TextLabel")
- local teamsmain = Instance.new("Frame")
- local cop = Instance.new("TextButton")
- local inmate = Instance.new("TextButton")
- local neutral = Instance.new("TextButton")
- local crim = Instance.new("TextButton")
- local guismain = Instance.new("Frame")
- local prisonbreakerv15 = Instance.new("TextButton")
- local prisondestroyer = Instance.new("TextButton")
- local kickgui = Instance.new("TextButton")
- local scriptsmain = Instance.new("Frame")
- local godmode = Instance.new("TextButton")
- local destroy = Instance.new("TextButton")
- local hitbox = Instance.new("TextButton")
- local antikickmainon = Instance.new("Frame")
- local antikickon = Instance.new("TextButton")
- local antikickmainoff = Instance.new("Frame")
- local antikickoff = Instance.new("TextButton")
- local modguns = Instance.new("TextButton")
- PrisonBreakerV16.Name = "PrisonBreakerV1.6"
- PrisonBreakerV16.Parent = game.CoreGui
- -- All Skids Welcome
- openmain.Name = "openmain"
- openmain.Parent = PrisonBreakerV16
- openmain.BackgroundColor3 = Color3.new(1, 1, 1)
- openmain.Position = UDim2.new(0.0104873544, 0, 0.549140036, 0)
- openmain.Size = UDim2.new(0, 100, 0, 26)
- open.Name = "open"
- open.Parent = openmain
- open.BackgroundColor3 = Color3.new(1, 0, 0.498039)
- open.Position = UDim2.new(0, 0, -0.0299201012, 0)
- open.Size = UDim2.new(0, 100, 0, 26)
- open.Font = Enum.Font.GothamBlack
- open.Text = "OPEN"
- open.TextColor3 = Color3.new(0, 0, 0)
- open.TextSize = 18
- open.TextWrapped = true
- open.MouseButton1Down:connect(function()
- local main = game:GetService("CoreGui")["PrisonBreakerV1.6"].main
- wait(0.01)
- if toggle == false then
- main:TweenPosition(UDim2.new(0.081, 0, 0.3, 0), 'Out', 'Quad', 0.8)
- toggle = true
- else
- main:TweenPosition(UDim2.new(1.5, 0, 0.8, 0), 'Out', 'Quad', 0.8)
- toggle = false
- end
- wait(0.9)
- if main.Position == (UDim2.new(0.081, 0, 0.3, 0)) then
- open.Text = "CLOSE"
- else
- open.Text = "OPEN"
- end
- end)
- main.Name = "main"
- main.Parent = PrisonBreakerV16
- main.BackgroundColor3 = Color3.new(0, 0, 127)
- main.BorderColor3 = Color3.new(0, 0, 127)
- main.BorderSizePixel = 5
- main.Position = UDim2.new(1.5, 0, 0.8, 0)
- main.Size = UDim2.new(0, 465, 0, 341)
- main.Active = true
- main.Draggable = true
- title.Name = "title"
- title.Parent = main
- title.BackgroundColor3 = Color3.new(0, 0, 0)
- title.BorderSizePixel = 2
- title.Position = UDim2.new(0.0064516128, 0, 0.829912007, 0)
- title.Size = UDim2.new(0, 459, 0, 58)
- title.Font = Enum.Font.GothamBold
- title.Text = "PrisonBreaker V1.6 Made By Jake11price"
- title.TextColor3 = Color3.new(1, 0, 0)
- title.TextSize = 15
- home.Name = "home"
- home.Parent = main
- home.BackgroundColor3 = Color3.new(255, 0, 0)
- home.Position = UDim2.new(0.0129032256, 0, 0.0263929628, 0)
- home.Size = UDim2.new(0, 100, 0, 37)
- home.Font = Enum.Font.GothamBlack
- home.Text = "Home"
- home.TextColor3 = Color3.new(0, 0, 0)
- home.TextSize = 25
- function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = home
- function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
- counter = 0
- while wait(0.1)do
- script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
- counter = counter + 0.01
- end
- end
- coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
- home.MouseButton1Down:connect(function()
- teamsmain.Visible = false
- guismain.Visible = false
- scriptsmain.Visible = false
- homemain.Visible = true
- end)
- guis.Name = "guis"
- guis.Parent = main
- guis.BackgroundColor3 = Color3.new(255, 0, 0)
- guis.Position = UDim2.new(0.246848866, 0, 0.0263929628, 0)
- guis.Size = UDim2.new(0, 108, 0, 37)
- guis.Font = Enum.Font.GothamBlack
- guis.Text = "Guis"
- guis.TextColor3 = Color3.new(0, 0, 0)
- guis.TextSize = 25
- function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = guis
- function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
- counter = 0
- while wait(0.1)do
- script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
- counter = counter + 0.01
- end
- end
- coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
- guis.MouseButton1Down:connect(function()
- teamsmain.Visible = false
- scriptsmain.Visible = false
- homemain.Visible = false
- guismain.Visible = true
- end)
- teams.Name = "teams"
- teams.Parent = main
- teams.BackgroundColor3 = Color3.new(255, 0, 0)
- teams.Position = UDim2.new(0.500149369, 0, 0.0263929628, 0)
- teams.Size = UDim2.new(0, 108, 0, 37)
- teams.Font = Enum.Font.GothamBlack
- teams.Text = "Teams"
- teams.TextColor3 = Color3.new(0, 0, 0)
- teams.TextSize = 25
- function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = teams
- function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
- counter = 0
- while wait(0.1)do
- script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
- counter = counter + 0.01
- end
- end
- coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
- teams.MouseButton1Down:connect(function()
- scriptsmain.Visible = false
- homemain.Visible = false
- guismain.Visible = false
- teamsmain.Visible = true
- end)
- funcs.Name = "funcs"
- funcs.Parent = main
- funcs.BackgroundColor3 = Color3.new(255, 0, 0)
- funcs.Position = UDim2.new(0.754838645, 0, 0.0263929628, 0)
- funcs.Size = UDim2.new(0, 108, 0, 37)
- funcs.Font = Enum.Font.GothamBlack
- funcs.Text = "New Scripts"
- funcs.TextColor3 = Color3.new(0, 0, 0)
- funcs.TextSize = 18
- function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
- local script = Instance.new('LocalScript')
- script.Parent = funcs
- function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
- counter = 0
- while wait(0.1)do
- script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
- counter = counter + 0.01
- end
- end
- coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
- funcs.MouseButton1Down:connect(function()
- homemain.Visible = false
- guismain.Visible = false
- teamsmain.Visible = false
- scriptsmain.Visible = true
- end)
- homemain.Name = "homemain"
- homemain.Parent = main
- homemain.BackgroundColor3 = Color3.new(0, 0, 0)
- homemain.Position = UDim2.new(0, 0, 0.178885639, 0)
- homemain.Size = UDim2.new(0, 465, 0, 218)
- title_2.Name = "title"
- title_2.Parent = homemain
- title_2.BackgroundColor3 = Color3.new(0.333333, 1, 0)
- title_2.BorderSizePixel = 0
- title_2.Position = UDim2.new(0.0206066482, 0, 0.0379392318, 0)
- title_2.Size = UDim2.new(0, 445, 0, 87)
- title_2.Font = Enum.Font.GothamBlack
- title_2.Text = "This is my last prison life gui... Enjoy the new scripts!"
- title_2.TextColor3 = Color3.new(0, 0, 0)
- title_2.TextScaled = true
- title_2.TextSize = 14
- title_2.TextWrapped = true
- TextLabel.Parent = homemain
- TextLabel.BackgroundColor3 = Color3.new(0, 1, 0)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.0193548389, 0, 0.486238539, 0)
- TextLabel.Size = UDim2.new(0, 445, 0, 87)
- TextLabel.Font = Enum.Font.GothamBlack
- TextLabel.Text = "Subscribe to my Youtube Channel: Jake11price"
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- teamsmain.Name = "teamsmain"
- teamsmain.Parent = main
- teamsmain.BackgroundColor3 = Color3.new(0, 0, 0)
- teamsmain.BorderSizePixel = 0
- teamsmain.Position = UDim2.new(0, 0, 0.178885639, 0)
- teamsmain.Size = UDim2.new(0, 462, 0, 222)
- teamsmain.Visible = false
- cop.Name = "cop"
- cop.Parent = teamsmain
- cop.BackgroundColor3 = Color3.new(0, 0, 1)
- cop.BorderSizePixel = 1
- cop.Position = UDim2.new(0.0199004635, 0, 0.28773582, 0)
- cop.Size = UDim2.new(0, 89, 0, 70)
- cop.Font = Enum.Font.GothamBlack
- cop.Text = "Guards"
- cop.TextColor3 = Color3.new(0, 0, 0)
- cop.TextSize = 18
- cop.TextWrapped = true
- cop.MouseButton1Down:connect(function()
- workspace.Remote.TeamEvent:FireServer("Bright blue")
- end)
- inmate.Name = "inmate"
- inmate.Parent = teamsmain
- inmate.BackgroundColor3 = Color3.new(1, 0.666667, 0)
- inmate.BorderSizePixel = 1
- inmate.Position = UDim2.new(0.278606981, 0, 0.28773585, 0)
- inmate.Size = UDim2.new(0, 89, 0, 70)
- inmate.Font = Enum.Font.GothamBlack
- inmate.Text = "Inmates"
- inmate.TextColor3 = Color3.new(0, 0, 0)
- inmate.TextSize = 18
- inmate.MouseButton1Down:connect(function()
- workspace.Remote.TeamEvent:FireServer("Bright orange")
- end)
- neutral.Name = "neutral"
- neutral.Parent = teamsmain
- neutral.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
- neutral.BorderSizePixel = 1
- neutral.Position = UDim2.new(0.524875581, 0, 0.28773585, 0)
- neutral.Size = UDim2.new(0, 89, 0, 70)
- neutral.Font = Enum.Font.GothamBlack
- neutral.Text = "Neutral"
- neutral.TextColor3 = Color3.new(0, 0, 0)
- neutral.TextSize = 18
- neutral.MouseButton1Down:connect(function()
- Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
- end)
- crim.Name = "crim"
- crim.Parent = teamsmain
- crim.BackgroundColor3 = Color3.new(1, 0, 0)
- crim.BorderSizePixel = 1
- crim.Position = UDim2.new(0.768656731, 0, 0.28773585, 0)
- crim.Size = UDim2.new(0, 89, 0, 70)
- crim.Font = Enum.Font.GothamBlack
- crim.Text = "Criminals"
- crim.TextColor3 = Color3.new(0, 0, 0)
- crim.TextSize = 18
- crim.MouseButton1Down:connect(function()
- local Crim = Instance.new("Part")
- Crim.Name = "plr"
- Crim.Parent = workspace
- Crim.Anchored = true
- Crim.Archivable = true
- Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
- Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
- wait(0.1)
- Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- Crim.Transparency = 1
- Crim.Anchored = true
- Crim.CanCollide = false
- lol = true
- Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
- Bruh.CanCollide = false
- Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
- Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- Bruh.Transparency = 1
- wait(0.1)
- lol = false
- wait(0.04)
- if lol == false then
- Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- Bruh.Size = Vector3.new(6, 0.2, 6)
- Bruh.Transparency = 0
- lol = false
- end
- end)
- guismain.Name = "guismain"
- guismain.Parent = main
- guismain.BackgroundColor3 = Color3.new(1, 0.45098, 0)
- guismain.BorderSizePixel = 0
- guismain.Position = UDim2.new(0, 0, 0.178885639, 0)
- guismain.Size = UDim2.new(0, 462, 0, 222)
- guismain.Visible = false
- prisonbreakerv15.Name = "prisonbreakerv1.5"
- prisonbreakerv15.Parent = guismain
- prisonbreakerv15.BackgroundColor3 = Color3.new(0, 0, 0)
- prisonbreakerv15.Position = UDim2.new(0.0273631848, 0, 0.0566037744, 0)
- prisonbreakerv15.Size = UDim2.new(0, 109, 0, 50)
- prisonbreakerv15.Font = Enum.Font.GothamBlack
- prisonbreakerv15.Text = "PrisonBreaker V1.5"
- prisonbreakerv15.TextColor3 = Color3.new(0, 1, 0)
- prisonbreakerv15.TextScaled = true
- prisonbreakerv15.TextSize = 14
- prisonbreakerv15.TextWrapped = true
- prisonbreakerv15.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/HpCpt9rt",true))()
- end)
- prisondestroyer.Name = "prisondestroyer"
- prisondestroyer.Parent = guismain
- prisondestroyer.BackgroundColor3 = Color3.new(0, 0, 0)
- prisondestroyer.Position = UDim2.new(0.363184065, 0, 0.0566037744, 0)
- prisondestroyer.Size = UDim2.new(0, 109, 0, 50)
- prisondestroyer.Font = Enum.Font.GothamBlack
- prisondestroyer.Text = "PrisonDestroyer"
- prisondestroyer.TextColor3 = Color3.new(0, 1, 0)
- prisondestroyer.TextScaled = true
- prisondestroyer.TextSize = 14
- prisondestroyer.TextWrapped = true
- prisondestroyer.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/nu20tAZE",true))()
- end)
- kickgui.Name = "kickgui"
- kickgui.Parent = guismain
- kickgui.BackgroundColor3 = Color3.new(0, 0, 0)
- kickgui.Position = UDim2.new(0.701492548, 0, 0.0566037744, 0)
- kickgui.Size = UDim2.new(0, 109, 0, 50)
- kickgui.Font = Enum.Font.GothamBlack
- kickgui.Text = "Kick Gui"
- kickgui.TextColor3 = Color3.new(0, 1, 0)
- kickgui.TextSize = 18
- kickgui.TextWrapped = true
- kickgui.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/AncyYd8Q", true))()
- end)
- scriptsmain.Name = "scriptsmain"
- scriptsmain.Parent = main
- scriptsmain.BackgroundColor3 = Color3.new(1, 0.45098, 0)
- scriptsmain.BorderSizePixel = 0
- scriptsmain.Position = UDim2.new(0, 0, 0.178885639, 0)
- scriptsmain.Size = UDim2.new(0, 462, 0, 222)
- scriptsmain.Visible = false
- godmode.Name = "godmode"
- godmode.Parent = scriptsmain
- godmode.BackgroundColor3 = Color3.new(0, 0, 0)
- godmode.Position = UDim2.new(0.12686567, 0, 0.061611373, 0)
- godmode.Size = UDim2.new(0, 126, 0, 44)
- godmode.Font = Enum.Font.GothamBlack
- godmode.Text = "Godmode (SWAT ONLY)"
- godmode.TextColor3 = Color3.new(0, 1, 0)
- godmode.TextScaled = true
- godmode.TextSize = 14
- godmode.TextWrapped = true
- godmode.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.HealthChanged:Connect(function(health)
- if health < game.Players.LocalPlayer.Character.Humanoid.MaxHealth then
- workspace.Remote.TeamEvent:FireServer("Bright blue")
- workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.clothes["Riot Police"].ITEMPICKUP)
- workspace.Remote.TeamEvent:FireServer("Bright orange")
- end
- end)
- end)
- destroy.Name = "destroy"
- destroy.Parent = scriptsmain
- destroy.BackgroundColor3 = Color3.new(0, 0, 0)
- destroy.Position = UDim2.new(0.559701502, 0, 0.061611373, 0)
- destroy.Size = UDim2.new(0, 126, 0, 44)
- destroy.Font = Enum.Font.GothamBlack
- destroy.Text = "CRASH OTHERS!"
- destroy.TextColor3 = Color3.new(0, 1, 0)
- destroy.TextScaled = true
- destroy.TextSize = 14
- destroy.TextWrapped = true
- destroy.MouseButton1Down:connect(function()
- game:GetService("StarterGui"):SetCore("SendNotification", {
- Title = "Destroying Server...";
- Text = "Please wait up to 30 seconds!!";
- })
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.909851, 129.489944, 2328.6958)
- wait(0.5)
- local client = game:GetService("Players").LocalPlayer
- for _, child in next, client.Backpack:GetChildren() do
- if child:IsA("Tool") then
- client.Character.Humanoid:UnequipTools()
- end
- end
- local Crim = Instance.new("Part")
- Crim.Name = "plr"
- Crim.Parent = workspace
- Crim.Anchored = true
- Crim.Archivable = true
- Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
- Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
- wait(0.1)
- Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- Crim.Transparency = 1
- Crim.Anchored = true
- Crim.CanCollide = false
- lol = true
- Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
- Bruh.CanCollide = false
- Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
- Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- Bruh.Transparency = 1
- wait(0.1)
- lol = false
- wait(0.04)
- if lol == false then
- Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- Bruh.Size = Vector3.new(6, 0.2, 6)
- Bruh.Transparency = 0
- lol = false
- end
- game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
- wait(0.1)
- local tbl_main =
- {
- "CRASHING SERVER!! Script made by jake11price.",
- "All"
- }
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(tbl_main))
- wait(0.5)
- game:GetService("StarterGui"):SetCore("SendNotification", {
- Title = "Warning!!";
- Text = "DO NOT EQUIP THE REMINGTON 870 UNTIL YOU TURN BACK INTO AN INMATE!!";
- })
- for i,v in pairs(game:GetService("Players"):GetChildren()) do
- for i=1,650 do
- local tbl_36BA2890 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.812744, 31.2091656, 121.524826)),
- ["Distance"] = 61.344123840332,
- ["Cframe"] = CFrame.new(809.089844, 101.766418, 2219.49268, 0.363455683, 0.0792314336, -0.928236127, -1.86264515e-09, 0.996376872, 0.0850477219, 0.931611478, -0.0309110768, 0.362138808),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B5BF78 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.036713, 35.5271149, 122.755898)),
- ["Distance"] = 61.299308776855,
- ["Cframe"] = CFrame.new(809.180542, 102.100838, 2219.57886, 0.366918802, 0.0893238857, -0.92595464, 0, 0.995379448, 0.0960210636, 0.930253029, -0.035231933, 0.365223378),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B585E8 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.921326, 20.3493805, 123.473427)),
- ["Distance"] = 61.141574859619,
- ["Cframe"] = CFrame.new(809.180542, 100.912926, 2219.61255, 0.36787042, 0.0533849634, -0.928343356, 0, 0.99835068, 0.0574107729, 0.929877102, -0.021119725, 0.367263645),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B5CC38 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-371.464417, 33.5804787, 144.521744)),
- ["Distance"] = 63.866916656494,
- ["Cframe"] = CFrame.new(808.680542, 102.047562, 2221.70142, 0.418726623, 0.0821772888, -0.90438652, 0, 0.995897233, 0.0904924273, 0.908112347, -0.0378915891, 0.417008668),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B5BB28 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-376.177948, 24.8940163, 133.680374)),
- ["Distance"] = 62.931880950928,
- ["Cframe"] = CFrame.new(808.680542, 101.319054, 2220.68823, 0.391926825, 0.0631896704, -0.917823792, 0, 0.997638524, 0.0686846897, 0.91999644, -0.0269193724, 0.391001284),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B58A98 =
- {
- tbl_36B5BB28,
- tbl_36B5CC38,
- tbl_36B585E8,
- tbl_36B5BF78,
- tbl_36BA2890
- }
- local tbl_main =
- {
- tbl_36B58A98,
- game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
- }
- game:GetService("ReplicatedStorage").ShootEvent:FireServer(unpack(tbl_main))
- local tbl_36BA2890 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.812744, 31.2091656, 121.524826)),
- ["Distance"] = 61.344123840332,
- ["Cframe"] = CFrame.new(809.089844, 101.766418, 2219.49268, 0.363455683, 0.0792314336, -0.928236127, -1.86264515e-09, 0.996376872, 0.0850477219, 0.931611478, -0.0309110768, 0.362138808),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B5BF78 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.036713, 35.5271149, 122.755898)),
- ["Distance"] = 61.299308776855,
- ["Cframe"] = CFrame.new(809.180542, 102.100838, 2219.57886, 0.366918802, 0.0893238857, -0.92595464, 0, 0.995379448, 0.0960210636, 0.930253029, -0.035231933, 0.365223378),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B585E8 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.921326, 20.3493805, 123.473427)),
- ["Distance"] = 61.141574859619,
- ["Cframe"] = CFrame.new(809.180542, 100.912926, 2219.61255, 0.36787042, 0.0533849634, -0.928343356, 0, 0.99835068, 0.0574107729, 0.929877102, -0.021119725, 0.367263645),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B5CC38 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-371.464417, 33.5804787, 144.521744)),
- ["Distance"] = 63.866916656494,
- ["Cframe"] = CFrame.new(808.680542, 102.047562, 2221.70142, 0.418726623, 0.0821772888, -0.90438652, 0, 0.995897233, 0.0904924273, 0.908112347, -0.0378915891, 0.417008668),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B5BB28 =
- {
- ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-376.177948, 24.8940163, 133.680374)),
- ["Distance"] = 62.931880950928,
- ["Cframe"] = CFrame.new(808.680542, 101.319054, 2220.68823, 0.391926825, 0.0631896704, -0.917823792, 0, 0.997638524, 0.0686846897, 0.91999644, -0.0269193724, 0.391001284),
- ["Hit"] = v.Character.Head
- }
- local tbl_36B58A98 =
- {
- tbl_36B5BB28,
- tbl_36B5CC38,
- tbl_36B585E8,
- tbl_36B5BF78,
- tbl_36BA2890
- }
- local tbl_main =
- {
- tbl_36B58A98,
- game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
- }
- game:GetService("ReplicatedStorage").ShootEvent:FireServer(unpack(tbl_main))
- end
- end
- workspace.Remote.TeamEvent:FireServer("Bright orange")
- end)
- hitbox.Name = "hitbox"
- hitbox.Parent = scriptsmain
- hitbox.BackgroundColor3 = Color3.new(0, 0, 0)
- hitbox.Position = UDim2.new(0.12686567, 0, 0.379146874, 0)
- hitbox.Size = UDim2.new(0, 126, 0, 50)
- hitbox.Font = Enum.Font.GothamBlack
- hitbox.Text = "Guard Hitbox Expander"
- hitbox.TextColor3 = Color3.new(0, 1, 0)
- hitbox.TextScaled = true
- hitbox.TextSize = 14
- hitbox.TextWrapped = true
- hitbox.MouseButton1Down:connect(function()
- _G.HeadSize = 10
- _G.Disabled = true
- _G.Reset = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.7
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- if _G.Reset then
- if v.Character.Humanoid.Health == 0 then
- v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
- end
- end
- end
- end
- end
- end)
- end)
- antikickmainon.Name = "antikickmainon"
- antikickmainon.Parent = scriptsmain
- antikickmainon.BackgroundColor3 = Color3.new(1, 1, 1)
- antikickmainon.Position = UDim2.new(0.559701502, 0, 0.379146934, 0)
- antikickmainon.Size = UDim2.new(0, 126, 0, 50)
- antikickmainon.Visible = false
- antikickon.Name = "antikickon"
- antikickon.Parent = antikickmainon
- antikickon.BackgroundColor3 = Color3.new(0, 1, 0)
- antikickon.Size = UDim2.new(0, 126, 0, 50)
- antikickon.Font = Enum.Font.GothamBlack
- antikickon.Text = "CrimAura (On)"
- antikickon.TextColor3 = Color3.new(0, 0, 0)
- antikickon.TextSize = 14
- antikickon.MouseButton1Down:connect(function()
- antikickmainon.Visible = false
- antikickmainoff.Visible = true
- _G.Crim = false
- end)
- antikickmainoff.Name = "antikickmainoff"
- antikickmainoff.Parent = scriptsmain
- antikickmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
- antikickmainoff.Position = UDim2.new(0.559701562, 0, 0.379146814, 0)
- antikickmainoff.Size = UDim2.new(0, 126, 0, 50)
- antikickoff.Name = "antikickoff"
- antikickoff.Parent = antikickmainoff
- antikickoff.BackgroundColor3 = Color3.new(1, 0, 0)
- antikickoff.Size = UDim2.new(0, 126, 0, 50)
- antikickoff.Font = Enum.Font.GothamBlack
- antikickoff.Text = "CrimAura (Off)"
- antikickoff.TextColor3 = Color3.new(0, 0, 0)
- antikickoff.TextSize = 14
- antikickoff.TextWrapped = true
- antikickoff.MouseButton1Down:connect(function()
- antikickmainoff.Visible = false
- antikickmainon.Visible = true
- wait(0.6)
- _G.Crim = true
- while _G.Crim == true do wait() do
- for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
- for o,l in pairs(game.Teams["Inmates"]:GetPlayers()) do
- local tbl_main =
- {
- game:GetService("Workspace")["Prison_ITEMS"].single["Crude Knife"].ITEMPICKUP
- }
- game:GetService("Workspace").Remote.ItemHandler:InvokeServer(unpack(tbl_main))
- wait(0.00001)
- for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
- for o,l in pairs(game.Teams["Inmates"]:GetPlayers()) do
- if v.Name ~= game.Players.LocalPlayer.Name then
- if l.Name ~= game.Players.LocalPlayer.Name then
- local tbl_main =
- {
- v,
- game:GetService("Players").LocalPlayer.Backpack["Crude Knife"]
- }
- game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
- local tbl_main =
- {
- l,
- game:GetService("Players").LocalPlayer.Backpack["Crude Knife"]
- }
- game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
- local Crim = Instance.new("Part")
- Crim.Name = "plr"
- Crim.Parent = workspace
- Crim.Anchored = true
- Crim.Archivable = true
- Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
- Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
- Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- Crim.Transparency = 1
- Crim.Anchored = true
- Crim.CanCollide = false
- lol = true
- Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
- Bruh.CanCollide = false
- Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
- Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- Bruh.Transparency = 1
- wait(0.001)
- lol = false
- if lol == false then
- Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
- Bruh.Size = Vector3.new(6, 0.2, 6)
- Bruh.Transparency = 0
- lol = false
- end
- end
- end
- end
- end
- end
- end
- end
- end
- end)
- modguns.Name = "modguns"
- modguns.Parent = scriptsmain
- modguns.BackgroundColor3 = Color3.new(0, 0, 0)
- modguns.Position = UDim2.new(0.137171283, 0, 0.706161141, 0)
- modguns.Size = UDim2.new(0, 329, 0, 50)
- modguns.Font = Enum.Font.GothamBlack
- modguns.Text = "Mod All Guns"
- modguns.TextColor3 = Color3.new(0, 1, 0)
- modguns.TextSize = 30
- modguns.TextWrapped = true
- modguns.MouseButton1Down:connect(function()
- for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
- lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
- print(lol)
- end
- local client = game:GetService("Players").LocalPlayer
- for _, child in next, client.Backpack:GetChildren() do
- if child:IsA("Tool") then
- client.Character.Humanoid:UnequipTools()
- end
- end
- local reg = (getreg or debug.getregistry)
- local get = (debug.getupvalues or secret953)
- local client = game:GetService("Players").LocalPlayer
- local render = game:GetService('RunService').RenderStepped
- local function fakeStats()
- function change(t)
- local myStats = {
- ReloadTime = 0,
- FireRate = 0,
- AutoFire = true,
- StoredAmmo = math.huge,
- MaxAmmo = math.huge,
- CurrentAmmo = math.huge,
- }
- for name, fake in next, myStats do
- t[name] = fake
- end
- end
- for k, v in next, reg() do
- if type(v) == "function" then
- local upvals = get(v)
- if upvals and upvals.GunStates then
- change(upvals.GunStates)
- end
- end
- end
- end
- client.Backpack.ChildAdded:connect(function(child)
- if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
- client.Character.Humanoid:EquipTool(child)
- render:wait()
- fakeStats()
- render:wait()
- client.Character.Humanoid:UnequipTools()
- end
- end)
- for _, child in next, client.Backpack:GetChildren() do
- if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
- client.Character.Humanoid:EquipTool(child)
- render:wait()
- fakeStats()
- render:wait()
- client.Character.Humanoid:UnequipTools()
- end
- end
- end)
- for i,v in pairs(game:GetService("Workspace")["Prison_Halls"]:GetChildren()) do
- if v.Name ~= ("floor") then
- if v.Name ~= ("lights") then
- v:Remove()
- end
- end
- end
- for i,v in pairs(game:GetService("Workspace")["Prison_Guard_Outpost"]:GetChildren()) do
- if v.Name ~= ("floor") then
- if v.Name ~= ("lights") then
- v:Remove()
- end
- end
- end
- for i,v in pairs(game:GetService("Workspace")["Prison_Cafeteria"]:GetChildren()) do
- if v.Name ~= ("floor") then
- if v.Name ~= ("lights") then
- v:Remove()
- end
- end
- end
- for i,v in pairs(game:GetService("Workspace")["Prison_Fences"]:GetChildren()) do
- v:Remove()
- end
- for i,v in pairs(game:GetService("Workspace")["Prison_OuterWall"]:GetChildren()) do
- v:Remove()
- end
- for i,v in pairs(game:GetService("Workspace")["Doors"]:GetChildren()) do
- v:Remove()
- end
- for i,v in pairs(game:GetService("Workspace")["Prison_Administration"]:GetChildren()) do
- if v.Name ~= ("light_floor1") then
- if v.Name ~= ("light_floor2") then
- v:Remove()
- end
- end
- end
- for i,v in pairs(game:GetService("Workspace")["Prison_Cellblock"]:GetChildren()) do
- if v.Name ~= ("c_floor") then
- if v.Name ~= ("a_lights") then
- if v.Name ~= ("b_lights") then
- if v.Name ~= ("c_lights") then
- v:Remove()
- end
- end
- end
- end
- end
- wait(0.1)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.909851, 129.489944, 2328.6958)
- wait(1)
- print("Successfully Loaded PrisonBreaker V1.6")
- game:GetService("StarterGui"):SetCore("SendNotification", {
- Title = "PrisonBreaker V1.6 Loaded";
- Text = "Enjoy destroying the game ;)";
- })
- end)
- Main:Button("Prison life v2",function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/XTheMasterX/Scripts/Main/PrisonLife'),true))()
- end)
- local Hub= Win:Tab('Hub')
- Hub:Button("Seek hub",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/U0Hzycrm"))()
- end)
- Hub:Button("Kzs hub 1.5",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/KZSHUB/KZS-HUB/main/KZSHUBV1.5", true))()
- end)
- Hub:Button("Psy hub",function()
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local GUI = Instance.new("ScreenGui")
- local OpenFrame = Instance.new("Frame")
- local OpenButton = Instance.new("TextButton")
- local OpenBeautyFrame = Instance.new("Frame")
- local MainFrame = Instance.new("Frame")
- local MainFrameBeautyA = Instance.new("Frame")
- local CloseButton = Instance.new("TextButton")
- local EXPLOIT1 = Instance.new("TextButton")
- local MainFrameCenterBeautyA = Instance.new("Frame")
- local MainFrameCenterBeautyA_2 = Instance.new("Frame")
- local EXPLOIT5 = Instance.new("TextButton")
- local EXPLOIT9 = Instance.new("TextButton")
- local EXPLOIT6 = Instance.new("TextButton")
- local EXPLOIT7 = Instance.new("TextButton")
- local EXPLOIT8 = Instance.new("TextButton")
- local EXPLOIT10 = Instance.new("TextButton")
- local EXPLOIT11 = Instance.new("TextButton")
- local EXPLOIT12 = Instance.new("TextButton")
- local EXPLOIT2 = Instance.new("TextButton")
- local EXPLOIT3 = Instance.new("TextButton")
- local EXPLOIT4 = Instance.new("TextButton")
- local MainFrameBeautyB = Instance.new("Frame")
- --Properties:
- GUI.Name = "GUI"
- GUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- OpenFrame.Name = "OpenFrame"
- OpenFrame.Parent = GUI
- OpenFrame.Active = true
- OpenFrame.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- OpenFrame.BorderSizePixel = 0
- OpenFrame.Position = UDim2.new(0, 0, 0.629155695, 0)
- OpenFrame.Size = UDim2.new(0, 72, 0, 27)
- OpenButton.Name = "OpenButton"
- OpenButton.Parent = OpenFrame
- OpenButton.BackgroundColor3 = Color3.fromRGB(170, 170, 127)
- OpenButton.BackgroundTransparency = 1.000
- OpenButton.BorderSizePixel = 0
- OpenButton.Position = UDim2.new(0.0305736773, 0, 0.116329789, 0)
- OpenButton.Size = UDim2.new(0, 66, 0, 20)
- OpenButton.Font = Enum.Font.Cartoon
- OpenButton.Text = "Open"
- OpenButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- OpenButton.TextScaled = true
- OpenButton.TextSize = 14.000
- OpenButton.TextWrapped = true
- OpenButton.MouseButton1Down:connect(function()
- MainFrame.Visible = true
- OpenFrame.Visible = false
- MainFrameBeautyA.Visible = true
- MainFrameBeautyB.Visible = true
- MainFrameCenterBeautyA_2.Visible = true
- MainFrameCenterBeautyA.Visible = true
- end)
- OpenBeautyFrame.Name = "OpenBeautyFrame"
- OpenBeautyFrame.Parent = OpenFrame
- OpenBeautyFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- OpenBeautyFrame.BorderSizePixel = 0
- OpenBeautyFrame.Position = UDim2.new(0.988907099, 0, -0.148148149, 0)
- OpenBeautyFrame.Size = UDim2.new(0, 3, 0, 33)
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = GUI
- MainFrame.Active = true
- MainFrame.BackgroundColor3 = Color3.fromRGB(49, 49, 49)
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(0.30754894, 0, 0.235294133, 0)
- MainFrame.Size = UDim2.new(0, 412, 0, 263)
- MainFrame.Visible = false
- MainFrame.Draggable = true
- MainFrameBeautyA.Name = "MainFrameBeautyA"
- MainFrameBeautyA.Parent = MainFrame
- MainFrameBeautyA.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- MainFrameBeautyA.BorderSizePixel = 0
- MainFrameBeautyA.Size = UDim2.new(0, 412, 0, 22)
- MainFrameBeautyA.Visible = false
- CloseButton.Name = "CloseButton"
- CloseButton.Parent = MainFrameBeautyA
- CloseButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- CloseButton.BackgroundTransparency = 1.000
- CloseButton.BorderSizePixel = 0
- CloseButton.Position = UDim2.new(0.905339777, 0, 0, 0)
- CloseButton.Size = UDim2.new(0, 39, 0, 22)
- CloseButton.Font = Enum.Font.Cartoon
- CloseButton.Text = "Close"
- CloseButton.TextColor3 = Color3.fromRGB(255, 0, 0)
- CloseButton.TextScaled = true
- CloseButton.TextSize = 14.000
- CloseButton.TextWrapped = true
- CloseButton.MouseButton1Down:connect(function()
- OpenFrame.Visible = true
- MainFrame.Visible = false
- MainFrameBeautyA.Visible = false
- MainFrameBeautyB.Visible = false
- MainFrameCenterBeautyA_2.Visible = false
- MainFrameCenterBeautyA.Visible = false
- end)
- EXPLOIT1.Name = "EXPLOIT1"
- EXPLOIT1.Parent = MainFrame
- EXPLOIT1.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT1.BorderSizePixel = 0
- EXPLOIT1.Position = UDim2.new(0.024271844, 0, 0.129277572, 0)
- EXPLOIT1.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT1.Font = Enum.Font.Cartoon
- EXPLOIT1.Text = "My Other GUI"
- EXPLOIT1.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT1.TextScaled = true
- EXPLOIT1.TextSize = 14.000
- EXPLOIT1.TextWrapped = true
- EXPLOIT1.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/HCsqYzwa'),true))()
- end)
- MainFrameCenterBeautyA.Name = "MainFrameCenterBeautyA"
- MainFrameCenterBeautyA.Parent = MainFrame
- MainFrameCenterBeautyA.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- MainFrameCenterBeautyA.BorderSizePixel = 0
- MainFrameCenterBeautyA.Position = UDim2.new(0.288834959, 0, 0.129277572, 0)
- MainFrameCenterBeautyA.Size = UDim2.new(0, 8, 0, 185)
- MainFrameCenterBeautyA.Visible = false
- MainFrameCenterBeautyA_2.Name = "MainFrameCenterBeautyA"
- MainFrameCenterBeautyA_2.Parent = MainFrame
- MainFrameCenterBeautyA_2.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- MainFrameCenterBeautyA_2.BorderSizePixel = 0
- MainFrameCenterBeautyA_2.Position = UDim2.new(0.699029148, 0, 0.129277557, 0)
- MainFrameCenterBeautyA_2.Size = UDim2.new(0, 8, 0, 185)
- MainFrameCenterBeautyA_2.Visible = false
- EXPLOIT5.Name = "EXPLOIT5"
- EXPLOIT5.Parent = MainFrame
- EXPLOIT5.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT5.BorderSizePixel = 0
- EXPLOIT5.Position = UDim2.new(0.388349503, 0, 0.129277572, 0)
- EXPLOIT5.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT5.Font = Enum.Font.Cartoon
- EXPLOIT5.Text = "JailTabs"
- EXPLOIT5.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT5.TextScaled = true
- EXPLOIT5.TextSize = 14.000
- EXPLOIT5.TextWrapped = true
- EXPLOIT5.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/aV6LcSGf'),true))()
- end)
- EXPLOIT9.Name = "EXPLOIT9"
- EXPLOIT9.Parent = MainFrame
- EXPLOIT9.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT9.BorderSizePixel = 0
- EXPLOIT9.Position = UDim2.new(0.75242722, 0, 0.129277572, 0)
- EXPLOIT9.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT9.Font = Enum.Font.Cartoon
- EXPLOIT9.Text = "Counter Pepsi"
- EXPLOIT9.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT9.TextScaled = true
- EXPLOIT9.TextSize = 14.000
- EXPLOIT9.TextWrapped = true
- EXPLOIT9.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/cWTJj3aZ'),true))()
- end)
- EXPLOIT6.Name = "EXPLOIT6"
- EXPLOIT6.Parent = MainFrame
- EXPLOIT6.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT6.BorderSizePixel = 0
- EXPLOIT6.Position = UDim2.new(0.388349503, 0, 0.323193908, 0)
- EXPLOIT6.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT6.Font = Enum.Font.Cartoon
- EXPLOIT6.Text = "PsyHub"
- EXPLOIT6.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT6.TextScaled = true
- EXPLOIT6.TextSize = 14.000
- EXPLOIT6.TextWrapped = true
- EXPLOIT6.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://3014051754")[1].Source)()
- end)
- EXPLOIT7.Name = "EXPLOIT7"
- EXPLOIT7.Parent = MainFrame
- EXPLOIT7.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT7.BorderSizePixel = 0
- EXPLOIT7.Position = UDim2.new(0.388349503, 0, 0.520912528, 0)
- EXPLOIT7.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT7.Font = Enum.Font.Cartoon
- EXPLOIT7.Text = "IY FE"
- EXPLOIT7.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT7.TextScaled = true
- EXPLOIT7.TextSize = 14.000
- EXPLOIT7.TextWrapped = true
- EXPLOIT7.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
- end)
- EXPLOIT8.Name = "EXPLOIT8"
- EXPLOIT8.Parent = MainFrame
- EXPLOIT8.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT8.BorderSizePixel = 0
- EXPLOIT8.Position = UDim2.new(0.388349503, 0, 0.711026609, 0)
- EXPLOIT8.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT8.Font = Enum.Font.Cartoon
- EXPLOIT8.Text = "Arsenal Kill All"
- EXPLOIT8.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT8.TextScaled = true
- EXPLOIT8.TextSize = 14.000
- EXPLOIT8.TextWrapped = true
- EXPLOIT8.MouseButton1Down:connect(function()
- print("Script made by FramzDev#8283")
- local c = workspace.CurrentCamera
- local lplr = game.Players.LocalPlayer
- function a(p)
- if p and p.Character then
- pcall(function()
- local t = p.Character.PrimaryPart.CFrame * Vector3.new(0, -0.25, 0)
- c.CFrame = CFrame.new(c.Focus.p, t) * CFrame.new(0, 0, 0.5)
- end)
- end
- end
- for i=1,10 do
- for _,v in pairs(game.Players:GetPlayers()) do
- pcall(function()
- for i=1,15 do
- lplr.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame - v.Character.HumanoidRootPart.CFrame.LookVector*4
- a(v)
- wait()
- end
- end)
- end
- end
- end)
- EXPLOIT10.Name = "EXPLOIT10"
- EXPLOIT10.Parent = MainFrame
- EXPLOIT10.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT10.BorderSizePixel = 0
- EXPLOIT10.Position = UDim2.new(0.75242722, 0, 0.323193908, 0)
- EXPLOIT10.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT10.Font = Enum.Font.Cartoon
- EXPLOIT10.Text = "Reviz Admin"
- EXPLOIT10.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT10.TextScaled = true
- EXPLOIT10.TextSize = 14.000
- EXPLOIT10.TextWrapped = true
- EXPLOIT10.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/KNUzQPYS'),true))()
- end)
- EXPLOIT11.Name = "EXPLOIT11"
- EXPLOIT11.Parent = MainFrame
- EXPLOIT11.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT11.BorderSizePixel = 0
- EXPLOIT11.Position = UDim2.new(0.75242722, 0, 0.520912528, 0)
- EXPLOIT11.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT11.Font = Enum.Font.Cartoon
- EXPLOIT11.Text = "FE GUI"
- EXPLOIT11.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT11.TextScaled = true
- EXPLOIT11.TextSize = 14.000
- EXPLOIT11.TextWrapped = true
- EXPLOIT11.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/yQaWHmZA'),true))()
- end)
- EXPLOIT12.Name = "EXPLOIT12"
- EXPLOIT12.Parent = MainFrame
- EXPLOIT12.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT12.BorderSizePixel = 0
- EXPLOIT12.Position = UDim2.new(0.75242722, 0, 0.711026609, 0)
- EXPLOIT12.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT12.Font = Enum.Font.Cartoon
- EXPLOIT12.Text = "FE Troll Animations"
- EXPLOIT12.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT12.TextScaled = true
- EXPLOIT12.TextSize = 14.000
- EXPLOIT12.TextWrapped = true
- EXPLOIT12.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/35ze0RJb'),true))()
- end)
- EXPLOIT2.Name = "EXPLOIT2"
- EXPLOIT2.Parent = MainFrame
- EXPLOIT2.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT2.BorderSizePixel = 0
- EXPLOIT2.Position = UDim2.new(0.024271844, 0, 0.323193908, 0)
- EXPLOIT2.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT2.Font = Enum.Font.Cartoon
- EXPLOIT2.Text = "Fe Invis Kill"
- EXPLOIT2.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT2.TextScaled = true
- EXPLOIT2.TextSize = 14.000
- EXPLOIT2.TextWrapped = true
- EXPLOIT2.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/Lpn5rUDp'),true))()
- end)
- EXPLOIT3.Name = "EXPLOIT3"
- EXPLOIT3.Parent = MainFrame
- EXPLOIT3.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT3.BorderSizePixel = 0
- EXPLOIT3.Position = UDim2.new(0.024271844, 0, 0.520912528, 0)
- EXPLOIT3.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT3.Font = Enum.Font.Cartoon
- EXPLOIT3.Text = "Vybe CMD Bar"
- EXPLOIT3.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT3.TextScaled = true
- EXPLOIT3.TextSize = 14.000
- EXPLOIT3.TextWrapped = true
- EXPLOIT3.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(('https://pastebin.com/raw/NN5P4nQE'),true))()
- end)
- EXPLOIT4.Name = "EXPLOIT4"
- EXPLOIT4.Parent = MainFrame
- EXPLOIT4.BackgroundColor3 = Color3.fromRGB(68, 68, 68)
- EXPLOIT4.BorderSizePixel = 0
- EXPLOIT4.Position = UDim2.new(0.024271844, 0, 0.711026609, 0)
- EXPLOIT4.Size = UDim2.new(0, 92, 0, 32)
- EXPLOIT4.Font = Enum.Font.Cartoon
- EXPLOIT4.Text = "JB Autorob"
- EXPLOIT4.TextColor3 = Color3.fromRGB(255, 255, 255)
- EXPLOIT4.TextScaled = true
- EXPLOIT4.TextSize = 14.000
- EXPLOIT4.TextWrapped = true
- EXPLOIT4.MouseButton1Down:connect(function()
- loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
- end)
- MainFrameBeautyB.Name = "MainFrameBeautyB"
- MainFrameBeautyB.Parent = MainFrame
- MainFrameBeautyB.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- MainFrameBeautyB.BorderSizePixel = 0
- MainFrameBeautyB.Position = UDim2.new(0, 0, 0.916349828, 0)
- MainFrameBeautyB.Size = UDim2.new(0, 412, 0, 22)
- MainFrameBeautyB.Visible = false
- end)
- Hub:Button("Haven hub",function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/moonthecoder/havenhub4.2/main/havenhub4.2.lua'))()
- end)
- Hub:Button("Remx hub",function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/Henry887/RemX-Script-Hub/main/main.lua'),true))()
- end)
- local Creator = Win:Tab('Creator')
- Creator:Label("Channel:sheeshgamer1017")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement