Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Random script hub made by @Topuzzzz on youtube, dont forget to subscribe to me :D
- -- Big Credits to 123XxXMegaProXxX123!
- wait(2)
- -- Goto line 786 and start building your own GUI!
- -- Properties:
- title = "The Twizzy Hub"
- successmessage = "Success!"
- currentversion = 2.4
- startmenu = "Settings"--[[Put here any section you want to start in]]
- local THO = Instance.new("ScreenGui")
- local theme = Instance.new("Color3Value")
- theme.Name = "Theme"
- theme.Value = Color3.new(1, 1, 1) -- you can change there default theme color if you want
- theme.Parent = THO
- localplr = game.Players.LocalPlayer
- local topFactor = 0.8
- local darkerFactor = 0.85
- local darkFactor = 0.9
- local normalFactor = 0.95
- local minimizeFactor = 0.88
- local top, darker, dark, normal, minimize
- local function CalculateThemeColors()
- top = Color3.new(
- theme.Value.r * topFactor,
- theme.Value.g * topFactor,
- theme.Value.b * topFactor
- )
- darker = Color3.new(
- theme.Value.r * darkerFactor,
- theme.Value.g * darkerFactor,
- theme.Value.b * darkerFactor
- )
- dark = Color3.new(
- theme.Value.r * darkFactor,
- theme.Value.g * darkFactor,
- theme.Value.b * darkFactor
- )
- normal = Color3.new(
- theme.Value.r * normalFactor,
- theme.Value.g * normalFactor,
- theme.Value.b * normalFactor
- )
- minimize = Color3.new(
- theme.Value.r * minimizeFactor,
- theme.Value.g * minimizeFactor,
- theme.Value.b * minimizeFactor
- )
- end
- local function ChangeColor()
- CalculateThemeColors()
- Minimize.BackgroundColor3 = theme.Value
- Sectionsbaa.BackgroundColor3 = dark
- Sectionsba.BackgroundColor3 = dark
- Sectionsbaaa.BackgroundColor3 = dark
- TextButton_7.BackgroundColor3 = minimize
- X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- TextLabel.BackgroundColor3 = theme.Value
- TemplateSection.BackgroundColor3 = theme.Value
- Sections.BackgroundColor3 = dark
- Top_2.BackgroundColor3 = top
- MainBa.BackgroundColor3 = dark
- TextButton_2.BackgroundColor3 = darker
- TextButton.BackgroundColor3 = darker
- drop.BackgroundColor3 = darker
- L_5.BackgroundColor3 = darker
- L_6.BackgroundColor3 = normal
- L_7.BackgroundColor3 = theme.Value
- L_1.BackgroundColor3 = dark
- L_2.BackgroundColor3 = theme.Value
- L_3.BackgroundColor3 = normal
- L_4.BackgroundColor3 = theme.Value
- Button_2.BackgroundColor3 = normal
- Button.BackgroundColor3 = theme.Value
- Toggle_2.BackgroundColor3 = normal
- Toggle.BackgroundColor3 = theme.Value
- Template.BackgroundColor3 = theme.Value
- Main.BackgroundColor3 = darker
- local bool
- if theme.Value.r <= 0.4 and theme.Value.g <= 0.4 and theme.Value.b <= 0.4 then
- bool = true
- for _, menu in ipairs(Main:GetChildren()) do
- if menu:IsA("ScrollingFrame") then
- menu.ScrollBarImageColor3 = Color3.new(1,1,1)
- end
- end
- Sections.ScrollBarImageColor3 = Color3.new(1,1,1)
- TextLabel.TextColor3 = Color3.new(1,1,1)
- else
- bool = false
- for _, menu in ipairs(Main:GetChildren()) do
- if menu:IsA("ScrollingFrame") then
- menu.ScrollBarImageColor3 = Color3.new(0,0,0)
- end
- end
- Sections.ScrollBarImageColor3 = Color3.new(0,0,0)
- TextLabel.TextColor3 = Color3.new(0,0,0)
- end
- for _, child in ipairs(Sections:GetChildren()) do
- if child:IsA("TextButton") then
- if bool == true then
- child.TextColor3 = Color3.new(1,1,1)
- else
- child.TextColor3 = Color3.new(0,0,0)
- end
- child.BackgroundColor3 = theme.Value
- end
- end
- for _, child in ipairs(Main:GetChildren()) do
- if child:IsA("ScrollingFrame") then
- for _, chil in ipairs(child:GetChildren()) do
- if chil:IsA("Frame") then
- local buttonChild
- buttonChild = chil:FindFirstChild(chil.Name)
- if chil:FindFirstChildWhichIsA("TextBox") then
- buttonChild = chil:FindFirstChildWhichIsA("TextBox")
- end
- if buttonChild then
- if bool == true then
- buttonChild.TextColor3 = Color3.new(1,1,1)
- if chil:FindFirstChildWhichIsA("TextBox") then
- chil:FindFirstChildWhichIsA("TextBox").PlaceholderColor3 = Color3.new(1,1,1)
- end
- else
- buttonChild.TextColor3 = Color3.new(0,0,0)
- if chil:FindFirstChildWhichIsA("TextBox") then
- chil:FindFirstChildWhichIsA("TextBox").PlaceholderColor3 = Color3.fromRGB(178,178,178)
- end
- end
- buttonChild.BackgroundColor3 = normal
- end
- end
- end
- end
- end
- end
- Notifications = Instance.new("Frame")
- UIListLayout = Instance.new("UIListLayout")
- Notify = Instance.new("TextLabel")
- Top = Instance.new("Frame")
- Main = Instance.new("Frame")
- UICorner = Instance.new("UICorner")
- Template = Instance.new("ScrollingFrame")
- UIListLayout_2 = Instance.new("UIListLayout")
- Toggle = Instance.new("Frame")
- Toggle_2 = Instance.new("TextLabel")
- Toggle_3 = Instance.new("TextButton")
- UICorner_2 = Instance.new("UICorner")
- Icon = Instance.new("ImageLabel")
- UICorner_12 = Instance.new("UICorner")
- Button = Instance.new("Frame")
- Button_2 = Instance.new("TextButton")
- UICorner_3 = Instance.new("UICorner")
- L_4 = Instance.new("Frame")
- L_3 = Instance.new("TextBox")
- L_2 = Instance.new("Frame")
- L_1 = Instance.new("TextLabel")
- L_7 = Instance.new("Frame")
- L_6 = Instance.new("TextLabel")
- L_5 = Instance.new("TextButton")
- UICorner_4 = Instance.new("UICorner")
- drop = Instance.new("ScrollingFrame")
- UICorner_5 = Instance.new("UICorner")
- TextButton = Instance.new("TextButton")
- UIListLayout_3 = Instance.new("UIListLayout")
- TextButton_2 = Instance.new("TextButton")
- UICorner_6 = Instance.new("UICorner")
- MainBa = Instance.new("Frame")
- Top_2 = Instance.new("Frame")
- Sections = Instance.new("ScrollingFrame")
- UICorner_7 = Instance.new("UICorner")
- TemplateSection = Instance.new("TextButton")
- UICorner_8 = Instance.new("UICorner")
- UICorner_9 = Instance.new("UICorner")
- UICorner_10 = Instance.new("UICorner")
- UICorner_11 = Instance.new("UICorner")
- UIListLayout_4 = Instance.new("UIListLayout")
- UIStroke = Instance.new("UIStroke")
- TextLabel = Instance.new("TextLabel")
- X = Instance.new("TextButton")
- TextButton_7 = Instance.new("TextButton")
- Sectionsba = Instance.new("Frame")
- Sectionsbaa = Instance.new("Frame")
- Sectionsbaaa = Instance.new("Frame")
- Minimize = Instance.new("TextButton")
- Toggl = Instance.new("BoolValue")
- ChangeColor()
- theme.Changed:Connect(function()
- ChangeColor()
- end)
- local function hasFunction(funcName)
- return pcall(function() return game[funcName] ~= nil end)
- end
- THO.Name = "THO"
- THO.Parent = localplr.PlayerGui
- THO.Enabled = false
- THO.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- THO.DisplayOrder = 999999999
- THO.ResetOnSpawn = false
- Notifications.Name = "Notifications"
- Notifications.Parent = THO
- Notifications.BackgroundTransparency = 1.000
- Notifications.Size = UDim2.new(0, 300, 1, 0)
- UIListLayout.Parent = Notifications
- UIListLayout.VerticalAlignment = Enum.VerticalAlignment.Bottom
- Notify.Name = "Notify"
- Notify.Parent = Notifications
- Notify.BackgroundColor3 = theme.Value
- Notify.BackgroundTransparency = 0.500
- Notify.BorderSizePixel = 0
- Notify.Size = UDim2.new(1, 0, 0.1, 0)
- Notify.Visible = false
- Notify.Font = Enum.Font.Bodoni
- Notify.TextColor3 = Color3.fromRGB(0, 0, 0)
- Notify.TextScaled = true
- Notify.TextSize = 14
- Notify.TextWrapped = true
- Top.Name = "Top"
- Top.Parent = THO
- Top.BackgroundColor3 = top
- Top.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Top.BorderSizePixel = 0
- Top.Position = UDim2.new(0.5, -175, 0.5, -100)
- Top.Size = UDim2.new(0, 350, 0, 20)
- Top.ZIndex = 3
- Icon.Name = "Icon"
- Icon.Parent = Top
- Icon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Icon.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Icon.BackgroundTransparency = 1
- Icon.BorderSizePixel = 0
- Icon.Position = UDim2.new(0, 4, 0, 2)
- Icon.Size = UDim2.new(0, 16, 0, 16)
- Icon.ZIndex = 4
- Icon.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
- local content, isReady = game.Players:GetUserThumbnailAsync(localplr.UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420)
- Icon.Image = content
- UICorner_12.Parent = Icon
- UIStroke.Parent = Icon
- UIStroke.Transparency = 0.5
- UIStroke.Thickness = 0.5
- Main.Name = "Main"
- Main.Parent = Top
- Main.BackgroundColor3 = darker
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0, 100, 0, 0)
- Main.Size = UDim2.new(0, 250, 0, 200)
- UICorner.CornerRadius = UDim.new(0, 10)
- UICorner.Parent = Main
- Template.CanvasSize = UDim2.new(0,50,0,5+(#Template:GetChildren()*25))
- Template.AutomaticCanvasSize = Enum.AutomaticSize.Y
- Template.Name = "Template"
- Template.Parent = Main
- Template.BackgroundColor3 = theme.Value
- Template.BackgroundTransparency = 1.000
- Template.BorderSizePixel = 0
- Template.ScrollBarThickness = 3
- Template.ScrollBarImageColor3 = Color3.new(0,0,0)
- Template.Visible = false
- Template.Position = UDim2.new(0, 0, 0.1, 0)
- Template.Size = UDim2.new(1, 0, 0.9, 0)
- Template.ClipsDescendants = true
- UIListLayout_2.Parent = Template
- UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
- Toggle.Name = "Toggle"
- Toggle.Parent = Template
- Toggle.BackgroundColor3 = theme.Value
- Toggle.BackgroundTransparency = 1.000
- Toggle.BorderSizePixel = 0
- Toggle.Rotation = 70
- Toggle.Size = UDim2.new(1, 0, 0, 25)
- Toggle_2.Name = "Toggle"
- Toggle_2.Parent = Toggle
- Toggle_2.BackgroundColor3 = normal
- Toggle_2.BorderSizePixel = 0
- Toggle_2.Position = UDim2.new(0, 3, 0, 5)
- Toggle_2.Size = UDim2.new(1, -3, 0, 20)
- Toggle_2.Font = Enum.Font.Bodoni
- Toggle_2.Text = " Toggle"
- Toggle_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- Toggle_2.TextSize = 14
- Toggle_2.TextXAlignment = Enum.TextXAlignment.Left
- UICorner_9.CornerRadius = UDim.new(0, 3)
- UICorner_9.Parent = Toggle_2
- Toggle_3.Name = "Toggle"
- Toggle_3.Parent = Toggle_2
- Toggle_3.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- Toggle_3.BorderSizePixel = 0
- Toggle_3.Position = UDim2.new(1, -20, 0, 0)
- Toggle_3.Size = UDim2.new(0, 20, 0, 20)
- Toggle_3.Font = Enum.Font.Bodoni
- Toggle_3.Text = ""
- Toggle_3.TextColor3 = Color3.fromRGB(0, 0, 0)
- Toggle_3.TextSize = 14
- Toggl.Name = "Toggle"
- Toggl.Parent = Toggle_3
- Toggl.Value = false
- UICorner_2.CornerRadius = UDim.new(0, 3)
- UICorner_2.Parent = Toggle_3
- Button.Name = "Button"
- Button.Parent = Template
- Button.BackgroundColor3 = theme.Value
- Button.BackgroundTransparency = 1.000
- Button.BorderSizePixel = 0
- Button.Size = UDim2.new(1, 0, 0, 25)
- Button_2.Name = "Button"
- Button_2.Parent = Button
- Button_2.BackgroundColor3 = normal
- Button_2.BorderSizePixel = 0
- Button_2.Position = UDim2.new(0, 3, 0, 5)
- Button_2.Size = UDim2.new(1, -3, 0, 20)
- Button_2.Font = Enum.Font.Bodoni
- Button_2.Text = " Button"
- Button_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- Button_2.TextSize = 14
- Button_2.TextXAlignment = Enum.TextXAlignment.Left
- UICorner_3.CornerRadius = UDim.new(0, 3)
- UICorner_3.Parent = Button_2
- L_4.Name = "TextBox"
- L_4.Parent = Template
- L_4.BackgroundColor3 = theme.Value
- L_4.BackgroundTransparency = 1.000
- L_4.BorderSizePixel = 0
- L_4.Size = UDim2.new(1, 0, 0, 25)
- L_3.Parent = L_4
- L_3.BackgroundColor3 = normal
- L_3.BorderSizePixel = 0
- L_3.Position = UDim2.new(0, 3, 0, 5)
- L_3.Size = UDim2.new(1, -3, 0, 20)
- L_3.Font = Enum.Font.Bodoni
- L_3.PlaceholderText = "TextBox"
- L_3.Text = ""
- L_3.TextColor3 = Color3.fromRGB(0, 0, 0)
- L_3.TextSize = 14
- L_3.TextWrapped = true
- UICorner_10.CornerRadius = UDim.new(0, 3)
- UICorner_10.Parent = L_3
- L_2.Name = "Info"
- L_2.Parent = Template
- L_2.BackgroundColor3 = theme.Value
- L_2.BackgroundTransparency = 1.000
- L_2.BorderSizePixel = 0
- L_2.Size = UDim2.new(1, 0, 0, 25)
- L_1.Name = "Info"
- L_1.Parent = L_2
- L_1.BackgroundColor3 = dark
- L_1.BorderSizePixel = 0
- L_1.Position = UDim2.new(0, 3, 0, 5)
- L_1.Size = UDim2.new(1, -3, 0, 20)
- L_1.Font = Enum.Font.Bodoni
- L_1.Text = "Info"
- L_1.TextColor3 = Color3.fromRGB(0, 0, 0)
- L_1.TextSize = 14
- UICorner_11.CornerRadius = UDim.new(0, 3)
- UICorner_11.Parent = L_1
- L_7.Name = "Dropdown"
- L_7.Parent = Template
- L_7.BackgroundColor3 = theme.Value
- L_7.BackgroundTransparency = 1.000
- L_7.BorderSizePixel = 0
- L_7.ZIndex = 5
- L_7.Size = UDim2.new(1, 0, 0, 25)
- L_6.Name = "Dropdown"
- L_6.Parent = L_7
- L_6.BackgroundColor3 = normal
- L_6.BorderSizePixel = 0
- L_6.Position = UDim2.new(0, 3, 0, 5)
- L_6.Size = UDim2.new(1, -3, 0, 20)
- L_6.Font = Enum.Font.Bodoni
- L_6.Text = " Dropdown"
- L_6.TextColor3 = Color3.fromRGB(0, 0, 0)
- L_6.TextSize = 14
- L_6.TextXAlignment = Enum.TextXAlignment.Left
- L_5.Name = "Dropdown"
- L_5.Parent = L_6
- L_5.BackgroundColor3 = darker
- L_5.BorderSizePixel = 0
- L_5.Position = UDim2.new(1, -20, 0, 0)
- L_5.Size = UDim2.new(0, 20, 0, 20)
- L_5.Font = Enum.Font.Bodoni
- L_5.Text = "V"
- L_5.TextColor3 = Color3.fromRGB(0, 0, 0)
- L_5.TextSize = 14
- UICorner_4.CornerRadius = UDim.new(0, 3)
- UICorner_4.Parent = L_5
- drop.Name = "drop"
- drop.Parent = L_5
- drop.Active = true
- drop.BackgroundColor3 = darker
- drop.BorderSizePixel = 0
- drop.Position = UDim2.new(0, -225, 0, 20)
- drop.Size = UDim2.new(0, 240, 0, 80)
- drop.Visible = false
- drop.ZIndex = 9
- drop.CanvasPosition = Vector2.new(0, 40)
- drop.CanvasSize = UDim2.new(0, 0, 0, 120)
- UICorner_5.CornerRadius = UDim.new(0, 3)
- UICorner_5.Parent = drop
- TextButton.Parent = drop
- TextButton.Name = "TextButton"
- TextButton.BackgroundColor3 = darker
- TextButton.BorderSizePixel = 0
- TextButton.Size = UDim2.new(1, 0, 0, 20)
- TextButton.Font = Enum.Font.Bodoni
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextSize = 14
- UIListLayout_3.Parent = drop
- UIListLayout_3.SortOrder = Enum.SortOrder.Name
- UICorner_6.CornerRadius = UDim.new(0, 3)
- UICorner_6.Parent = L_6
- MainBa.Name = "MainBa"
- MainBa.Parent = Top
- MainBa.BackgroundColor3 = darker
- MainBa.BorderSizePixel = 0
- MainBa.Position = UDim2.new(0, 100, 0, 182)
- MainBa.Size = UDim2.new(0, 11, 0, 18)
- MainBa.ZIndex = 0
- Top_2.Name = "Top"
- Top_2.Parent = Top
- Top_2.BackgroundColor3 = top
- Top_2.BorderSizePixel = 0
- Top_2.Size = UDim2.new(0, 350, 0, 20)
- Top_2.ZIndex = 3
- Sections.Name = "Sections"
- Sections.Parent = Top
- Sections.ZIndex = 2
- Sections.BackgroundColor3 = dark
- Sections.BackgroundTransparency = 1
- Sections.AutomaticCanvasSize = Enum.AutomaticSize.Y
- Sections.ScrollBarImageColor3 = Color3.new(0,0,0)
- Sections.ScrollBarThickness = 3
- Sections.BorderSizePixel = 0
- Sections.Position = UDim2.new(0, 0, 0, 25)
- Sections.Size = UDim2.new(0, 100, 0, 175)
- UICorner_7.CornerRadius = UDim.new(0, 10)
- UICorner_7.Parent = Sectionsbaaa
- TemplateSection.Name = "TemplateSection"
- TemplateSection.Parent = Sections
- TemplateSection.BackgroundColor3 = theme.Value
- TemplateSection.BorderSizePixel = 0
- TemplateSection.Position = UDim2.new(0, 10, 0, 5)
- TemplateSection.Size = UDim2.new(0, 80, 0, 20)
- TemplateSection.Font = Enum.Font.Bodoni
- TemplateSection.Text = "Test"
- TemplateSection.TextColor3 = Color3.fromRGB(0, 0, 0)
- TemplateSection.TextScaled = true
- TemplateSection.Visible = false
- TemplateSection.TextSize = 14
- UICorner_8.CornerRadius = UDim.new(0, 3)
- UICorner_8.Parent = TemplateSection
- UIListLayout_4.Parent = Sections
- UIListLayout_4.HorizontalAlignment = Enum.HorizontalAlignment.Center
- UIListLayout_4.SortOrder = Enum.SortOrder.LayoutOrder
- UIListLayout_4.Padding = UDim.new(0, 5)
- TextLabel.Parent = Top
- TextLabel.BackgroundColor3 = theme.Value
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.BorderSizePixel = 0
- TextLabel.Size = UDim2.new(1, -25, 1, 0)
- TextLabel.Position = UDim2.new(0,25,0,0)
- TextLabel.ZIndex = 4
- TextLabel.Font = Enum.Font.Bodoni
- TextLabel.Text = title.." v"..currentversion
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 14
- TextLabel.TextXAlignment = Enum.TextXAlignment.Left
- X.Name = "X"
- X.Parent = Top
- X.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- X.BorderSizePixel = 0
- X.Position = UDim2.new(0, 330, 0, 0)
- X.Size = UDim2.new(0, 20, 0, 20)
- X.ZIndex = 4
- X.Font = Enum.Font.SourceSans
- X.Text = "X"
- X.TextColor3 = Color3.fromRGB(0, 0, 0)
- X.TextSize = 14
- TextButton_7.Name = "M"
- TextButton_7.Parent = Top
- TextButton_7.BackgroundColor3 = minimize
- TextButton_7.BorderSizePixel = 0
- TextButton_7.Position = UDim2.new(0, 310, 0, 0)
- TextButton_7.Size = UDim2.new(0, 20, 0, 20)
- TextButton_7.ZIndex = 4
- TextButton_7.Font = Enum.Font.SourceSans
- TextButton_7.Text = "M"
- TextButton_7.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_7.TextSize = 14
- Sectionsba.Name = "Sectionsba"
- Sectionsba.Parent = Top
- Sectionsba.BackgroundColor3 = dark
- Sectionsba.BorderSizePixel = 0
- Sectionsba.Position = UDim2.new(0, 90, 0, 20)
- Sectionsba.Size = UDim2.new(0, 12, 0, 180)
- Sectionsba.ZIndex = 1
- Sectionsbaa.Name = "Sectionsbaa"
- Sectionsbaa.Parent = Top
- Sectionsbaa.BackgroundColor3 = dark
- Sectionsbaa.BorderSizePixel = 0
- Sectionsbaa.Position = UDim2.new(0, 0, 1, 0)
- Sectionsbaa.Size = UDim2.new(0, 100, 0, 15)
- Sectionsbaa.ZIndex = 1
- Sectionsbaaa.Name = "Sectionsbaaa"
- Sectionsbaaa.Parent = Top
- Sectionsbaaa.BackgroundColor3 = dark
- Sectionsbaaa.BorderSizePixel = 0
- Sectionsbaaa.Position = UDim2.new(0, 0, 0, 25)
- Sectionsbaaa.Size = UDim2.new(0, 100, 0, 175)
- Sectionsbaaa.ZIndex = 1
- Minimize.Name = "Minimize"
- Minimize.Parent = THO
- Minimize.BackgroundColor3 = theme.Value
- Minimize.BackgroundTransparency = 0.500
- Minimize.BorderSizePixel = 0
- Minimize.Position = UDim2.new(0.6, 0, 0.2, 0)
- Minimize.Size = UDim2.new(0, 50, 0, 50)
- Minimize.Visible = false
- Minimize.AutoButtonColor = false
- Minimize.Font = Enum.Font.Arial
- Minimize.Text = "+"
- Minimize.TextColor3 = Color3.fromRGB(0, 0, 0)
- Minimize.TextScaled = true
- Minimize.TextSize = 14
- Minimize.MouseButton1Click:Connect(function()
- Top.Visible = true
- Minimize.Visible =false
- end)
- TextButton_7.MouseButton1Click:Connect(function()
- Top.Visible = false
- Minimize.Visible = true
- end)
- X.MouseButton1Click:Connect(function()
- for _, child in ipairs(Main:GetChildren()) do
- if child:IsA("ScrollingFrame") then
- for _, chil in ipairs(child:GetChildren()) do
- if chil.Name == "Toggle" then
- chil.Toggle.Toggle.Toggle.Value = true
- end
- end
- end
- end
- THO.Enabled = false
- wait(0.1)
- THO:Destroy()
- end)
- local UserInputService = game:GetService("UserInputService")
- local gui = Top
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function update(input)
- local delta = input.Position - dragStart
- gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- gui.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = gui.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- game:GetService("GuiService").TouchControlsEnabled = true
- dragging = false
- end
- end)
- end
- end)
- gui.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- game:GetService("GuiService").TouchControlsEnabled = false
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- update(input)
- end
- end)
- local gui = Minimize
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function updatew(input)
- local delta = input.Position - dragStart
- gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- gui.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = gui.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- game:GetService("GuiService").TouchControlsEnabled = true
- dragging = false
- end
- end)
- end
- end)
- gui.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- game:GetService("GuiService").TouchControlsEnabled = false
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- updatew(input)
- end
- end)
- local function notify(text)
- local Noti = Notify:Clone()
- Noti.Visible = true
- Noti.Text = text
- Noti.Parent = Notifications
- print("Random Hub Notification: "..text)
- local function notif()
- wait(5)
- for i = 0,10 do
- Noti.Transparency = Noti.Transparency + 0.1
- wait(0.1)
- end
- wait(1)
- Noti:Destroy()
- end
- local co = coroutine.create(notif)
- coroutine.resume(co, text)
- return Noti
- end
- local function createbutton(text,parent, IsDeletable)
- local butto = Button:Clone()
- local button = butto:FindFirstChildWhichIsA("TextButton")
- button.Text = " "..text
- butto.Parent = parent
- local bool = Instance.new("BoolValue")
- bool.Parent = butto
- bool.Value = IsDeletable ~= false
- bool.Name = "IsDeletable"
- return button
- end
- local function createinfo(text,parent)
- local Inf = L_2:Clone()
- local info = Inf:FindFirstChildWhichIsA("TextLabel")
- info.Text = " "..text
- Inf.Parent = parent
- Inf.Name = "Info"
- return info
- end
- local function createtoggle(text,parent)
- local toggl = Toggle:Clone()
- local toggle = toggl:WaitForChild("Toggle")
- local tog = toggle:FindFirstChildWhichIsA("TextButton")
- local bool = tog:WaitForChild("Toggle")
- toggle.Text = " "..text
- toggl.Parent = parent
- toggl.Name = "Toggle"
- bool.Value = true
- tog.MouseButton1Click:Connect(function()
- if tog.BackgroundColor3 == Color3.fromRGB(255,0,0) then
- bool.Value = false
- tog.BackgroundColor3 = Color3.fromRGB(0,255,0)
- else
- bool.Value = true
- tog.BackgroundColor3 = Color3.fromRGB(255,0,0)
- end
- end)
- return tog
- end
- local function turnoff(toggle)
- local val = toggle:FindFirstChild("Toggle")
- if val then
- val.Value = true
- toggle.BackgroundColor3 = Color3.fromRGB(255,0,0)
- end
- end
- local function createtextbox(text,parent)
- local textbo = L_4:Clone()
- local textbox = textbo:FindFirstChildWhichIsA("TextBox")
- textbox.PlaceholderText = text
- textbo.Parent = parent
- textbo.Name = "TextBox"
- return textbox
- end
- local function createdropdown(text,parent)
- local dropdow = L_7:Clone()
- local dropdown = dropdow:WaitForChild("Dropdown")
- local button = dropdown:FindFirstChildWhichIsA("TextButton")
- local menuu = button:WaitForChild("drop")
- dropdown.Text = " "..text
- dropdow.Parent = parent
- dropdow.Name = "Dropdown"
- for _, child in ipairs(menuu:GetChildren()) do
- if child:IsA("TextButton") then
- child:Destroy()
- end
- end
- menuu.CanvasSize = UDim2.new(0,0,0,20*#menuu:GetChildren())
- menuu.AutomaticCanvasSize = Enum.AutomaticSize.Y
- button.MouseButton1Click:Connect(function()
- if menuu.Visible == false then
- menuu.Visible = true
- dropdow.Size = UDim2.new(1, 0, 0, 105)
- else
- menuu.Visible = false
- dropdow.Size = UDim2.new(1, 0, 0, 25)
- end
- end)
- return button
- end
- local function createdropdownbutton(text, parent, IsDeletable)
- local dropdown = drop:FindFirstChildWhichIsA("TextButton"):Clone()
- dropdown.Text = " "..text
- dropdown.Parent = parent:WaitForChild("drop")
- local bool = Instance.new("BoolValue")
- bool.Parent = dropdown
- bool.Value = IsDeletable ~= false
- bool.Name = "IsDeletable"
- dropdown.MouseButton1Click:Connect(function()
- dropdown.Parent.Visible = false
- dropdown.Parent.Parent.Parent.Parent.Size = UDim2.new(1, 0, 0, 25)
- end)
- return dropdown
- end
- local previous = nil
- local function openmenu(menu)
- if menu == "" then
- return
- end
- if menu then
- if previous == nil then
- else
- previous.Visible = false
- end
- local foundMenu = Main:FindFirstChild(menu.Name)
- if foundMenu then
- foundMenu.Visible = true
- else
- notify("Section not found.")
- end
- end
- previous = menu
- end
- local function createsection(text)
- local but = TemplateSection:Clone()
- but.Visible = true
- but.Parent = Sections
- but.Name = text
- but.Text = text
- local menu = Template:Clone()
- menu.Parent = Main
- menu.Visible = false
- menu.Name = but.Name.."menu"
- for _, child in ipairs(menu:GetChildren()) do
- if child:IsA("Frame") then
- child:Destroy()
- end
- end
- but.MouseButton1Click:Connect(function()
- openmenu(menu)
- end)
- return menu
- end
- local function createhiddenmenu(text)
- local menu = Template:Clone()
- menu.Parent = Main
- menu.Visible = false
- menu.Name = text.."menu"
- for _, child in ipairs(menu:GetChildren()) do
- if child:IsA("Frame") then
- child:Destroy()
- end
- end
- return menu
- end
- local function clear(parent)
- if parent.Name == "Dropdown" then
- for _, child in ipairs(parent:FindFirstChild("drop"):GetChildren()) do
- if child:FindFirstChild("IsDeletable") then
- if child:FindFirstChild("IsDeletable").Value == true then
- child:Destroy()
- end
- end
- end
- else
- if parent then
- for _, child in ipairs(parent:GetChildren()) do
- if child:FindFirstChild("IsDeletable") then
- if child:FindFirstChild("IsDeletable").Value == true then
- child:Destroy()
- end
- end
- end
- end
- end
- end
- -- example: createbutton(IsDeletable by clear function, text inside it, set parent to)
- -- build your gui THERE
- local rs = game:GetService("RunService")
- local function findplr(str,except)
- local list = game.Players:GetChildren()
- local plrs = {}
- if except == true then
- for _, i in ipairs(list) do
- if string.lower(string.sub(i.Name,1,string.len(str))) == string.lower(str) then
- elseif string.lower(string.sub(i.DisplayName,1,string.len(str))) == string.lower(str) then
- else
- table.insert(plrs,i.Name)
- end
- end
- else
- for _, i in ipairs(list) do
- if string.find(string.lower(string.sub(i.Name,1,string.len(str))), string.lower(str)) then
- table.insert(plrs,i.Name)
- elseif string.find(string.lower(string.sub(i.DisplayName,1,string.len(str))), string.lower(str)) then
- table.insert(plrs,i.Name)
- end
- end
- end
- return plrs
- end
- local function testforAdmin(name)
- local player = game.Players:FindFirstChild(name)
- if player and player.Team == game.Teams.Admin then
- return true
- else
- return false
- end
- end
- local char = localplr.Character
- chatbar = localplr.PlayerGui.Chat.Frame.ChatBarParentFrame.Frame.BoxFrame.Frame.ChatBar
- local function equipEnlighten()
- local plr = localplr
- local back = plr:FindFirstChild("Backpack")
- local enlighten
- if back then
- enlighten = plr.Backpack:FindFirstChild("The Arkenstone")
- else
- enlighten = plr:FindFirstChild("The Arkenstone")
- end
- if enlighten then
- enlighten.Parent = plr.Character
- elseif plr.Character:FindFirstChild("The Arkenstone") then
- else
- if testforAdmin(localplr.Name) then
- else
- notify("No enlighten found")
- end
- end
- end
- local function unequipEnlighten()
- local plr = localplr
- if plr.Character:FindFirstChild("The Arkenstone") then
- local back = plr:FindFirstChild("Backpack")
- if back then
- plr.Character:FindFirstChild("The Arkenstone").Parent = localplr.Backpack
- else
- plr.Character:FindFirstChild("The Arkenstone").Parent = localplr
- end
- end
- end
- local Message = Instance.new("BindableEvent")
- game.StarterGui:SetCore("CoreGuiChatConnections", {ChatWindow = {MessagePosted = Message}})
- chatbar.FocusLost:Connect(function(enter,input)
- print(enter)
- if enter == true then
- Message:Fire(chatbar.Text)
- end
- end)
- UserInputService.InputBegan:Connect(function(key, gameprocess)
- if key.KeyCode == Enum.KeyCode.Slash then
- task.wait()
- chatbar:CaptureFocus()
- end
- end)
- local function chat(text)
- local function chatt(tex)
- equipEnlighten()
- wait(0.2)
- local message = string.gsub(tex,";","")
- Message:Fire(message)
- wait(0.2)
- unequipEnlighten()
- end
- local co = coroutine.create(chatt)
- coroutine.resume(co, text)
- end
- local function createblock(x,y,z)
- task.wait(0.2)
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- local tool = localplr.Backpack:FindFirstChild("Build")
- if tool then
- tool.Parent = localplr.Character
- local args = {
- [1] = Vector3.new(x,y,z),
- [2] = Enum.NormalId.Top,
- [3] = workspace.Trrain:FindFirstChild("Chunk"):FindFirstChild("Mesh"),
- [4] = Color3.new(1, 1, 1),
- [5] = "Smooth"
- }
- game:GetService("Players").LocalPlayer.Backpack:WaitForChild("Events"):FireServer(unpack(args))
- task.wait(0.2)
- local equip = localplr.Character:FindFirstChild("Build")
- if equip then
- equip.Parent = localplr.Backpack
- end
- end
- end
- local function chatt(text)
- local function chattt(tex)
- equipEnlighten()
- wait(0.2)
- local message = tex
- Message:Fire(message)
- end
- local co = coroutine.create(chattt)
- coroutine.resume(co,text)
- end
- local function normalchat(msg)
- Message:Fire(msg)
- end
- antis = createsection("Anti's")
- neon = createtoggle("Anti Neon Blocks", antis)
- neon.MouseButton1Click:Connect(function()
- local char = localplr
- local var = neon:FindFirstChild("Toggle")
- if var.Value == true then
- localplr.Character:WaitForChild("Neon").Enabled = false
- else
- localplr.Character:WaitForChild("Neon").Enabled = true
- end
- end)
- createbutton("Anti Jail", antis, false).MouseButton1Click:Connect(function()
- local char = localplr.Character
- if char:FindFirstChild("Jail") then
- char:FindFirstChild("Jail"):Destroy()
- end
- end)
- createbutton("Anti Blind", antis, false).MouseButton1Click:Connect(function()
- if localplr.PlayerGui:FindFirstChild("BlindGUI") then
- localplr.PlayerGui:FindFirstChild("BlindGUI").Frame.Visible = false
- end
- end)
- createbutton("Anti Colorless", antis, false).MouseButton1Click:Connect(function()
- if game.Lighting:FindFirstChild("RGB") then
- game.Lighting:FindFirstChild("RGB").Enabled = false
- end
- end)
- createbutton("Anti Myopic", antis, false).MouseButton1Click:Connect(function()
- if game.Lighting:FindFirstChild("Blur") then
- game.Lighting:FindFirstChild("Blur").Enabled = false
- end
- end)
- localplr:SetAttribute("Flying", false)
- fly = createtoggle("Anti Fly", antis)
- fly.MouseButton1Click:Connect(function()
- local var = fly:FindFirstChild("Toggle")
- if var.Value == true then
- localplr:SetAttribute("Flying", false)
- else
- localplr:SetAttribute("Flying", true)
- end
- end)
- createbutton("Anti Fog", antis, false).MouseButton1Click:Connect(function()
- if game.Lighting:FindFirstChild("Fog") then
- game.Lighting:FindFirstChild("Fog").Density = 0
- end
- end)
- createbutton("Anti Void", antis, false).MouseButton1Click:Connect(function()
- local spawnpoint = game.Workspace:FindFirstChildWhichIsA("SpawnLocation")
- localplr.Character.HumanoidRootPart.CFrame = spawnpoint.CFrame + Vector3.new(0,5,0)
- end)
- createbutton("Anti Tackle", antis, false).MouseButton1Click:Connect(function()
- localplr.Character.Humanoid.PlatformStand = false
- end)
- createbutton("Anti Gravity", antis, false).MouseButton1Click:Connect(function()
- workspace.Gravity = 196.2
- end)
- createbutton("Anti Speed", antis, false).MouseButton1Click:Connect(function()
- localplr.Character.Humanoid.Walkspeed = 16
- end)
- createbutton("Anti Jumpower", antis, false).MouseButton1Click:Connect(function()
- localplr.Character.Humanoid.JumpPower = 50
- end)
- local function anticrash()
- local back = localplr:FindFirstChild("Backpack")
- if back then
- local enlighten
- if back:FindFirstChild("The Arkenstone") then
- enlighten = back:FindFirstChild("The Arkenstone")
- elseif localplr.Character:FindFirstChild("The Arkenstone") then
- enlighten = localplr.Character:FindFirstChild("The Arkenstone")
- end
- if enlighten then
- enlighten.Parent = localplr
- notify("Your enlighten is safe, use Extras => Execute")
- end
- notify("WARNING! Your backpack is deleted.\n Reset to get backpack").BackgroundColor3 = Color3.new(1,0,0)
- task.wait(0.1)
- back:Destroy()
- end
- end
- createbutton("Anti Bkit Crash (No enlighten method)", antis, false).MouseButton1Click:Connect(anticrash)
- autoanticrash = createtoggle("Auto Anti Bkit Crash", antis)
- local aac = autoanticrash:FindFirstChild("Toggle")
- mutebypass = createtoggle("Anti Mute (Bypass)", antis)
- local scr = localplr.PlayerScripts.ChatScript
- mutebypass.MouseButton1Click:Connect(function()
- scr.Enabled = true
- end)
- local mbval = mutebypass:FindFirstChild("Toggle")
- chatbar.Focused:Connect(function()
- if mbval.Value == false then
- if localplr:GetAttribute("Muted") == true then
- scr.Enabled = false
- end
- end
- end)
- chatbar.FocusLost:Connect(function(enter)
- if mbval.Value == false then
- if localplr:GetAttribute("Muted") == true then
- wait(0.3)
- scr.Enabled = true
- end
- else
- scr.Enabled = true
- end
- end)
- local chatbar = Instance.new("TextBox")
- boombox = createhiddenmenu("Boombox")
- local function music(id)
- local tool = localplr.Character:FindFirstChild("SuperFlyGoldBoombox")
- local event
- if tool then
- event = tool:FindFirstChild("Remote")
- if event then
- event:FireServer("PlaySong",id)
- end
- else
- notify("No Boombox found")
- end
- end
- createbutton("Stop Music", boombox).MouseButton1Click:Connect(function()
- music(0)
- end)
- createbutton("Chicken Nuggets", boombox).MouseButton1Click:Connect(function()
- music(9245561450)
- end)
- createbutton("cowbell beat (LOUD)", boombox).MouseButton1Click:Connect(function()
- music(4776398821)
- end)
- createbutton("Beat Phonk", boombox).MouseButton1Click:Connect(function()
- music(14145620741)
- end)
- createbutton("Relaxed Scene", boombox).MouseButton1Click:Connect(function()
- music(1848354536)
- end)
- createbutton("Gotta walk (Vocal Song)", boombox).MouseButton1Click:Connect(function()
- music(9044481459)
- end)
- createbutton("This song made by....)", boombox).MouseButton1Click:Connect(function()
- music(6753817247)
- end)
- createbutton("THIS AUDO WAS MADE BY FDMSKJGJAFL", boombox).MouseButton1Click:Connect(function()
- music(6781116057)
- end)
- createbutton("random guitar song (Vocal Song)", boombox).MouseButton1Click:Connect(function()
- music(1845838703)
- end)
- createbutton("We could be kings... (Vocal Song)", boombox).MouseButton1Click:Connect(function()
- music(1840030788)
- end)
- createbutton("made by sego gay", boombox).MouseButton1Click:Connect(function()
- music(7006487793)
- end)
- createbutton("Epic song", boombox).MouseButton1Click:Connect(function()
- music(1837018896)
- end)
- createbutton("Dont let me go", boombox).MouseButton1Click:Connect(function()
- music(1839920066)
- end)
- createbutton("aaa li loua", boombox).MouseButton1Click:Connect(function()
- music(1846627271)
- end)
- createbutton("funni song", boombox).MouseButton1Click:Connect(function()
- music(6765683083)
- end)
- gears = createsection("Gears")
- createinfo("Type here anyone's name to give gears to", gears)
- local pgear = createtextbox("Select Player", gears)
- pgear.Text = "me"
- createbutton("Boombox Menu", gears).MouseButton1Click:Connect(function()
- openmenu(boombox)
- end)
- createinfo("Gears", gears)
- createbutton("Rainbow Periastron Sword", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 159229806")
- end)
- createbutton("DiscoBall", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 147937284")
- end)
- createbutton("Staff of never ending frost", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 151292047")
- end)
- createbutton("Pretty Pretty Princess", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 53039427")
- end)
- createbutton("Fake C4", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 104642566")
- end)
- createbutton("Advanced Paint Bucket", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 18474459")
- end)
- createbutton("Pickaxe", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 583030187")
- end)
- createbutton("Flashbang", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 16979083")
- end)
- createbutton("Subspace Tripmine", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 11999247")
- end)
- createbutton("Body Swap Potion", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 78730532")
- end)
- createbutton("Orange Lambo", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 253519495")
- end)
- createbutton("Taxi", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 125013849")
- end)
- createbutton("Rail Runner-5000", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 79446473")
- end)
- createbutton("Dagger of shattered dimensions", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 71037101")
- end)
- createbutton("Platform Producer", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 34898883")
- end)
- createbutton("Inglaciator-6000", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 185422055")
- end)
- createbutton("R-Orb", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 98411393")
- end)
- createbutton("Crossbow of the sea", gears).MouseButton1Click:Connect(function()
- chat(";gear "..pgear.Text.." 236438668")
- end)
- createbutton("Stravants Lighting", gears).MouseButton1Click:Connect(function()
- chat(";r6 "..pgear.Text)
- task.wait(1)
- chat(";gear "..pgear.Text.." 169669671")
- end)
- createinfo("Pack of gears buggy a lil")
- createbutton("Pack Of Gears (over 200 gears)", gears).MouseButton1Click:Connect(function()
- local list = {
- ";gear "..pgear.Text.." 68539623",
- ";gear "..pgear.Text.." 169669671",
- ";gear "..pgear.Text.." 69964719",
- ";gear "..pgear.Text.." 18474459",
- ";gear "..pgear.Text.." 71037101",
- ";gear "..pgear.Text.." 233520425",
- ";gear "..pgear.Text.." 566780416",
- ";gear "..pgear.Text.." 58574445",
- ";gear "..pgear.Text.." 168142869",
- ";gear "..pgear.Text.." 97311482",
- ";gear "..pgear.Text.." 96095042",
- ";gear "..pgear.Text.." 74904396",
- ";gear "..pgear.Text.." 63721732",
- ";gear "..pgear.Text.." 124126528",
- ";gear "..pgear.Text.." 162857357",
- ";gear "..pgear.Text.." 111876831",
- ";gear "..pgear.Text.." 33866728",
- ";gear "..pgear.Text.." 113299590",
- ";gear "..pgear.Text.." 163348758",
- ";gear "..pgear.Text.." 35293856",
- ";gear "..pgear.Text.." 52625744",
- ";gear "..pgear.Text.." 88146497",
- ";gear "..pgear.Text.." 80576928",
- ";gear "..pgear.Text.." 91360052",
- ";gear "..pgear.Text.." 549915884",
- ";gear "..pgear.Text.." 236442380",
- ";gear "..pgear.Text.." 31839411",
- ";gear "..pgear.Text.." 34398938",
- ";gear "..pgear.Text.." 27474371",
- ";gear "..pgear.Text.." 45754061",
- ";gear "..pgear.Text.." 148791414",
- ";gear "..pgear.Text.." 110789105",
- ";gear "..pgear.Text.." 25974222",
- ";gear "..pgear.Text.." 243788010",
- ";gear "..pgear.Text.." 139578061",
- ";gear "..pgear.Text.." 98411393",
- ";gear "..pgear.Text.." 88885524",
- ";gear "..pgear.Text.." 73888479",
- ";gear "..pgear.Text.." 110337853",
- ";gear "..pgear.Text.." 88143093",
- ";gear "..pgear.Text.." 73265108",
- ";gear "..pgear.Text.." 212296936",
- ";gear "..pgear.Text.." 47597835",
- ";gear "..pgear.Text.." 392057539",
- ";gear "..pgear.Text.." 323477973",
- ";gear "..pgear.Text.." 904534058",
- ";gear "..pgear.Text.." 2906732820",
- ";gear "..pgear.Text.." 292970740",
- ";gear "..pgear.Text.." 306971294",
- ";gear "..pgear.Text.." 1602503043",
- ";gear "..pgear.Text.." 1208300505",
- ";gear "..pgear.Text.." 30392263",
- ";gear "..pgear.Text.." 12890798",
- ";gear "..pgear.Text.." 193769809",
- ";gear "..pgear.Text.." 26421972",
- ";gear "..pgear.Text.." 2549005282",
- ";gear "..pgear.Text.." 101191388",
- ";gear "..pgear.Text.." 124472052",
- ";gear "..pgear.Text.." 16979083",
- ";gear "..pgear.Text.." 1132887630",
- ";gear "..pgear.Text.." 11419319",
- ";gear "..pgear.Text.." 121946387",
- ";gear "..pgear.Text.." 95354288",
- ";gear "..pgear.Text.." 11377306",
- ";gear "..pgear.Text.." 12187348",
- ";gear "..pgear.Text.." 127506105",
- ";gear "..pgear.Text.." 12848902",
- ";gear "..pgear.Text.." 16688968",
- ";gear "..pgear.Text.." 168141301",
- ";gear "..pgear.Text.." 15932306",
- ";gear "..pgear.Text.." 10468797",
- ";gear "..pgear.Text.." 257810065",
- ";gear "..pgear.Text.." 3130875522",
- ";gear "..pgear.Text.." 11452821",
- ";gear "..pgear.Text.." 114020480",
- ";gear "..pgear.Text.." 2758794374",
- ";gear "..pgear.Text.." 1981809272",
- ";gear "..pgear.Text.." 170897263",
- ";gear "..pgear.Text.." 11563251",
- ";gear "..pgear.Text.." 130113146",
- ";gear "..pgear.Text.." 107458429",
- ";gear "..pgear.Text.." 517827962",
- ";gear "..pgear.Text.." 398675172",
- ";gear "..pgear.Text.." 42321801",
- ";gear "..pgear.Text.." 253519495",
- ";gear "..pgear.Text.." 22960388",
- ";gear "..pgear.Text.." 16722267",
- ";gear "..pgear.Text.." 427947884",
- ";gear "..pgear.Text.." 11999247",
- ";gear "..pgear.Text.." 99119158",
- ";gear "..pgear.Text.." 63253701",
- ";gear "..pgear.Text.." 188853857",
- ";gear "..pgear.Text.." 11450664",
- ";gear "..pgear.Text.." 28275809",
- ";gear "..pgear.Text.." 94233344",
- ";gear "..pgear.Text.." 20721924",
- ";gear "..pgear.Text.." 953518028",
- ";gear "..pgear.Text.." 409745306",
- ";gear "..pgear.Text.." 84012460",
- ";gear "..pgear.Text.." 46846246",
- ";gear "..pgear.Text.." 292969139",
- ";gear "..pgear.Text.." 30393548",
- ";gear "..pgear.Text.." 139574344",
- ";gear "..pgear.Text.." 1119906090",
- ";gear "..pgear.Text.." 292969932",
- ";gear "..pgear.Text.." 10468915",
- ";gear "..pgear.Text.." 22788134",
- ";gear "..pgear.Text.." 31314966",
- ";gear "..pgear.Text.." 12547976",
- ";gear "..pgear.Text.." 49491736",
- ";gear "..pgear.Text.." 103358098",
- ";gear "..pgear.Text.." 101078559",
- ";gear "..pgear.Text.." 295460702",
- ";gear "..pgear.Text.." 2221409781",
- ";gear "..pgear.Text.." 928914739",
- ";gear "..pgear.Text.." 101106419",
- ";gear "..pgear.Text.." 11999235",
- ";gear "..pgear.Text.." 44115926",
- ";gear "..pgear.Text.." 211944997",
- ";gear "..pgear.Text.." 52627419",
- ";gear "..pgear.Text.." 686806111",
- ";gear "..pgear.Text.." 1132887630",
- ";gear "..pgear.Text.." 57902859",
- ";gear "..pgear.Text.." 42845609",
- ";gear "..pgear.Text.." 1183007014",
- ";gear "..pgear.Text.." 21754543",
- ";gear "..pgear.Text.." 984393",
- ";gear "..pgear.Text.." 164207580",
- ";gear "..pgear.Text.." 1748604797",
- ";gear "..pgear.Text.." 80576967",
- ";gear "..pgear.Text.." 56561579",
- ";gear "..pgear.Text.." 746686384",
- ";gear "..pgear.Text.." 30847779",
- ";gear "..pgear.Text.." 92142799",
- ";gear "..pgear.Text.." 12562495",
- ";gear "..pgear.Text.." 131592085",
- ";gear "..pgear.Text.." 10758456",
- ";gear "..pgear.Text.." 94794774",
- ";gear "..pgear.Text.." 146071355",
- ";gear "..pgear.Text.." 28277486",
- ";gear "..pgear.Text.." 10727852",
- ";gear "..pgear.Text.." 467935723",
- ";gear "..pgear.Text.." 34901961",
- ";gear "..pgear.Text.." 77443491",
- ";gear "..pgear.Text.." 55301897",
- ";gear "..pgear.Text.." 10469910",
- ";gear "..pgear.Text.." 243790334",
- ";gear "..pgear.Text.." 122278207",
- ";gear "..pgear.Text.." 147143863",
- ";gear "..pgear.Text.." 16895215",
- ";gear "..pgear.Text.." 93136746",
- ";gear "..pgear.Text.." 1119904760",
- ";gear "..pgear.Text.." 94233286",
- ";gear "..pgear.Text.." 268533852",
- ";gear "..pgear.Text.." 25317304",
- ";gear "..pgear.Text.." 168143042",
- ";gear "..pgear.Text.." 13207169",
- ";gear "..pgear.Text.." 24346755",
- ";gear "..pgear.Text.." 68603151",
- ";gear "..pgear.Text.." 1915020448",
- ";gear "..pgear.Text.." 515687734",
- ";gear "..pgear.Text.." 319656339",
- ";gear "..pgear.Text.." 17527923",
- ";gear "..pgear.Text.." 20064349",
- ";gear "..pgear.Text.." 430066424",
- ";gear "..pgear.Text.." 304721834",
- ";gear "..pgear.Text.." 33866846",
- ";gear "..pgear.Text.." 39258329",
- ";gear "..pgear.Text.." 16641274",
- ";gear "..pgear.Text.." 11956382",
- ";gear "..pgear.Text.." 361950297",
- ";gear "..pgear.Text.." 221181437",
- ";gear "..pgear.Text.." 105351545",
- ";gear "..pgear.Text.." 223785473",
- ";gear "..pgear.Text.." 80597060",
- ";gear "..pgear.Text.." 2002056831",
- ";gear "..pgear.Text.." 24713330",
- ";gear "..pgear.Text.." 406101128",
- ";gear "..pgear.Text.." 1227732454",
- ";gear "..pgear.Text.." 83021250",
- ";gear "..pgear.Text.." 1102656209"
- }
- for i, message in ipairs(list) do
- wait(0.4)
- chatt(message)
- end
- unequipEnlighten()
- end)
- createinfo("Some Tools Stuff", gears)
- createbutton("Use all tools", gears).MouseButton1Click:Connect(function()
- local Backpack = localplr:FindFirstChildOfClass("Backpack")
- local ammount = 1
- local delay_ = 1
- for _, v in ipairs(Backpack:GetChildren()) do
- v.Parent = localplr.Character
- task.spawn(function()
- for _ = 1, ammount do
- v:Activate()
- if delay_ then
- wait(delay_)
- end
- end
- v.Parent = Backpack
- end)
- end
- end)
- createinfo("specific tool example: if youre holding", gears)
- createinfo("a bomb, then it will drop all bomb", gears)
- createbutton("Use all specific tool that youre holding", gears).MouseButton1Click:Connect(function()
- local Backpack = localplr:FindFirstChildOfClass("Backpack")
- local ammount = 1
- local delay_ = 1
- for _, v in ipairs(Backpack:GetChildren()) do
- v.Parent = localplr.Character
- task.spawn(function()
- for _ = 1, ammount do
- v:Activate()
- if delay_ then
- wait(delay_)
- end
- end
- v.Parent = Backpack
- end)
- end
- end)
- createbutton("Drop all specific tool that youre holding", gears).MouseButton1Click:Connect(function()
- local char = localplr.Character or localplr.CharacterAdded:Wait()
- local tool = char:FindFirstChildWhichIsA("Tool")
- for i,v in pairs(localplr.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- if v.Name == tool.Name then
- v.Parent = localplr.Character
- end
- end
- end
- wait()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = workspace
- end
- end
- end)
- createbutton("Drop all tools (except enlighten)", gears).MouseButton1Click:Connect(function()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- if v.Name == "The Arkenstone" then
- v.Parent = localplr.Backpack
- end
- end
- end
- for i,v in pairs(localplr.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- if v.Name ~= "The Arkenstone" then
- v.Parent = localplr.Character
- end
- end
- end
- wait()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = workspace
- end
- end
- end)
- createbutton("Drop Holding Tool", gears).MouseButton1Click:Connect(function()
- local char = localplr.Character or localplr.CharacterAdded:Wait()
- local tool = char:FindFirstChildWhichIsA("Tool")
- if tool then
- tool.Parent = workspace
- end
- end)
- detector = createsection("Detector")
- createinfo("There are players who got enlighten",detector)
- local ba = createbutton("Click to check who got enlighten:",detector, false)
- ba.MouseButton1Click:Connect(function()
- clear(detector)
- for _, player in ipairs(game.Players:GetPlayers()) do
- if player.Backpack:FindFirstChild("The Arkenstone") or player.Character:FindFirstChild("The Arkenstone") or player:FindFirstChild("The Arkenstone") then
- local a = createbutton(player.DisplayName .." (@" ..player.Name..")",detector,true)
- if testforAdmin(player.Name) then
- a.BackgroundColor3 = Color3.new(1,1,theme.Value.B-0.3)
- end
- a.MouseButton1Click:Connect(function()
- openmenu(players)
- plr.Text = player.Name
- end)
- wait(0.1)
- end
- end
- end)
- cmds = createsection("Cmds")
- autochat = createtoggle("Be safe: R6 when you die", cmds)
- local function onCharacterAdded(character)
- local player = game:GetService("Players").LocalPlayer
- local humanoid = character:WaitForChild("Humanoid", 5)
- if not humanoid then
- return
- end
- humanoid.Died:Connect(function()
- if autochat:FindFirstChild("Toggle").Value == false then
- for i = 1,3 do
- chat(";r6 me")
- wait(0.1)
- end
- end
- end)
- end
- game:GetService("Players").LocalPlayer.CharacterAdded:Connect(onCharacterAdded)
- do
- local alreadyExistingCharacter = game:GetService("Players").LocalPlayer.Character
- if alreadyExistingCharacter then
- onCharacterAdded(alreadyExistingCharacter )
- end
- end
- abuseothers = createtoggle("Abuse Others", cmds)
- abuseothers.MouseButton1Click:Connect(function()
- local var = abuseothers:FindFirstChild("Toggle")
- if var.Value == true then
- while true do
- local cmds ={
- [1] = ";glitch others",
- [2] = ";clearinv others",
- [3] = ";myopic",
- [4] = ";colorless",
- [5] = ";mute others",
- [6] = ";blind others",
- [7] = ";jail others",
- [8] = ";noclip others",
- [9] = ";invisible others",
- [10] = ";freeze others",
- [11] = ";fog 10000",
- [12] = ";tackle others"
- }
- local number = math.random(1,12)
- local cmd = cmds[number]
- chatt(cmd)
- wait(0.1)
- if var.Value == true then
- unequipEnlighten()
- break
- end
- end
- else
- end
- end)
- crash = createtoggle("Crash server (;bkit, 60 seconds),patched",cmds)
- crash.MouseButton1Click:Connect(function()
- local var = crash:FindFirstChild("Toggle")
- if var.Value == true then
- local num = 0
- while true do
- num = num + 1
- chat(";bkit rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest rest")
- wait(1)
- if var.Value == true or num == 60 then
- turnoff(crash)
- break
- end
- end
- end
- end)
- createbutton("Clearinv others", cmds).MouseButton1Click:Connect(function()
- chat(";clearinv others")
- end)
- createbutton(";Debug", cmds).MouseButton1Click:Connect(function()
- chat(";debug")
- end)
- players = createsection("Players")
- createinfo("(YOU MUST HAVE ENLIGHTEN FOR THIS!)", players)
- plr = createtextbox("Selected Player (can be shortened)", players)
- dropdown = createdropdown("Choose Player", players)
- dropdown.MouseButton1Click:Connect(function()
- clear(dropdown)
- createdropdownbutton("All", dropdown, true).MouseButton1Click:Connect(function()
- plr.Text = "All"
- end)
- createdropdownbutton("Rest", dropdown, true).MouseButton1Click:Connect(function()
- plr.Text = "Rest"
- end)
- createdropdownbutton("Random", dropdown, true).MouseButton1Click:Connect(function()
- local ran = math.random(1,#game.Players:GetChildren())
- plr.Text = game.Players:GetChildren()[ran].Name
- end)
- local ba = createdropdownbutton("Me", dropdown, true)
- if testforAdmin(localplr.Name) then
- ba.BackgroundColor3 = Color3.new(1,1,theme.Value.B-0.3)
- end
- ba.MouseButton1Click:Connect(function()
- plr.Text = "Me"
- end)
- for _, child in ipairs(game:GetService("Players"):GetChildren()) do
- if child:IsA("Player") then
- if child.Name == localplr.Name then
- else
- local t = createdropdownbutton("Not Found", dropdown, true)
- if child.Name == child.DisplayName then
- t.Text = child.DisplayName
- else
- t.Text = child.DisplayName.." (@"..child.Name..")"
- end
- if testforAdmin(child.Name) then
- t.BackgroundColor3 = Color3.new(1,1,theme.Value.B-0.3)
- end
- t.MouseButton1Click:Connect(function()
- plr.Text = child.Name
- end)
- end
- end
- end
- end)
- local previousnum = 0
- abuse = createtoggle("Abuse Player",players)
- abuse.MouseButton1Click:Connect(function()
- local var = abuse:FindFirstChild("Toggle")
- if var.Value == true then
- while true do
- local cmds ={
- [1] = ";glitch "..plr.Text,
- [2] = ";clearinv "..plr.Text,
- [3] = ";mute "..plr.Text,
- [4] = ";blind "..plr.Text,
- [5] = ";jail "..plr.Text,
- [6] = ";noclip "..plr.Text,
- [7] = ";invisible "..plr.Text,
- [8] = ";freeze "..plr.Text,
- [9] = ";tackle "..plr.Text
- }
- local number = math.random(1,9)
- if number == previousnum then
- repeat
- number = math.random(1,9)
- until number ~= previousnum
- end
- local cmd = cmds[number]
- if plr.Text == "" or string.find(string.lower(plr.Text), "me") then
- previousnum = number
- else
- chat(cmd)
- end
- wait(0.2)
- if var.Value == true then
- break
- end
- end
- end
- end)
- crashplr = createtoggle("Crash Player (Patched)",players)
- crashplr.MouseButton1Click:Connect(function()
- local var = crashplr:FindFirstChild("Toggle")
- if var.Value == true then
- chat(";god ".. plr.Text)
- wait(0.4)
- chat(";freeze ".. plr.Text)
- wait(0.4)
- while true do
- local disabled = plr.Text
- local disabledplrs = findplr(disabled, true)
- local player = game.Players:FindFirstChild(disabledplrs[1])
- if player then
- else
- turnoff(crashplr)
- break
- end
- chat(";bkit rest rest rest rest rest rest rest")
- wait(0.5)
- local str = ""
- for i = 1,#disabledplrs do
- if disabledplrs[i] == localplr.Name then
- else
- str = str.." "..disabledplrs[i]
- end
- end
- chat(";clearinv"..str)
- wait(0.5)
- if var.Value == true then
- break
- end
- end
- end
- end)
- autodon = createtoggle("Auto Donate (60)", players)
- autodon.MouseButton1Click:Connect(function()
- local var = autodon:FindFirstChild("Toggle")
- if var.Value == true then
- while true do
- wait(59)
- if var.Value == true then
- break
- end
- normalchat(";donate "..plr.Text.." 60")
- end
- end
- end)
- loopkill = createtoggle("LoopKill", players)
- loopkill.MouseButton1Click:Connect(function()
- local var = loopkill:FindFirstChild("Toggle")
- if var.Value == true then
- while true do
- chat(";oof ".. plr.Text)
- wait(5)
- if var.Value == true then
- break
- end
- end
- end
- end)
- createbutton("Check Backpack Gears", players, false).MouseButton1Click:Connect(function()
- local fplr = findplr(plr.Text, false)[1]
- local foundplr = game.Players:FindFirstChild(fplr)
- local backpack = foundplr:FindFirstChild("Backpack")
- if backpack then
- notify(fplr.."'s Backpack")
- for v, i in ipairs(backpack:GetChildren()) do
- if i.Name == "Build"
- or i.Name == "Delete"
- or i.Name == "Paint"
- or i.Name == "Detail"
- or i.Name == "Resize"
- or i.Name == "Shovel"
- or i.Name == "Glaze"
- or i.Name == "Polish"
- or i.Name == "Toxify"
- or i.Name == "Sign"
- or i.Name == "The Arkenstone"
- or i.Name == "BTools"
- or i:IsA("RemoteEvent") then
- else
- notify(v..": "..i.Name)
- end
- end
- else
- notify("Unknown Error")
- end
- end)
- createbutton("goto", players, false).MouseButton1Click:Connect(function()
- local player = plr.Text
- localplr.Character:FindFirstChild("HumanoidRootPart").CFrame = game.Players:FindFirstChild(findplr(plr.Text,false)[1]).Character:FindFirstChild("HumanoidRootPart").CFrame
- end)
- createbutton("bring", players, false).MouseButton1Click:Connect(function()
- chat(";bring ".. plr.Text)
- end)
- createbutton("r6", players, false).MouseButton1Click:Connect(function()
- chat(";r6 ".. plr.Text)
- end)
- createbutton("delcubes", players, false).MouseButton1Click:Connect(function()
- chat(";delcubes ".. plr.Text)
- end)
- createbutton("bkit", players, false).MouseButton1Click:Connect(function()
- chat(";bkit ".. plr.Text)
- end)
- createbutton("unfly", players, false).MouseButton1Click:Connect(function()
- chat(";unfly ".. plr.Text)
- end)
- createbutton("fly", players, false).MouseButton1Click:Connect(function()
- chat(";fly ".. plr.Text)
- end)
- createbutton("oof", players, false).MouseButton1Click:Connect(function()
- chat(";oof ".. plr.Text)
- end)
- createbutton("reset", players, false).MouseButton1Click:Connect(function()
- chat(";reset ".. plr.Text)
- end)
- createbutton("clearinv", players, false).MouseButton1Click:Connect(function()
- chat(";clearinv ".. plr.Text)
- end)
- createbutton("noclip", players, false).MouseButton1Click:Connect(function()
- chat(";noclip ".. plr.Text)
- end)
- createbutton("clip", players, false).MouseButton1Click:Connect(function()
- chat(";clip ".. plr.Text)
- end)
- createbutton("stand", players, false).MouseButton1Click:Connect(function()
- chat(";stand ".. plr.Text)
- end)
- createbutton("tackle", players, false).MouseButton1Click:Connect(function()
- chat(";tackle ".. plr.Text)
- end)
- createbutton("mute", players, false).MouseButton1Click:Connect(function()
- chat(";mute ".. plr.Text)
- end)
- createbutton("unmute", players, false).MouseButton1Click:Connect(function()
- chat(";unmute ".. plr.Text)
- end)
- createbutton("enlighten", players, false).MouseButton1Click:Connect(function()
- chat(";enlighten ".. plr.Text)
- end)
- createbutton("disarm", players, false).MouseButton1Click:Connect(function()
- chat(";disarm ".. plr.Text)
- end)
- createbutton("explode", players, false).MouseButton1Click:Connect(function()
- chat(";explode ".. plr.Text.." 5")
- end)
- createbutton("freeze", players, false).MouseButton1Click:Connect(function()
- chat(";freeze ".. plr.Text)
- end)
- createbutton("unfreeze", players, false).MouseButton1Click:Connect(function()
- chat(";unfreeze ".. plr.Text)
- end)
- extras = createsection("Extras")
- timestop = createtoggle("Disable Time Stopping", extras)
- timestop.MouseButton1Click:Connect(function()
- local var = timestop:FindFirstChild("Toggle")
- if var.Value == true then
- game:GetService("ReplicatedStorage"):FindFirstChild("System").Name = "Systemd"
- wait()
- while true do
- game:GetService("ReplicatedStorage"):FindFirstChild("Systemd"):FireServer("Input")
- if var.Value == true then
- game:GetService("ReplicatedStorage"):FindFirstChild("Systemd").Name = "System"
- break
- end
- wait(0.1)
- end
- end
- end)
- createbutton("Reset Character",extras,false).MouseButton1Click:Connect(function()
- localplr.Character.Humanoid.Health = 0
- end)
- command = createtextbox("Execute Hidden Command",extras)
- createbutton("Execute",extras).MouseButton1Click:Connect(function()
- normalchat(command.Text)
- end)
- local henlighten = createhiddenmenu("Enlighten Stash")
- createbutton("Stash Menu",extras).MouseButton1Click:Connect(function()
- openmenu(henlighten)
- end)
- local x, y, z
- local crds = createinfo("Stash Coordinates", henlighten)
- x = math.floor(math.random(5000,10000)*3)
- y = math.floor(math.random(10000,100000)*3)
- z = math.floor(math.random(50000,100000)*3)
- crds.Text = x..","..y..","..z
- createbutton("Randomize Position",henlighten).MouseButton1Click:Connect(function()
- x = math.floor(math.random(5000,10000)*3)
- y = math.floor(math.random(10000,100000)*3)
- z = math.floor(math.random(50000,100000)*3)
- crds.Text = x..","..y..","..z
- end)
- local function createstash()
- x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- local equip = localplr.Character:FindFirstChild("Build")
- if equip then
- equip.Parent = localplr.Backpack
- end
- task.wait(.1)
- localplr.Character.HumanoidRootPart.Anchored = true
- createblock(x,y-3,z)
- createblock(x,y,z+3)
- createblock(x,y-3,z-3)
- createblock(x,y-3,z-6)
- createblock(x,y-3,z-9)
- createblock(x,y-3,z-12)
- createblock(x,y-3,z-15)
- createblock(x,y,z-18)
- createblock(x+3,y-3,z)
- createblock(x+3,y,z+3)
- createblock(x+3,y-3,z-3)
- createblock(x+3,y-3,z-6)
- createblock(x+3,y-3,z-9)
- createblock(x+3,y-3,z-12)
- createblock(x+3,y-3,z-15)
- createblock(x+3,y,z-18)
- createblock(x-3,y-3,z)
- createblock(x-3,y,z+3)
- createblock(x-3,y-3,z-3)
- createblock(x-3,y-3,z-6)
- createblock(x-3,y-3,z-9)
- createblock(x-3,y-3,z-12)
- createblock(x-3,y-3,z-15)
- createblock(x-3,y,z-18)
- createblock(x-6,y,z)
- createblock(x-6,y,z-3)
- createblock(x-6,y,z-6)
- createblock(x-6,y,z-9)
- createblock(x-6,y,z-12)
- createblock(x-6,y,z-15)
- createblock(x+6,y,z)
- createblock(x+6,y,z-3)
- createblock(x+6,y,z-6)
- createblock(x+6,y,z-9)
- createblock(x+6,y,z-12)
- createblock(x+6,y,z-15)
- local function refreeze()
- wait(1)
- localplr.Character.HumanoidRootPart.Anchored = false
- local cord = CFrame.new(x,y+3,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- end
- task.spawn(refreeze)
- end
- createbutton("Create Stash", henlighten).MouseButton1Click:Connect(createstash)
- createbutton("Teleport To Stash", henlighten).MouseButton1Click:Connect(function()
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- end)
- createbutton("Teleport Back", henlighten).MouseButton1Click:Connect(function()
- local spawnpoint = game.Workspace:FindFirstChildWhichIsA("SpawnLocation")
- localplr.Character.HumanoidRootPart.CFrame = spawnpoint.CFrame + Vector3.new(0,5,0)
- end)
- createbutton("Drop Holding Tool To Stash", henlighten).MouseButton1Click:Connect(function()
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- local char = localplr.Character or localplr.CharacterAdded:Wait()
- local tool = char:FindFirstChildWhichIsA("Tool")
- if tool then
- tool.Parent = workspace
- end
- end)
- createbutton("Drop All Tools To Stash", henlighten).MouseButton1Click:Connect(function()
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- for i,v in pairs(localplr.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = localplr.Character
- end
- end
- wait()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- end
- end
- end)
- createbutton("Get 100 Enlighten", henlighten).MouseButton1Click:Connect(function()
- chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
- end)
- createbutton("Get 1 Enlighten and drop it", henlighten).MouseButton1Click:Connect(function()
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord + Vector3.new(0,4,0)
- chat(";enlighten me")
- wait(.8)
- chat(";disarm")
- end)
- createinfo("Stashers",henlighten)
- createbutton("Pick Up 1 Enlighten from stash", henlighten).MouseButton1Click:Connect(function()
- local humanoid = char:FindFirstChildOfClass("Humanoid")
- local tool = workspace:FindFirstChild("The Arkenstone")
- if tool and humanoid then
- if tool.Handle and tool.Handle:FindFirstChild("TouchInterest") then
- humanoid:EquipTool(tool)
- end
- end
- end)
- createbutton("Fill Stash", henlighten).MouseButton1Click:Connect(function()
- notify("Filling Stash...")
- chat(";r6")
- x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
- task.wait(3)
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
- task.wait(2)
- for i,v in pairs(localplr.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- if v.Name == "The Arkenstone" then
- v.Parent = localplr.Character
- end
- end
- end
- wait()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = workspace
- end
- end
- end)
- delstashnotif = createtoggle("Notify when stash was deleted.",henlighten)
- local dsn = delstashnotif:FindFirstChild("Toggle")
- debugnotif = createtoggle("Notify when debug", henlighten)
- local dn = debugnotif:FindFirstChild("Toggle")
- createinfo("Auto Features Are Buggy+Unstable!", henlighten)
- fill = createtoggle("Auto Fill Stash On Debug", henlighten)
- local fillvar = fill:FindFirstChild("Toggle")
- build = createtoggle("Auto Build On Delcubes + Fill", henlighten)
- local buildvar = build:FindFirstChild("Toggle")
- pickup = createtoggle("Auto Pick Up Enlighten On Clearinv",henlighten)
- local pickvar = pickup:FindFirstChild("Toggle")
- local function containsIgnoreCase(str, pattern)
- return string.find(string.lower(str), string.lower(pattern)) ~= nil
- end
- local function get()
- local back = localplr:FindFirstChild("Backpack")
- if back then
- if pickvar.Value == false then
- if not back:FindFirstChild("The Arkenstone") then
- local enl = localplr.Backpack:FindFirstChild("The Arkenstone")
- if not enl then
- local humanoid = char:FindFirstChildOfClass("Humanoid")
- local tool = workspace:FindFirstChild("The Arkenstone")
- if tool and humanoid then
- if tool.Handle and tool.Handle:FindFirstChild("TouchInterest") then
- humanoid:EquipTool(tool)
- end
- end
- end
- end
- end
- end
- end
- localplr.CharacterAdded:Connect(function()
- if neon:FindFirstChild("Toggle").Value == false then
- localplr.Character:WaitForChild("Neon").Enabled = false
- end
- local back = localplr:FindFirstChild("Backpack")
- if back then
- back.ChildRemoved:Connect(function(tool)
- get()
- end)
- get()
- end
- end)
- local Players = game:GetService("Players")
- local localPlayer = Players.LocalPlayer
- -- Function to handle ChildRemoved event
- local function onChildRemoved(tool)
- get()
- end
- -- Function to set up the ChildRemoved connection
- local function setupBackpackListener()
- local backpack = localPlayer:WaitForChild("Backpack", 10) -- Wait for the Backpack instance
- if backpack then
- backpack.ChildRemoved:Connect(onChildRemoved)
- else
- warn("Backpack not found within the expected time")
- end
- end
- -- Initial setup
- setupBackpackListener()
- -- Listen for character respawn and re-setup the Backpack listener
- localPlayer.CharacterAdded:Connect(function(character)
- setupBackpackListener()
- end)
- crashprevent = createtoggle("Anti Bkit Crash (Enlighten)", antis)
- local crashpreventvalue = crashprevent:FindFirstChild("Toggle")
- local function handleChat(p, msg)
- if crashpreventvalue.Value == false then
- if containsIgnoreCase(msg, "########################################################")
- or containsIgnoreCase(msg, "kit rest ")
- or containsIgnoreCase(msg, "kit others ")
- or containsIgnoreCase(msg, "kit other's ")
- or containsIgnoreCase(msg, "kit @o ") then
- if p.Character:FindFirstChild("The Arkenstone") then
- chat(";reset " .. p.Name)
- notify(p.Name .. " tried to crash the server")
- end
- end
- end
- if fillvar.Value == false then
- if containsIgnoreCase(msg, "debug") then
- notify("Auto Filling Stash...")
- chat(";r6")
- x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
- task.wait(3)
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
- task.wait(2)
- for i,v in pairs(localplr.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- if v.Name == "The Arkenstone" then
- v.Parent = localplr.Character
- end
- end
- end
- wait()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = workspace
- end
- end
- end
- end
- if buildvar.Value == false then
- if containsIgnoreCase(msg,"delcubes ") then
- if #game.Workspace.Cubes:FindFirstChild(localplr.Name):GetChildren() == 0 then
- notify("Auto Building stash...")
- chat(";bkit me")
- task.wait(.1)
- createstash()
- wait(25)
- notify("Auto Filling Stash...")
- chat(";r6")
- x, y, z = crds.Text:match("(%d+),%s*(%d+),%s*(%d+)")
- task.wait(3)
- local cord = CFrame.new(x,y,z)
- localplr.Character.HumanoidRootPart.CFrame = cord
- chat(";enlighten me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me me")
- task.wait(2)
- for i,v in pairs(localplr.Backpack:GetChildren()) do
- if v:IsA("Tool") then
- if v.Name == "The Arkenstone" then
- v.Parent = localplr.Character
- end
- end
- end
- wait()
- for i,v in pairs(localplr.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = workspace
- end
- end
- end
- end
- end
- if aac.Value == false then
- if containsIgnoreCase(msg, "########################################################")
- or containsIgnoreCase(msg, "kit rest ")
- or containsIgnoreCase(msg, "kit others ")
- or containsIgnoreCase(msg, "kit other's ")
- or containsIgnoreCase(msg, "kit @o ") then
- anticrash()
- end
- end
- if dsn.Value == false then
- if containsIgnoreCase(msg,"delcubes ") then
- if #game.Workspace.Cubes:FindFirstChild(localplr.Name):GetChildren() == 0 then
- notify("Stash was deleted!\n By "..p.Name)
- end
- end
- end
- if dn.Value == false then
- if containsIgnoreCase(msg, "debug") then
- notify("Debug.\n"..p.Name.." Did debug")
- end
- end
- end
- local function connectPlayerChat(p)
- p.Chatted:Connect(function(msg)
- handleChat(p, msg)
- end)
- end
- for _, p in ipairs(game.Players:GetPlayers()) do
- if p.Name ~= localplr.Name then
- connectPlayerChat(p)
- end
- end
- game.Players.PlayerAdded:Connect(function(p)
- if p.Name ~= localplr.Name then
- connectPlayerChat(p)
- end
- end)
- createbutton("Camera INF Distance Zoom", extras).MouseButton1Click:Connect(function()
- localplr.CameraMaxZoomDistance = 100000
- end)
- invis = createtoggle("Invisible (Underground)",extras)
- invis.MouseButton1Click:Connect(function()
- local var = invis:FindFirstChild("Toggle")
- if var.Value == true then
- for _, i in ipairs(game.Workspace.Trrain:GetChildren()) do
- if i.Name == "Chunk" then
- for _, v in ipairs(i:GetChildren()) do
- v.Transparency = 1
- v.CanCollide = false
- end
- end
- end
- else
- for _, i in ipairs(game.Workspace.Trrain:GetChildren()) do
- if i.Name == "Chunk" then
- for _, v in ipairs(i:GetChildren()) do
- v.Transparency = 0
- v.CanCollide = true
- end
- end
- end
- localplr.Character.HumanoidRootPart.CFrame = localplr.Character.HumanoidRootPart.CFrame + Vector3.new(0,50,0)
- end
- end)
- fe = createsection("Scripts")
- createbutton("Execute IY", fe, false).MouseButton1Click:Connect(function()
- if hasFunction("HttpGet") then
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- else
- notify("Sorry, No HTTPGET Support! Try _G.IY() if youre on cheat engine.")
- end
- end)
- createbutton("Execute Spy", fe, false).MouseButton1Click:Connect(function()
- local Config = {
- enabled = true,
- spyOnMyself = false,
- public = false,
- publicItalics = true
- }
- local PrivateProperties = {
- Color = Color3.fromRGB(0,255,255);
- Font = Enum.Font.SourceSansBold;
- TextSize = 18;
- }
- local StarterGui = game:GetService("StarterGui")
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- local saymsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("SayMessageRequest")
- local getmsg = game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):WaitForChild("OnMessageDoneFiltering")
- local instance = (_G.chatSpyInstance or 0) + 1
- _G.chatSpyInstance = instance
- local function onChatted(p,msg)
- if _G.chatSpyInstance == instance then
- if p==player and msg:lower():sub(1,4)=="/spy" then
- Config.enabled = not Config.enabled
- wait(0.3)
- PrivateProperties.Text = "{SPY "..(Config.enabled and "EN" or "DIS").."ABLED}"
- StarterGui:SetCore("ChatMakeSystemMessage", PrivateProperties)
- elseif Config.enabled and (Config.spyOnMyself==true or p~=player) then
- msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
- local hidden = true
- local conn = getmsg.OnClientEvent:Connect(function(packet,channel)
- if packet.localplrUserId==p.UserId and packet.Message==msg:sub(#msg-#packet.Message+1) and (channel=="All" or (channel=="Team" and Config.public==false and Players[packet.Fromlocalplr].Team==player.Team)) then
- hidden = false
- end
- end)
- wait(1)
- conn:Disconnect()
- if hidden and Config.enabled then
- if Config.public then
- saymsg:FireServer((Config.publicItalics and "/me " or '').."{SPY} [".. p.Name .."]: "..msg,"All")
- else
- PrivateProperties.Text = "{SPY} [".. p.Name .."]: "..msg
- StarterGui:SetCore("ChatMakeSystemMessage", PrivateProperties)
- end
- end
- end
- end
- end
- for _,p in ipairs(Players:GetPlayers()) do
- p.Chatted:Connect(function(msg) onChatted(p,msg) end)
- end
- Players.PlayerAdded:Connect(function(p)
- p.Chatted:Connect(function(msg) onChatted(p,msg) end)
- end)
- PrivateProperties.Text = "{SPY "..(Config.enabled and "EN" or "DIS").."ABLED}"
- StarterGui:SetCore("ChatMakeSystemMessage", PrivateProperties)
- local chatFrame = player.PlayerGui.Chat.Frame
- chatFrame.ChatChannelParentFrame.Visible = true
- chatFrame.ChatBarParentFrame.Position = chatFrame.ChatChannelParentFrame.Position+UDim2.new(UDim.new(),chatFrame.ChatChannelParentFrame.Size.Y)
- end)
- local AntiFling = false
- local flinging
- createbutton("Touch Fling (Toggle)", fe).MouseButton1Click:Connect(function()
- if not localplr.Character then
- return notify("You don't have a character.")
- end
- local rootPart = localplr.Character:FindFirstChild("HumanoidRootPart")
- if not rootPart then
- return notify("You don't have a root part.")
- end
- local dir = 0.1
- if flinging then
- flinging = false
- else
- notify("Touch Fling enabled")
- flinging = true
- local should = true
- if AntiFling == false then
- should = true
- AntiFling = true
- end
- while flinging and rootPart and rootPart.Parent and rootPart.Parent.Parent do
- rs.Heartbeat:Wait()
- local velocity = rootPart.Velocity
- rootPart.Velocity = ((velocity * 10000) + Vector3.new(0, 10000, 0))
- rs.RenderStepped:Wait()
- rootPart.Velocity = velocity
- rs.RenderStepped:Wait()
- rootPart.Velocity = velocity + Vector3.new(0, dir, 0)
- dir *= -1
- end
- notify("Touch Fling disabled")
- flinging = false
- if should == true then
- AntiFling = false
- end
- end
- end)
- createbutton("Telekinesis", fe).MouseButton1Click:Connect(function()
- if hasFunction("HttpGet") then
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/KbEZjNXm"))()
- else
- notify("no httpget support D:")
- end
- end)
- createbutton("Anti Exploiters Fling (Toggle)", fe).MouseButton1Click:Connect(function()
- if AntiFling == false then
- notify("Antifling Enabled");
- AntiFling = true
- while AntiFling do game:GetService('RunService').Stepped:Wait()
- for _,player in pairs(game:GetService('Players'):GetPlayers()) do
- if player~=game.Players.LocalPlayer then
- pcall(function()
- for _,descendant in pairs(player.Character:GetDescendants()) do
- pcall(function()
- if descendant:IsA('BasePart') and descendant.CanCollide then
- descendant.CanCollide = false
- end
- end)
- end
- end)
- end
- end
- end
- else
- AntiFling = false
- notify("AntiFling Disabled")
- for _,player in pairs(game:GetService('Players'):GetPlayers()) do
- for _,descendant in player.Character:GetDescendants() do
- if descendant:IsA('BasePart') and not descendant.CanCollide then
- descendant.CanCollide = true
- end
- end
- end
- end
- end)
- local grabtoolsFunc
- grabtools = createtoggle("GrabTools", fe)
- local gb = grabtools:FindFirstChild("Toggle")
- grabtools.MouseButton1Click:Connect(function()
- if gb.Value == true then
- local humanoid = localplr.Character:FindFirstChildWhichIsA("Humanoid")
- for _, child in ipairs(workspace:GetChildren()) do
- if localplr.Character and child:IsA("BackpackItem") and child:FindFirstChild("Handle") then
- humanoid:EquipTool(child)
- end
- end
- if grabtoolsFunc then
- grabtoolsFunc:Disconnect()
- end
- grabtoolsFunc = workspace.ChildAdded:Connect(function(child)
- if localplr.Character and child:IsA("BackpackItem") and child:FindFirstChild("Handle") then
- humanoid:EquipTool(child)
- end
- end)
- notify("Turned on")
- else
- if grabtoolsFunc then
- notify("Turned off")
- grabtoolsFunc:Disconnect()
- end
- end
- end)
- createbutton("TP Tool",fe).MouseButton1Click:Connect(function()
- local a=game:service'Players'.LocalPlayer
- local b=Instance.new('Tool',a.Backpack)
- local g=game:service'TweenService'
- b.RequiresHandle=false
- b.Name='Tp'
- b.Activated:Connect(function()
- a.Character.HumanoidRootPart.CFrame = CFrame.new(a:GetMouse().Hit.Position+Vector3.new(0,5,0))
- end)
- end)
- local function refresh()
- local Char = localplr.Character or localplr.CharacterAdded:Wait()
- local Human = Char and Char:WaitForChild('Humanoid', 15)
- local Animate = Char and Char:WaitForChild('Animate', 15)
- if not Human or not Animate then
- return notify('Refresh Animations', 'Failed to get Animate/Humanoid')
- end
- Animate.Disabled = true
- for _, v in ipairs(Human:GetPlayingAnimationTracks()) do
- v:Stop()
- end
- Animate.Disabled = false
- end
- local function getRoot(char)
- local rootPart = char:FindFirstChild('HumanoidRootPart') or char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
- return rootPart
- end
- local hitmode
- local hitclick
- createbutton("Hit Mode (Toggle)",fe).MouseButton1Click:Connect(function()
- for _, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA('Tool') or v:IsA('HopperBin') then
- v.Animation.AnimationId = " "
- end
- end
- if not hitmode then
- hitmode = true
- notify("Hitmode: On")
- local play = false
- local hitAnim = Instance.new("Animation")
- local Player = game.Players.LocalPlayer
- local Mouse = Player:GetMouse()
- hitclick = Mouse.Button1Down:Connect(function()
- local randomanim
- if not play then
- play = true
- for i, track in pairs (game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
- track:Stop()
- game.Players.LocalPlayer.Character.Animate.Disabled = true
- end
- if localplr.Character:FindFirstChildOfClass('Humanoid').Jump == true then
- randomanim = math.random(12, 13)
- else
- randomanim = math.random(1, 13)
- end
- if randomanim == 1 then
- hitAnim.AnimationId = "rbxassetid://3334832150"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 0.4
- wait(.5)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 2 then
- hitAnim.AnimationId = "rbxassetid://3334832150"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 1
- hit:AdjustSpeed(0.1)
- wait(.3)
- play = false
- refresh()
- elseif randomanim == 3 then
- hitAnim.AnimationId = "rbxassetid://3334968680"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 1.2
- wait(.4)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 4 then
- hitAnim.AnimationId = "rbxassetid://3236842542"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 3.1
- wait(.6)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 5 then
- hitAnim.AnimationId = "rbxassetid://7202863182"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 5.1
- wait(.3)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 6 then
- hitAnim.AnimationId = "rbxassetid://7202863182"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 5.38
- wait(.7)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 7 then
- hitAnim.AnimationId = "rbxassetid://4841403964"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 1.2
- wait(.9)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 8 then
- hitAnim.AnimationId = "rbxassetid://3695300085"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 1.3
- wait(.5)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 9 then
- hitAnim.AnimationId = "rbxassetid://3337966527"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, -1)
- hit.TimePosition = .7
- wait(.9)
- play = false
- refresh()
- elseif randomanim == 10 then
- hitAnim.AnimationId = "rbxassetid://3334832150"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, -1)
- hit.TimePosition = 3.8
- wait(1)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 11 then
- hitAnim.AnimationId = "rbxassetid://3334968680"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, -1)
- hit.TimePosition = 1.6
- wait(.5)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 12 then
- hitAnim.AnimationId = "rbxassetid://5104344710"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = .5
- for i = 1, 15 do
- getRoot(localplr.Character).CFrame = getRoot(localplr.Character).CFrame * CFrame.new(0,0,-0.1) * CFrame.Angles(0,math.rad(0),0)
- wait()
- end
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 13 then
- hitAnim = Instance.new("Animation")
- for i, track in pairs (game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
- track:Stop()
- game.Players.LocalPlayer.Character.Animate.Disabled = true
- end
- hitAnim.AnimationId = "rbxassetid://5104344710"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, -1)
- hit.TimePosition = 1.1
- for i = 1, 15 do
- getRoot(localplr.Character).CFrame = getRoot(localplr.Character).CFrame * CFrame.new(0,0,-0.2) * CFrame.Angles(0,math.rad(0),0)
- wait()
- end
- wait(.7)
- play = false
- refresh()
- end
- end
- end)
- else
- hitclick:Disconnect()
- hitmode = false
- notify("Hitmode: Off")
- end
- end)
- local hitmode
- local hitclick
- local play
- createbutton("Punch Mode (Toggle)",fe).MouseButton1Click:Connect(function()
- if not hitmode then
- hitmode = true
- notify("Punchmode: On")
- local hitAnim = Instance.new("Animation")
- local Player = game.Players.LocalPlayer
- local Mouse = Player:GetMouse()
- hitclick = Mouse.Button1Down:Connect(function()
- if not play then
- play = true
- for i, track in pairs (game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()) do
- track:Stop()
- game.Players.LocalPlayer.Character.Animate.Disabled = true
- end
- local randomanim = math.random(1, 2)
- if randomanim == 1 then
- hitAnim.AnimationId = "rbxassetid://7202863182"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 5.38
- wait(.7)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 2 then
- hitAnim.AnimationId = "rbxassetid://7202863182"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 5.1
- wait(.3)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- elseif randomanim == 3 then
- hitAnim.AnimationId = "rbxassetid://4841403964"
- local hit = localplr.Character:FindFirstChildOfClass('Humanoid'):LoadAnimation(hitAnim)
- hit:Play(.1, 1, 1)
- hit.TimePosition = 1.2
- wait(.7)
- hit:AdjustSpeed(0)
- wait(.2)
- play = false
- refresh()
- end
- end
- end)
- else
- hitclick:Disconnect()
- hitmode = false
- notify("Punchmode: Off")
- end
- end)
- createbutton("Refresh Animations", fe).MouseButton1Click:Connect(function()
- refresh()
- end)
- emote = createsection("Emotes")
- local emotes = {
- ["Around Town"] = 3303391864,
- ["Top Rock"] = 3361276673,
- ["Fashionable"] = 3333331310,
- ["Robot"] = 3338025566,
- ["Twirl"] = 3334968680,
- ["Jacks"] = 3338066331,
- ["T"] = 3338010159,
- ["Shy"] = 3337978742,
- ["Monkey"] = 3333499508,
- ["Borock's Rage"] = 3236842542,
- ["Ud'zal's Summoning"] = 3303161675,
- ["Hype Dance"] = 3695333486,
- ["Godlike"] = 3337994105,
- ["Swoosh"] = 3361481910,
- ["Sneaky"] = 3334424322,
- ["Side to Side"] = 3333136415,
- ["Greatest"] = 3338042785,
- ["Louder"] = 3338083565,
- ["Beckon"] = 5230598276,
- ["Bored"] = 5230599789,
- ["Cower"] = 4940563117,
- ["Tantrum"] = 5104341999,
- ["Hero Landing"] = 5104344710,
- ["Confused"] = 4940561610,
- ["Jumping Wave"] = 4940564896,
- ["Keeping Time"] = 4555808220,
- ["Agree"] = 4841397952,
- ["Power Blast"] = 4841403964,
- ["Disagree"] = 4841401869,
- ["Sleep"] = 4686925579,
- ["Sad"] = 4841407203,
- ["Happy"] = 4841405708,
- ["Chicken Dance"] = 4841399916,
- ["Bunny Hop"] = 4641985101,
- ["Air Dance"] = 4555782893,
- ["Curtsy"] = 4555816777,
- ["Zombie"] = 4210116953,
- ["Fast Hands"] = 4265701731,
- ["Baby Dance"] = 4265725525,
- ["Celebrate"] = 3338097973,
- ["Fancy Feet"] = 3333432454,
- ["Y"] = 4349285876,
- ["Shuffle"] = 4349242221,
- ["Bodybuilder"] = 3333387824,
- ["Sandwich Dance"] = 4406555273,
- ["Dorky Dance"] = 4212455378,
- ["Heisman Pose"] = 3695263073,
- ["Superhero Reveal"] = 3695373233,
- ["Dizzy"] = 3361426436,
- ["Get Out"] = 3333272779,
- ["Fishing"] = 3334832150,
- ["Tree"] = 4049551434,
- ["Line Dance"] = 4049037604,
- ["Idol"] = 4101966434,
- ["Haha"] = 3337966527,
- ["Salute"] = 3333474484,
- ["Hello"] = 3344650532,
- ["Air Guitar"] = 3695300085,
- ["Cha Cha"] = 3695322025,
- ["Shrug"] = 3334392772,
- ["Point2"] = 3344585679,
- ["Tilt"] = 3334538554,
- ["Stadium"] = 3338055167,
- ["Dolphin"] = 5918726674,
- ["Applaud"] = 5915693819,
- ["Break Dance"] = 5915648917,
- ["Jumping Cheer"] = 5895324424,
- ["Floss Dance"] = 5917459365,
- ["Rock On"] = 5915714366,
- ["High Wave"] = 5915690960,
- ["Old Town Road Dance"] = 5937560570,
- ["Rodeo Dance"] = 5918728267,
- ["HOLIDAY Dance"] = 5937558680,
- ["Panini Dance"] = 5915713518,
- ["Country Line Dance "] = 5915712534,
- ["hips poppin"] = 6797888062,
- ["take me under"] = 6797890377,
- ["it ain't my fault"] = 6797891807,
- ["rock guitar"] = 6532134724,
- ["rock star"] = 6533093212,
- ["drum master"] = 6531483720,
- ["drum solo"] = 6532839007,
- ["samba"] = 6869766175,
- ["block partier"] = 6862022283,
- ["boxing punch"] = 7202863182,
- ["show dem wrists"] = 7198989668,
- ["wake up call"] = 7199000883,
- ["drummer moves"] = 7422527690,
- ["on the outside"] = 7422779536,
- ["dancin shoes"] = 7404878500,
- ["saturday dance"] = 7422807549,
- ["up and down"] = 7422797678,
- ["swan dance"] = 7465997989,
- ["flowing breeze"] = 7465946930,
- ["quiet waves"] = 7465981288,
- ["aok"] = 7942885103,
- ["cobra arms"] = 7942890105,
- ["lasso turn"] = 7942896991
- }
- createbutton("Stop Emotes", emote).MouseButton1Click:Connect(function()
- refresh()
- end)
- for v, i in pairs(emotes) do
- function PlayAnim(id)
- refresh()
- local plr = game.Players.LocalPlayer
- local hum = plr.Character.Humanoid
- plr.Character.Animate.Disabled = true
- local Anim = Instance.new("Animation")
- Anim.AnimationId = "rbxassetid://"..id
- local loadanim = hum:LoadAnimation(Anim)
- loadanim:Play()
- loadanim:AdjustSpeed(1)
- loadanim.Stopped:Connect(function()
- plr.Character.Animate.Disabled = false
- end)
- end
- function StopAnims()
- game.Players.LocalPlayer.Character.Animate.Disabled = false
- local animtrack = game.Players.LocalPlayer.Character.Humanoid:GetPlayingAnimationTracks()
- for i, track in pairs (animtrack) do
- track:Stop()
- end
- end
- createbutton(v,emote).MouseButton1Click:Connect(function()
- PlayAnim(emotes[v])
- end)
- end
- animations = createsection("Animations")
- createbutton("Default Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://2510196951"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://2510197257"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://2510202577"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://2510198475"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://2510197830"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://2510192778"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://2510195892"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("None Animation").MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://0"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://0"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://0"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://0"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://0"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://0"
- char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://0"
- char.Animate.swim.Swim.AnimationId = "rbxassetid://0"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("RTHRO Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://2510196951"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://2510197257"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://2510202577"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://2510198475"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://2510197830"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://2510195892"
- char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://02510201162"
- char.Animate.swim.Swim.AnimationId = "rbxassetid://2510199791"
- char.Animate.climb.climb.Animationid = "rbxassetid://2510192778"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Austronaut Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://891621366"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://891633237"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://891667138"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://891636393"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://891627522"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://891609353"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://891617961"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Bubbly Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://910004836"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://910009958"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://910034870"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://910025107"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://910016857"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://910001910"
- char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://910030921"
- char.Animate.swim.Swim.AnimationId = "rbxassetid://910028158"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Cartoony Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://742637544"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://742638445"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://742640026"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://742638842"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://742637942"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://742636889"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://742637151"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Confident Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1069977950"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1069987858"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1070017263"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1070001516"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1069984524"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1069946257"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1069973677"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Cowboy Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1014390418"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1014398616"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1014421541"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1014401683"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1014394726"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1014380606"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1014384571"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Elder Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://845397899"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://845400520"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://845403856"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://845386501"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://845398858"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://845392038"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://845396048"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Ghost Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://616006778"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://616008087"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616013216"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://616013216"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616008936"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616005863"
- char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://616012453"
- char.Animate.swim.Swim.AnimationId = "rbxassetid://616011509"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Knight Animations", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://657595757"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://657568135"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://657552124"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://657564596"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://658409194"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://658360781"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://657600338"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Levitation Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://616006778"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://616008087"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616013216"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://616010382"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616008936"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616003713"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616005863"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Mage Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://707742142"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://707855907"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://707897309"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://707861613"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://707853694"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://707826056"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://707829716"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Ninja Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://656117400"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://656118341"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://656121766"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://656118852"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://656117878"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://656114359"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://656115606"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Old School Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://5319828216"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://5319831086"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://5319847204"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://5319844329"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://5319841935"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://5319839762"
- char.Animate.swimidle.SwimIdle.AnimationId = "rbxassetid://5319852613"
- char.Animate.swim.Swim.AnimationId = "rbxassetid://5319850266"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Patrol Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1149612882"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1150842221"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1151231493"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1150967949"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1148811837"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1148811837"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1148863382"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Pirate Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://750781874"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://750782770"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://750785693"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://750783738"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://750782230"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://750779899"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://750780242"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Pop Star Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1212900985"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1150842221"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1212980338"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1212980348"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1212954642"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1213044953"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1212900995"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Princess Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://941003647"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://941013098"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://941028902"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://941015281"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://941008832"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://940996062"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://941000007"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Robot Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://616088211"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://616089559"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616095330"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://616091570"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616090535"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616086039"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616087089"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Sneaky Animation",animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1132473842"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1132477671"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1132510133"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1132494274"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1132489853"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1132461372"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1132469004"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Stylish Animation",animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://616136790"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://616138447"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616146177"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://616140816"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616139451"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616133594"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616134815"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Superhero Animation",animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://616111295"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://616113536"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616122287"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://616117076"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616115533"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616104706"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616108001"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Toy Animation",animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://782841498"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://782845736"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://782843345"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://782842708"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://782847020"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://782843869"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://782846423"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Vampire Animation",animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1083445855"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1083450166"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1083473930"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1083462077"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1083455352"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1083439238"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1083443587"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Werewolf Animation",animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://1083195517"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://1083214717"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://1083178339"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://1083216690"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://1083218792"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://1083182000"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://1083189019"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- createbutton("Zombie Animation", animations).MouseButton1Click:Connect(function()
- local R15 = localplr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15
- if R15 then
- local char = localplr.Character
- char.Animate.idle.Animation1.AnimationId = "rbxassetid://616158929"
- char.Animate.idle.Animation2.AnimationId = "rbxassetid://616160636"
- char.Animate.walk.WalkAnim.AnimationId = "rbxassetid://616168032"
- char.Animate.run.RunAnim.AnimationId = "rbxassetid://616163682"
- char.Animate.jump.JumpAnim.AnimationId = "rbxassetid://616161997"
- char.Animate.climb.ClimbAnim.AnimationId = "rbxassetid://616156119"
- char.Animate.fall.FallAnim.AnimationId = "rbxassetid://616157476"
- else
- notify('R15 animation pack',"Must be R15")
- end
- end)
- credits = createsection("Settings")
- createinfo("Main Scripter: 123XxXMegaProXxX123", credits)
- createinfo("UI Design: 123XxXMegaProXxX123",credits)
- createinfo("Tester: poier582", credits)
- createinfo("DONT FORGET!!! You can scroll in menus!", credits)
- color = createtextbox("Color Theme... (RGB): 255, 255, 255",credits)
- color.FocusLost:Connect(function()
- local r, g, b = color.Text:match("(%d+),%s*(%d+),%s*(%d+)")
- if r and g and b then
- theme.Value = Color3.fromRGB(tonumber(r), tonumber(g), tonumber(b))
- else
- color.Text = ""
- notify("Invalid input format. Please enter RGB values separated by commas.")
- end
- end)
- local start
- if Main:FindFirstChild(startmenu.."menu") then
- start = Main:FindFirstChild(startmenu.."menu")
- else
- start = ""
- end
- openmenu(start)
- notify(successmessage)
- THO.Enabled = true
Add Comment
Please, Sign In to add comment