Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
local Forums = {} local minimized = false local tween = game:GetService("TweenService") local tweeninfo = TweenInfo.new local input = game:GetService("UserInputService") local run = game:GetService("RunService") function Forums:DraggingEnabled(frame, parent) parent = parent or frame -- stolen from wally or kiriot, kek local dragging = false local dragInput, mousePos, framePos frame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true mousePos = input.Position framePos = parent.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) frame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end end) input.InputChanged:Connect(function(input) if input == dragInput and dragging then local delta = input.Position - mousePos game.TweenService:Create(parent, TweenInfo.new(0.08, Enum.EasingStyle.Linear, Enum.EasingDirection.In), { Position = UDim2.new(framePos.X.Scale, framePos.X.Offset + delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y) }):Play() --parent.Position = UDim2.new(framePos.X.Scale, framePos.X.Offset + delta.X, framePos.Y.Scale, framePos.Y.Offset + delta.Y) end end) end function Forums:UIMinimize() if minimized then game.TweenService:Create(game.CoreGui[getgenv().libName].shadow.Main, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0, 486, 0, 283) }):Play() wait() game.TweenService:Create(game.CoreGui[getgenv().libName].shadow, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 0 }):Play() minimized = false else game.TweenService:Create(game.CoreGui[getgenv().libName].shadow, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 1 }):Play() wait() game.TweenService:Create(game.CoreGui[getgenv().libName].shadow.Main, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,0,0,0) }):Play() minimized = true end end function Forums.new(newName) for i,v in pairs(game.CoreGui:GetChildren()) do if v.Name == newName then v:Destroy() end end getgenv().libName = newName newName = newName or "forum.robloxscripts.com" local _81asf91z9asf1 = Instance.new("ScreenGui") local shadow = Instance.new("ImageLabel") local Main = Instance.new("Frame") local header = Instance.new("Frame") local title = Instance.new("TextLabel") local triangle1 = Instance.new("ImageLabel") local triangle = Instance.new("ImageLabel") local close = Instance.new("ImageButton") local containerHolder = Instance.new("Frame") local pages = Instance.new("Folder") local newPage = Instance.new("ScrollingFrame") local sectionList = Instance.new("UIListLayout") local UIListLayout = Instance.new("UIListLayout") local UIListLayout_2 = Instance.new("UIListLayout") Forums:DraggingEnabled(header, shadow) UIListLayout.Parent = Main UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder _81asf91z9asf1.Name = newName _81asf91z9asf1.Parent = game.CoreGui _81asf91z9asf1.ZIndexBehavior = Enum.ZIndexBehavior.Sibling shadow.Name = "shadow" shadow.Parent = _81asf91z9asf1 shadow.BackgroundColor3 = Color3.fromRGB(255, 255, 255) shadow.BackgroundTransparency = 1.000 shadow.Position = UDim2.new(0.377575755, 0, 0.382281542, 0) shadow.Size = UDim2.new(0, 539, 0, 317) shadow.ZIndex = 0 shadow.ImageTransparency = 1 shadow.Image = "rbxassetid://4996891970" shadow.ImageColor3 = Color3.fromRGB(0, 0, 0) Main.Name = "Main" Main.Parent = shadow Main.BackgroundColor3 = Color3.fromRGB(36, 36, 36) Main.BorderColor3 = Color3.fromRGB(27, 27, 27) Main.ClipsDescendants = true Main.Position = UDim2.new(0.361818194, 0, 0.354368925, 0) Main.Size = UDim2.new(0,0,0,0) --0, 486, 0, 283 header.Name = "header" header.Parent = Main header.BackgroundColor3 = Color3.fromRGB(141, 56, 56) header.BorderSizePixel = 0 header.ClipsDescendants = true header.Size = UDim2.new(1.00000012, 0, -0.00295740133, 36) title.Name = "title" title.Parent = header title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1.000 title.Position = UDim2.new(0.0164541025, 0, 0.170633629, 0) title.Size = UDim2.new(0, 202, 0, 23) title.ZIndex = 5 title.Font = Enum.Font.Gotham title.Text = newName title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 14.000 title.TextXAlignment = Enum.TextXAlignment.Left triangle1.Name = "triangle1" triangle1.Parent = header triangle1.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle1.BackgroundTransparency = 1.000 triangle1.BorderSizePixel = 0 triangle1.ClipsDescendants = true triangle1.Position = UDim2.new(-0.302344143, 0, -0.483461976, 0) triangle1.Size = UDim2.new(0, 283, 0, 81) triangle1.Image = "http://www.roblox.com/asset/?id=6676220228" triangle1.ImageColor3 = Color3.fromRGB(130, 51, 51) triangle.Name = "triangle" triangle.Parent = header triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.824735582, 0, -0.483461976, 0) triangle.Size = UDim2.new(0, 148, 0, 81) triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) close.Name = "close" close.Parent = header close.BackgroundTransparency = 1.000 close.Position = UDim2.new(0.944999993, 0, 0.199000001, 0) close.Size = UDim2.new(0, 20, 0, 20) close.ZIndex = 2 close.AutoButtonColor = false close.Image = "rbxassetid://3926305904" close.ImageRectOffset = Vector2.new(284, 4) close.ImageRectSize = Vector2.new(24, 24) close.MouseButton1Click:Connect(function() game.TweenService:Create(shadow, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 1 }):Play() wait() game.TweenService:Create(Main, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,0,0,0) }):Play() wait(1) _81asf91z9asf1:Destroy() end) containerHolder.Name = "containerHolder" containerHolder.Parent = Main containerHolder.BackgroundColor3 = Color3.fromRGB(36, 36, 36) containerHolder.BorderSizePixel = 0 containerHolder.Position = UDim2.new(0, 0, 0.124251083, 0) containerHolder.Size = UDim2.new(0, 485, 0, 247) pages.Name = "pages" pages.Parent = containerHolder UIListLayout_2.Parent = shadow UIListLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout_2.VerticalAlignment = Enum.VerticalAlignment.Center game.TweenService:Create(Main, TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0, 486, 0, 283) }):Play() wait() game.TweenService:Create(shadow, TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 0 }):Play() newPage.Name = "newPage" newPage.Parent = pages newPage.Active = true newPage.BackgroundColor3 = Color3.fromRGB(36, 36, 36) newPage.BackgroundTransparency = 1.000 newPage.BorderColor3 = Color3.fromRGB(27, 27, 27) newPage.Size = UDim2.new(1, 0, 1, 0) newPage.ScrollBarThickness = 3 newPage.ScrollBarImageColor3 = Color3.fromRGB(193, 76, 76) sectionList:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() newPage.CanvasSize = UDim2.new(0,0,0,sectionList.AbsoluteContentSize.Y) end) sectionList.Name = "sectionList" sectionList.Parent = newPage sectionList.HorizontalAlignment = Enum.HorizontalAlignment.Center sectionList.SortOrder = Enum.SortOrder.LayoutOrder local sections = {} function sections:NewSection(title) title = title or "Section" local sectionMain = Instance.new("Frame") local itemsList = Instance.new("UIListLayout") local sectionOpen = Instance.new("TextButton") local sectionTitle = Instance.new("TextLabel") sectionMain.Name = "sectionMain" sectionMain.Parent = newPage sectionMain.BackgroundColor3 = Color3.fromRGB(32, 32, 32) sectionMain.BorderColor3 = Color3.fromRGB(27, 27, 27) sectionMain.ClipsDescendants = true sectionMain.Position = UDim2.new(0, 0, 0.0040487065, 0) sectionMain.Size = UDim2.new(0, 485, 0, 36) itemsList.Name = "itemsList" itemsList.Parent = sectionMain itemsList.HorizontalAlignment = Enum.HorizontalAlignment.Center itemsList.SortOrder = Enum.SortOrder.LayoutOrder itemsList.Padding = UDim.new(0, 5) sectionOpen.Name = "sectionOpen" sectionOpen.Parent = sectionMain sectionOpen.BackgroundColor3 = Color3.fromRGB(36, 36, 36) sectionOpen.BorderColor3 = Color3.fromRGB(27, 27, 27) sectionOpen.Size = UDim2.new(0, 486, 0, 36) sectionOpen.AutoButtonColor = false sectionOpen.Text = "" sectionOpen.Font = Enum.Font.SourceSans sectionOpen.TextColor3 = Color3.fromRGB(0, 0, 0) sectionOpen.TextSize = 14.000 sectionTitle.Name = "sectionTitle" sectionTitle.Parent = sectionOpen sectionTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) sectionTitle.BackgroundTransparency = 1.000 sectionTitle.Position = UDim2.new(0.0222204365, 0, 0.245634928, 0) sectionTitle.Size = UDim2.new(0, 184, 0, 18) sectionTitle.Font = Enum.Font.Gotham sectionTitle.Text = title sectionTitle.TextColor3 = Color3.fromRGB(255, 255, 255) sectionTitle.TextSize = 14.000 sectionTitle.TextXAlignment = Enum.TextXAlignment.Left local btn = sectionOpen local opened = false btn.MouseButton1Click:Connect(function() if opened then game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0, 486,0, 36) }):Play() opened = false else game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() opened = true end end) btn.MouseEnter:Connect(function() game.TweenService:Create(sectionTitle, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextColor3 = Color3.fromRGB(203, 203, 203) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(sectionTitle, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextColor3 = Color3.fromRGB(255, 255, 255) }):Play() end) local fElements = {} function fElements:NewButton(title, callback) local ButtonFunctions = {} title = title or "New Button" callback = callback or function() end local btnFrame = Instance.new("TextButton") local btnText = Instance.new("TextLabel") local triangle = Instance.new("ImageLabel") local Sample = Instance.new("ImageLabel") btnFrame.Name = "btnFrame" btnFrame.Parent = sectionMain btnFrame.BackgroundColor3 = Color3.fromRGB(141, 56, 56) btnFrame.BorderColor3 = Color3.fromRGB(27, 27, 27) btnFrame.ClipsDescendants = true btnFrame.Position = UDim2.new(0.00720164599, 0, 0.241830066, 0) btnFrame.Size = UDim2.new(0, 474, 0, 32) btnFrame.Text = "" btnFrame.AutoButtonColor = false btnFrame.Font = Enum.Font.SourceSans btnFrame.TextColor3 = Color3.fromRGB(0, 0, 0) btnFrame.TextSize = 14.000 btnText.Name = "btnText" btnText.Parent = btnFrame btnText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) btnText.BackgroundTransparency = 1.000 btnText.Position = UDim2.new(0.01774057, 0, 0.200000182, 0) btnText.Size = UDim2.new(0, 175, 0, 18) btnText.ZIndex = 5 btnText.Font = Enum.Font.Gotham btnText.Text = title btnText.TextColor3 = Color3.fromRGB(255, 255, 255) btnText.TextSize = 14.000 btnText.TextXAlignment = Enum.TextXAlignment.Left triangle.Name = "triangle" triangle.Parent = btnFrame triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.839998424, 0, -1.29596233, 0) triangle.Size = UDim2.new(0, 132, 0, 81) triangle.ZIndex = 5 triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) Sample.Name = "Sample" Sample.Parent = btnFrame Sample.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample.BackgroundTransparency = 1.000 Sample.ZIndex = 2 Sample.Image = "http://www.roblox.com/asset/?id=4560909609" Sample.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample.ImageTransparency = 0.600 local ms = game.Players.LocalPlayer:GetMouse() local btn = btnFrame local sample = btn:WaitForChild("Sample") btn.MouseButton1Click:Connect(function() callback() local c = sample:Clone() c.Parent = btn local x, y = (ms.X - c.AbsolutePosition.X), (ms.Y - c.AbsolutePosition.Y) c.Position = UDim2.new(0, x, 0, y) local len, size = 0.35, nil if btn.AbsoluteSize.X >= btn.AbsoluteSize.Y then size = (btn.AbsoluteSize.X * 1.5) else size = (btn.AbsoluteSize.Y * 1.5) end c:TweenSizeAndPosition(UDim2.new(0, size, 0, size), UDim2.new(0.5, (-size / 2), 0.5, (-size / 2)), 'Out', 'Quad', len, true, nil) for i = 1, 10 do c.ImageTransparency = c.ImageTransparency + 0.05 wait(len / 12) end c:Destroy() end) btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) function ButtonFunctions:Update(textB) if btnText.Text ~= textB then game.TweenService:Create(btnText, TweenInfo.new(0.14, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 1 }):Play() wait(0.14) btnText.Text = textB game.TweenService:Create(btnText, TweenInfo.new(0.14, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 0 }):Play() end end return ButtonFunctions end function fElements:NewToggle(title, callback) title = title or "New Toggle" callback = callback or function() end local ToggleFunctions = {} local toggleFrame = Instance.new("TextButton") local toggleFrame_2 = Instance.new("TextLabel") local triangle = Instance.new("ImageLabel") local checkedFramesFrame = Instance.new("Frame") local checked = Instance.new("ImageButton") local unchecked = Instance.new("ImageButton") local UIListLayout = Instance.new("UIListLayout") local UIListLayout_2 = Instance.new("UIListLayout") local Sample = Instance.new("ImageLabel") local circle1 = Instance.new("Frame") local UIListLayout_3 = Instance.new("UIListLayout") local circle = Instance.new("Frame") local UICorner = Instance.new("UICorner") toggleFrame.Name = "toggleFrame" toggleFrame.Parent = sectionMain toggleFrame.BackgroundColor3 = Color3.fromRGB(141, 56, 56) toggleFrame.BorderColor3 = Color3.fromRGB(27, 27, 27) toggleFrame.ClipsDescendants = true toggleFrame.Position = UDim2.new(0.00720164599, 0, 0.241830066, 0) toggleFrame.Size = UDim2.new(0, 474, 0, 32) toggleFrame.AutoButtonColor = false toggleFrame.Font = Enum.Font.SourceSans toggleFrame.Text = "" toggleFrame.TextColor3 = Color3.fromRGB(0, 0, 0) toggleFrame.TextSize = 14.000 toggleFrame_2.Name = "toggleFrame" toggleFrame_2.Parent = toggleFrame toggleFrame_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) toggleFrame_2.BackgroundTransparency = 1.000 toggleFrame_2.Position = UDim2.new(0.0680000037, 0, 0.200000003, 0) toggleFrame_2.Size = UDim2.new(0, 154, 0, 18) toggleFrame_2.ZIndex = 5 toggleFrame_2.Font = Enum.Font.Gotham toggleFrame_2.Text = title toggleFrame_2.TextColor3 = Color3.fromRGB(255, 255, 255) toggleFrame_2.TextSize = 14.000 toggleFrame_2.TextXAlignment = Enum.TextXAlignment.Left triangle.Name = "triangle" triangle.Parent = toggleFrame triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.839998424, 0, -1.29596233, 0) triangle.Size = UDim2.new(0, 132, 0, 81) triangle.ZIndex = 5 triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) checkedFramesFrame.Name = "checkedFramesFrame" checkedFramesFrame.Parent = toggleFrame checkedFramesFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) checkedFramesFrame.BackgroundTransparency = 1.000 checkedFramesFrame.Size = UDim2.new(0, 32, 0, 32) checkedFramesFrame.ZIndex = 5 checked.Name = "checked" checked.Parent = checkedFramesFrame checked.BackgroundTransparency = 1.000 checked.LayoutOrder = 9 checked.Position = UDim2.new(0.00843881816, 0, 0.09375, 0) checked.Size = UDim2.new(0, 24, 0, 24) checked.ImageTransparency = 1 checked.ZIndex = 55 checked.Image = "rbxassetid://3926311105" checked.ImageRectOffset = Vector2.new(4, 836) checked.ImageRectSize = Vector2.new(48, 48) unchecked.Name = "unchecked" unchecked.Parent = checked unchecked.BackgroundTransparency = 1.000 unchecked.Position = UDim2.new(0.00800000038, 0, 0.0939999968, 0) unchecked.Size = UDim2.new(0, 24, 0, 24) unchecked.ZIndex = 50 unchecked.Image = "rbxassetid://3926305904" unchecked.ImageRectOffset = Vector2.new(724, 724) unchecked.ImageRectSize = Vector2.new(36, 36) UIListLayout.Parent = checked UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.VerticalAlignment = Enum.VerticalAlignment.Center UIListLayout_2.Parent = checkedFramesFrame UIListLayout_2.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout_2.VerticalAlignment = Enum.VerticalAlignment.Center Sample.Name = "Sample" Sample.Parent = toggleFrame Sample.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample.BackgroundTransparency = 1.000 Sample.ZIndex = 2 Sample.Image = "http://www.roblox.com/asset/?id=4560909609" Sample.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample.ImageTransparency = 0.600 circle1.Name = "circle1" circle1.Parent = toggleFrame circle1.BackgroundColor3 = Color3.fromRGB(255, 255, 255) circle1.BackgroundTransparency = 1.000 circle1.Size = UDim2.new(0, 32, 0, 32) circle1.ZIndex = 5 UIListLayout_3.Parent = circle1 UIListLayout_3.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout_3.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout_3.VerticalAlignment = Enum.VerticalAlignment.Center circle.Name = "circle" circle.Parent = circle1 circle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) circle.BackgroundTransparency = 1 circle.Position = UDim2.new(0.00843881816, 0, 0.09375, 0) circle.Size = UDim2.new(0, 0, 0, 0) UICorner.CornerRadius = UDim.new(0, 99) UICorner.Parent = circle local ms = game.Players.LocalPlayer:GetMouse() local btn = toggleFrame local sample = btn:WaitForChild('Sample') btn.MouseButton1Click:Connect(function() local c = sample:Clone() c.Parent = btn local x, y = (ms.X - c.AbsolutePosition.X), (ms.Y - c.AbsolutePosition.Y) c.Position = UDim2.new(0, x, 0, y) local len, size = 0.35, nil if btn.AbsoluteSize.X >= btn.AbsoluteSize.Y then size = (btn.AbsoluteSize.X * 1.5) else size = (btn.AbsoluteSize.Y * 1.5) end c:TweenSizeAndPosition(UDim2.new(0, size, 0, size), UDim2.new(0.5, (-size / 2), 0.5, (-size / 2)), 'Out', 'Quad', len, true, nil) for i = 1, 10 do c.ImageTransparency = c.ImageTransparency + 0.05 wait(len / 12) end c:Destroy() end) local toggled = false btn.MouseButton1Click:Connect(function() if toggled then game.TweenService:Create(checked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,20,0,20) }):Play() game.TweenService:Create(unchecked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,20,0,20) }):Play() wait(0.08) game.TweenService:Create(checked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,24,0,24) }):Play() game.TweenService:Create(unchecked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,24,0,24) }):Play() game.TweenService:Create(checked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 1, }):Play() game.TweenService:Create(unchecked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 0 }):Play() else game.TweenService:Create(checked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,20,0,20) }):Play() game.TweenService:Create(unchecked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,20,0,20) }):Play() wait(0.08) game.TweenService:Create(checked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,24,0,24) }):Play() game.TweenService:Create(unchecked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,24,0,24) }):Play() game.TweenService:Create(checked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 0 }):Play() game.TweenService:Create(unchecked, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { ImageTransparency = 1 }):Play() end game.TweenService:Create(circle, TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,30,0,30), BackgroundTransparency = 0.7 }):Play() wait(0.15) game.TweenService:Create(circle, TweenInfo.new(0.15, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { Size = UDim2.new(0,0,0,0), BackgroundTransparency = 1 }):Play() toggled = not toggled pcall(callback, toggled) end) btn.MouseButton1Down:Connect(function() game.TweenService:Create(circle, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { BackgroundTransparency = 0.8 }):Play() end) btn.MouseButton1Up:Connect(function() game.TweenService:Create(circle, TweenInfo.new(0.1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut), { BackgroundTransparency = 1 }):Play() end) btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) function ToggleFunctions:Update(textT) if toggleFrame_2.Text ~= textT then game.TweenService:Create(toggleFrame_2, TweenInfo.new(0.14, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 1 }):Play() wait(0.14) toggleFrame_2.Text = textT game.TweenService:Create(toggleFrame_2, TweenInfo.new(0.14, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 0 }):Play() end return toggle end return ToggleFunctions end function fElements:NewTextBox(title, callback) local BoxFunctions = {} title = title or "" callback = callback or function() end local textboxFrame = Instance.new("TextButton") local txtboxText = Instance.new("TextLabel") local triangle = Instance.new("ImageLabel") local txtbox = Instance.new("Frame") local TextBox = Instance.new("TextBox") local Sample = Instance.new("ImageLabel") textboxFrame.Name = "textboxFrame" textboxFrame.Parent = sectionMain textboxFrame.BackgroundColor3 = Color3.fromRGB(141, 56, 56) textboxFrame.BorderColor3 = Color3.fromRGB(27, 27, 27) textboxFrame.ClipsDescendants = true textboxFrame.Position = UDim2.new(0.00720164599, 0, 0.241830066, 0) textboxFrame.Size = UDim2.new(0, 474, 0, 32) textboxFrame.AutoButtonColor = false textboxFrame.Font = Enum.Font.SourceSans textboxFrame.Text = "" textboxFrame.TextColor3 = Color3.fromRGB(0, 0, 0) textboxFrame.TextSize = 14.000 txtboxText.Name = "txtboxText" txtboxText.Parent = textboxFrame txtboxText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) txtboxText.BackgroundTransparency = 1.000 txtboxText.Position = UDim2.new(0.0177406278, 0, 0.199999809, 0) txtboxText.Size = UDim2.new(0, 175, 0, 18) txtboxText.Font = Enum.Font.Gotham txtboxText.Text = title txtboxText.TextColor3 = Color3.fromRGB(255, 255, 255) txtboxText.TextSize = 14.000 txtboxText.TextXAlignment = Enum.TextXAlignment.Left triangle.Name = "triangle" triangle.Parent = textboxFrame triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.839998424, 0, -1.29596233, 0) triangle.Size = UDim2.new(0, 132, 0, 81) triangle.ZIndex = 5 triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) txtbox.Name = "txtbox" txtbox.Parent = textboxFrame txtbox.BackgroundColor3 = Color3.fromRGB(109, 43, 43) txtbox.BorderColor3 = Color3.fromRGB(109, 43, 43) txtbox.Position = UDim2.new(0.549000025, 0, 0.172999993, 0) txtbox.Size = UDim2.new(0, 176, 0, 20) TextBox.Parent = txtbox TextBox.BackgroundColor3 = Color3.fromRGB(109, 43, 43) TextBox.BorderColor3 = Color3.fromRGB(109, 43, 43) TextBox.ClipsDescendants = true TextBox.Position = UDim2.new(0.0340909101, 0, 0, 0) TextBox.Size = UDim2.new(0, 149, 0, 20) TextBox.ZIndex = 2 TextBox.ClearTextOnFocus = false TextBox.Font = Enum.Font.Gotham TextBox.PlaceholderColor3 = Color3.fromRGB(255, 101, 101) TextBox.PlaceholderText = "Type Here" TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.TextSize = 12.000 TextBox.TextXAlignment = Enum.TextXAlignment.Right Sample.Name = "Sample" Sample.Parent = textboxFrame Sample.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample.BackgroundTransparency = 1.000 Sample.ZIndex = 2 Sample.Image = "http://www.roblox.com/asset/?id=4560909609" Sample.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample.ImageTransparency = 0.600 local btn = textboxFrame btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) TextBox.FocusLost:Connect(function(EnterPressed) if not EnterPressed then return else callback(TextBox.Text) wait(0.10) TextBox.Text = "" end end) function BoxFunctions:Update(textB) if txtboxText.Text ~= textB then game.TweenService:Create(txtboxText, TweenInfo.new(0.14, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 1 }):Play() wait(0.14) txtboxText.Text = textB game.TweenService:Create(txtboxText, TweenInfo.new(0.14, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 0 }):Play() end end return BoxFunctions end function fElements:NewSlider(title, minvalue, maxvalue, callback) title = title or "" minvalue = minvalue or 16 maxvalue = maxvalue or 200 local sliderFrame = Instance.new("TextButton") local Sample = Instance.new("ImageLabel") local triangle = Instance.new("ImageLabel") local sliderText = Instance.new("TextLabel") local sliderText_2 = Instance.new("TextLabel") local SliderButton = Instance.new("TextButton") local sliderDrag = Instance.new("Frame") local UIListLayout = Instance.new("UIListLayout") sliderFrame.Name = "sliderFrame" sliderFrame.Parent = sectionMain sliderFrame.BackgroundColor3 = Color3.fromRGB(141, 56, 56) sliderFrame.BorderColor3 = Color3.fromRGB(27, 27, 27) sliderFrame.ClipsDescendants = true sliderFrame.Position = UDim2.new(0.00720164599, 0, 0.241830066, 0) sliderFrame.Size = UDim2.new(0, 474, 0, 32) sliderFrame.AutoButtonColor = false sliderFrame.Font = Enum.Font.SourceSans sliderFrame.Text = "" sliderFrame.TextColor3 = Color3.fromRGB(0, 0, 0) sliderFrame.TextSize = 14.000 Sample.Name = "Sample" Sample.Parent = sliderFrame Sample.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample.BackgroundTransparency = 1.000 Sample.ZIndex = 2 Sample.Image = "http://www.roblox.com/asset/?id=4560909609" Sample.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample.ImageTransparency = 0.600 triangle.Name = "triangle" triangle.Parent = sliderFrame triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.839998424, 0, -1.29596233, 0) triangle.Size = UDim2.new(0, 132, 0, 81) triangle.ZIndex = 5 triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) sliderText.Name = "sliderText" sliderText.Parent = sliderFrame sliderText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) sliderText.BackgroundTransparency = 1.000 sliderText.Position = UDim2.new(0.01774057, 0, 0.200000182, 0) sliderText.Size = UDim2.new(0, 175, 0, 18) sliderText.ZIndex = 5 sliderText.Font = Enum.Font.Gotham sliderText.Text = title sliderText.TextColor3 = Color3.fromRGB(255, 255, 255) sliderText.TextSize = 14.000 sliderText.TextXAlignment = Enum.TextXAlignment.Left sliderText_2.Name = "sliderText" sliderText_2.Parent = sliderFrame sliderText_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) sliderText_2.BackgroundTransparency = 1.000 sliderText_2.Position = UDim2.new(0.907649934, 0, 0.200000763, 0) sliderText_2.Size = UDim2.new(0, 34, 0, 18) sliderText_2.ZIndex = 5 sliderText_2.Font = Enum.Font.Gotham sliderText_2.Text = minvalue sliderText_2.TextColor3 = Color3.fromRGB(235, 93, 93) sliderText_2.TextSize = 14.000 sliderText_2.TextXAlignment = Enum.TextXAlignment.Right SliderButton.Name = "SliderButton" SliderButton.Parent = sliderFrame SliderButton.BackgroundColor3 = Color3.fromRGB(141, 56, 56) SliderButton.BorderColor3 = Color3.fromRGB(109, 43, 43) SliderButton.Position = UDim2.new(0.397000015, 0, 0.405999988, 0) SliderButton.Size = UDim2.new(0, 215, 0, 6) SliderButton.AutoButtonColor = false SliderButton.Font = Enum.Font.SourceSans SliderButton.Text = "" SliderButton.TextColor3 = Color3.fromRGB(0, 0, 0) SliderButton.TextSize = 14.000 sliderDrag.Name = "sliderDrag" sliderDrag.Parent = SliderButton sliderDrag.BackgroundColor3 = Color3.fromRGB(109, 43, 43) sliderDrag.BorderSizePixel = 0 sliderDrag.Position = UDim2.new(0, 0, -0.166666672, 0) sliderDrag.Size = UDim2.new(0, 0, 0, 8) sliderDrag.ZIndex = 6 UIListLayout.Parent = SliderButton UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder local Value local uis = game:GetService("UserInputService") local mouse = game:GetService("Players").LocalPlayer:GetMouse() UIListLayout.VerticalAlignment = Enum.VerticalAlignment.Center SliderButton.MouseButton1Down:Connect(function() Value = math.floor((((tonumber(maxvalue) - tonumber(minvalue)) / 215) * sliderDrag.AbsoluteSize.X) + tonumber(minvalue)) or 0 pcall(function() callback(Value) end) sliderDrag:TweenSize(UDim2.new(0, math.clamp(mouse.X - sliderDrag.AbsolutePosition.X, 0, 215), 0, 8), "InOut", "Linear", 0.05, true) moveconnection = mouse.Move:Connect(function() sliderText_2.Text = Value Value = math.floor((((tonumber(maxvalue) - tonumber(minvalue)) / 215) * sliderDrag.AbsoluteSize.X) + tonumber(minvalue)) pcall(function() callback(Value) end) sliderDrag:TweenSize(UDim2.new(0, math.clamp(mouse.X - sliderDrag.AbsolutePosition.X, 0, 215), 0, 8), "InOut", "Linear", 0.05, true) end) releaseconnection = uis.InputEnded:Connect(function(Mouse) if Mouse.UserInputType == Enum.UserInputType.MouseButton1 then Value = math.floor((((tonumber(maxvalue) - tonumber(minvalue)) / 215) * sliderDrag.AbsoluteSize.X) + tonumber(minvalue)) pcall(function() callback(Value) end) sliderText_2.Text = Value sliderDrag:TweenSize(UDim2.new(0, math.clamp(mouse.X - sliderDrag.AbsolutePosition.X, 0, 215), 0, 8), "InOut", "Linear", 0.05, true) moveconnection:Disconnect() releaseconnection:Disconnect() end end) end) local btn = sliderFrame btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) end function fElements:NewKeybind(title, currentKey, callback) title = title or "" local oldKey = currentKey.Name callback = callback or function() end local KeyFunctions = {} local mouse = game:GetService("Players").LocalPlayer:GetMouse() local keybindFrame = Instance.new("TextButton") local keyText = Instance.new("TextLabel") local triangle = Instance.new("ImageLabel") local Sample = Instance.new("ImageLabel") local currentKey = Instance.new("TextLabel") keybindFrame.Name = "keybindFrame" keybindFrame.Parent = sectionMain keybindFrame.BackgroundColor3 = Color3.fromRGB(141, 56, 56) keybindFrame.BorderColor3 = Color3.fromRGB(27, 27, 27) keybindFrame.ClipsDescendants = true keybindFrame.Position = UDim2.new(0.00720164599, 0, 0.241830066, 0) keybindFrame.Size = UDim2.new(0, 474, 0, 32) keybindFrame.AutoButtonColor = false keybindFrame.Font = Enum.Font.SourceSans keybindFrame.Text = "" keybindFrame.TextColor3 = Color3.fromRGB(0, 0, 0) keybindFrame.TextSize = 14.000 keyText.Name = "keyText" keyText.Parent = keybindFrame keyText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) keyText.BackgroundTransparency = 1.000 keyText.Position = UDim2.new(0.01774057, 0, 0.200000182, 0) keyText.Size = UDim2.new(0, 175, 0, 18) keyText.ZIndex = 5 keyText.Font = Enum.Font.Gotham keyText.Text = title keyText.TextColor3 = Color3.fromRGB(255, 255, 255) keyText.TextSize = 14.000 keyText.TextXAlignment = Enum.TextXAlignment.Left triangle.Name = "triangle" triangle.Parent = keybindFrame triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.839998424, 0, -1.29596233, 0) triangle.Size = UDim2.new(0, 132, 0, 81) triangle.ZIndex = 5 triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) Sample.Name = "Sample" Sample.Parent = keybindFrame Sample.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample.BackgroundTransparency = 1.000 Sample.ZIndex = 2 Sample.Image = "http://www.roblox.com/asset/?id=4560909609" Sample.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample.ImageTransparency = 0.600 currentKey.Name = "currentKey" currentKey.Parent = keybindFrame currentKey.BackgroundColor3 = Color3.fromRGB(255, 255, 255) currentKey.BackgroundTransparency = 1.000 currentKey.Position = UDim2.new(0.679801822, 0, 0.200000763, 0) currentKey.Size = UDim2.new(0, 80, 0, 18) currentKey.ZIndex = 5 currentKey.Font = Enum.Font.Gotham currentKey.Text = oldKey currentKey.TextColor3 = Color3.fromRGB(255, 255, 255) currentKey.TextSize = 14.000 currentKey.TextXAlignment = Enum.TextXAlignment.Right local ms = mouse local btn = keybindFrame local sample = btn:WaitForChild("Sample") btn.MouseButton1Click:Connect(function() game.TweenService:Create(currentKey, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 1 }):Play() wait(0.14) currentKey.Text = ". . ." game.TweenService:Create(currentKey, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 0 }):Play() local a, b = game:GetService('UserInputService').InputBegan:wait(); if a.KeyCode.Name ~= "Unknown" then game.TweenService:Create(currentKey, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 1 }):Play() wait(0.14) currentKey.Text = a.KeyCode.Name oldKey = a.KeyCode.Name; game.TweenService:Create(currentKey, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 0 }):Play() end local c = sample:Clone() c.Parent = btn local x, y = (ms.X - c.AbsolutePosition.X), (ms.Y - c.AbsolutePosition.Y) c.Position = UDim2.new(0, x, 0, y) local len, size = 0.35, nil if btn.AbsoluteSize.X >= btn.AbsoluteSize.Y then size = (btn.AbsoluteSize.X * 1.5) else size = (btn.AbsoluteSize.Y * 1.5) end c:TweenSizeAndPosition(UDim2.new(0, size, 0, size), UDim2.new(0.5, (-size / 2), 0.5, (-size / 2)), 'Out', 'Quad', len, true, nil) for i = 1, 10 do c.ImageTransparency = c.ImageTransparency + 0.05 wait(len / 12) end c:Destroy() end) btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) game:GetService("UserInputService").InputBegan:connect(function(current, ok) if not ok then if current.KeyCode.Name == oldKey then callback() end end end) function KeyFunctions:Update(newKey) if currentKey.Text ~= newKey.Name then game.TweenService:Create(currentKey, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 1 }):Play() wait(0.14) oldKey = newKey.Name currentKey.Text = oldKey game.TweenService:Create(currentKey, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { TextTransparency = 0 }):Play() end end return KeyFunctions end function fElements:NewDropdown(title, list, callback) local DropdownFunc = {} title = title or "nil" list = list or {} callback = callback or function() end local dOpened = false local dropFrame = Instance.new("Frame") local dropOpen = Instance.new("TextButton") local mouse = game:GetService("Players").LocalPlayer:GetMouse() local ms = mouse local dropInf = Instance.new("TextLabel") local triangle = Instance.new("ImageLabel") local Sample = Instance.new("ImageLabel") local expand_more = Instance.new("ImageButton") local dropList = Instance.new("UIListLayout") dropFrame.Name = "dropFrame" dropFrame.Parent = sectionMain dropFrame.BackgroundColor3 = Color3.fromRGB(84, 33, 33) dropFrame.BorderColor3 = Color3.fromRGB(33, 33, 33) dropFrame.ClipsDescendants = true dropFrame.Position = UDim2.new(0.0113402065, 0, 0.593175828, 0) dropFrame.Size = UDim2.new(0, 474, 0, 32) dropOpen.Name = "dropOpen" dropOpen.Parent = dropFrame dropOpen.BackgroundColor3 = Color3.fromRGB(141, 56, 56) dropOpen.BorderColor3 = Color3.fromRGB(27, 27, 27) dropOpen.ClipsDescendants = true dropOpen.Position = UDim2.new(0.00720164599, 0, 0.241830066, 0) dropOpen.Size = UDim2.new(0, 474, 0, 32) dropOpen.AutoButtonColor = false dropOpen.Font = Enum.Font.SourceSans dropOpen.Text = "" dropOpen.TextColor3 = Color3.fromRGB(0, 0, 0) dropOpen.TextSize = 14.000 dropOpen.MouseButton1Click:Connect(function() if dOpened then dOpened = false game.TweenService:Create(dropFrame, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,474,0,32) }):Play() game.TweenService:Create(expand_more, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Rotation = 0 }):Play() wait(0.1) game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() else dOpened = true game.TweenService:Create(dropFrame, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,474,0,dropList.AbsoluteContentSize.Y + 5) }):Play() game.TweenService:Create(expand_more, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Rotation = 180 }):Play() wait(0.1) game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() end local c = Sample:Clone() c.Parent = dropOpen local x, y = (ms.X - c.AbsolutePosition.X), (ms.Y - c.AbsolutePosition.Y) c.Position = UDim2.new(0, x, 0, y) local len, size = 0.35, nil if dropOpen.AbsoluteSize.X >= dropOpen.AbsoluteSize.Y then size = (dropOpen.AbsoluteSize.X * 1.5) else size = (dropOpen.AbsoluteSize.Y * 1.5) end c:TweenSizeAndPosition(UDim2.new(0, size, 0, size), UDim2.new(0.5, (-size / 2), 0.5, (-size / 2)), 'Out', 'Quad', len, true, nil) for i = 1, 10 do c.ImageTransparency = c.ImageTransparency + 0.05 wait(len / 12) end c:Destroy() end) dropOpen.MouseEnter:Connect(function() game.TweenService:Create(dropOpen, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) dropOpen.MouseLeave:Connect(function() game.TweenService:Create(dropOpen, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) dropInf.Name = "dropInf" dropInf.Parent = dropOpen dropInf.BackgroundColor3 = Color3.fromRGB(255, 255, 255) dropInf.BackgroundTransparency = 1.000 dropInf.Position = UDim2.new(0.0177406278, 0, 0.199999809, 0) dropInf.Size = UDim2.new(0, 81, 0, 18) dropInf.ZIndex = 5 dropInf.Font = Enum.Font.Gotham dropInf.Text = title dropInf.TextColor3 = Color3.fromRGB(255, 255, 255) dropInf.TextSize = 14.000 dropInf.TextXAlignment = Enum.TextXAlignment.Left triangle.Name = "triangle" triangle.Parent = dropOpen triangle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) triangle.BackgroundTransparency = 1.000 triangle.BorderSizePixel = 0 triangle.ClipsDescendants = true triangle.Position = UDim2.new(0.839998424, 0, -1.29596233, 0) triangle.Size = UDim2.new(0, 132, 0, 81) triangle.ZIndex = 5 triangle.Image = "http://www.roblox.com/asset/?id=6676220228" triangle.ImageColor3 = Color3.fromRGB(130, 51, 51) Sample.Name = "Sample" Sample.Parent = dropOpen Sample.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample.BackgroundTransparency = 1.000 Sample.ZIndex = 2 Sample.Image = "http://www.roblox.com/asset/?id=4560909609" Sample.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample.ImageTransparency = 0.600 expand_more.Name = "expand_more" expand_more.Parent = dropOpen expand_more.BackgroundTransparency = 1.000 expand_more.LayoutOrder = 9 expand_more.Position = UDim2.new(0.935426176, 0, 0.075000003, 0) expand_more.Size = UDim2.new(0, 25, 0, 25) expand_more.ZIndex = 55 expand_more.Image = "rbxassetid://3926305904" expand_more.ImageColor3 = Color3.fromRGB(235, 93, 93) expand_more.ImageRectOffset = Vector2.new(564, 284) expand_more.ImageRectSize = Vector2.new(36, 36) dropList.Name = "dropList" dropList.Parent = dropFrame dropList.HorizontalAlignment = Enum.HorizontalAlignment.Center dropList.SortOrder = Enum.SortOrder.LayoutOrder dropList.Padding = UDim.new(0, 5) for i,v in next, list do local dropOption = Instance.new("TextButton") local btnText = Instance.new("TextLabel") local Sample_2 = Instance.new("ImageLabel") dropOption.Name = "dropOption" dropOption.Parent = dropFrame dropOption.BackgroundColor3 = Color3.fromRGB(141, 56, 56) dropOption.BorderColor3 = Color3.fromRGB(30, 30, 30) dropOption.ClipsDescendants = true dropOption.Position = UDim2.new(0, 0, 0.25179857, 0) dropOption.Size = UDim2.new(0, 464, 0, 32) dropOption.AutoButtonColor = false dropOption.Font = Enum.Font.SourceSans dropOption.Text = "" dropOption.TextColor3 = Color3.fromRGB(0, 0, 0) dropOption.TextSize = 14.000 btnText.Name = "btnText" btnText.Parent = dropOption btnText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) btnText.BackgroundTransparency = 1.000 btnText.Position = UDim2.new(0.01774057, 0, 0.200000182, 0) btnText.Size = UDim2.new(0, 175, 0, 18) btnText.ZIndex = 5 btnText.Font = Enum.Font.Gotham btnText.Text = v btnText.TextColor3 = Color3.fromRGB(255, 255, 255) btnText.TextSize = 14.000 btnText.TextXAlignment = Enum.TextXAlignment.Left Sample_2.Name = "Sample" Sample_2.Parent = dropOption Sample_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample_2.BackgroundTransparency = 1.000 Sample_2.ZIndex = 2 Sample_2.Image = "http://www.roblox.com/asset/?id=4560909609" Sample_2.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample_2.ImageTransparency = 0.600 local btn = dropOption local sample = Sample_2 btn.MouseButton1Click:Connect(function() dropInf.Text = v callback(v) game.TweenService:Create(dropFrame, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,474,0,32) }):Play() game.TweenService:Create(expand_more, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Rotation = 0 }):Play() wait(0.1) game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() dOpened = false local c = Sample:Clone() c.Parent = dropOpen local x, y = (ms.X - c.AbsolutePosition.X), (ms.Y - c.AbsolutePosition.Y) c.Position = UDim2.new(0, x, 0, y) local len, size = 0.35, nil if dropOpen.AbsoluteSize.X >= dropOpen.AbsoluteSize.Y then size = (dropOpen.AbsoluteSize.X * 1.5) else size = (dropOpen.AbsoluteSize.Y * 1.5) end c:TweenSizeAndPosition(UDim2.new(0, size, 0, size), UDim2.new(0.5, (-size / 2), 0.5, (-size / 2)), 'Out', 'Quad', len, true, nil) for i = 1, 10 do c.ImageTransparency = c.ImageTransparency + 0.05 wait(len / 12) end c:Destroy() end) btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) end function DropdownFunc:Refresh(newList) newList = newList or {} for i,v in next, dropFrame:GetChildren() do if v.Name == "dropOption" then v:Destroy() end end for i,v in next, newList do local dropOption = Instance.new("TextButton") local btnText = Instance.new("TextLabel") local Sample_2 = Instance.new("ImageLabel") dropOption.Name = "dropOption" dropOption.Parent = dropFrame dropOption.BackgroundColor3 = Color3.fromRGB(141, 56, 56) dropOption.BorderColor3 = Color3.fromRGB(30, 30, 30) dropOption.ClipsDescendants = true dropOption.Position = UDim2.new(0, 0, 0.25179857, 0) dropOption.Size = UDim2.new(0, 464, 0, 32) dropOption.AutoButtonColor = false dropOption.Font = Enum.Font.SourceSans dropOption.Text = "" dropOption.TextColor3 = Color3.fromRGB(0, 0, 0) dropOption.TextSize = 14.000 btnText.Name = "btnText" btnText.Parent = dropOption btnText.BackgroundColor3 = Color3.fromRGB(255, 255, 255) btnText.BackgroundTransparency = 1.000 btnText.Position = UDim2.new(0.01774057, 0, 0.200000182, 0) btnText.Size = UDim2.new(0, 175, 0, 18) btnText.ZIndex = 5 btnText.Font = Enum.Font.Gotham btnText.Text = v btnText.TextColor3 = Color3.fromRGB(255, 255, 255) btnText.TextSize = 14.000 btnText.TextXAlignment = Enum.TextXAlignment.Left Sample_2.Name = "Sample" Sample_2.Parent = dropOption Sample_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Sample_2.BackgroundTransparency = 1.000 Sample_2.ZIndex = 2 Sample_2.Image = "http://www.roblox.com/asset/?id=4560909609" Sample_2.ImageColor3 = Color3.fromRGB(71, 27, 27) Sample_2.ImageTransparency = 0.600 local btn = dropOption local sample = Sample_2 local mouse = game:GetService("Players").LocalPlayer:GetMouse() local ms = mouse btn.MouseButton1Click:Connect(function() dropInf.Text = v callback(v) game.TweenService:Create(dropFrame, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,474,0,32) }):Play() game.TweenService:Create(expand_more, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Rotation = 0 }):Play() wait(0.1) game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() dOpened = false local c = Sample:Clone() c.Parent = dropOpen local x, y = (ms.X - c.AbsolutePosition.X), (ms.Y - c.AbsolutePosition.Y) c.Position = UDim2.new(0, x, 0, y) local len, size = 0.35, nil if dropOpen.AbsoluteSize.X >= dropOpen.AbsoluteSize.Y then size = (dropOpen.AbsoluteSize.X * 1.5) else size = (dropOpen.AbsoluteSize.Y * 1.5) end c:TweenSizeAndPosition(UDim2.new(0, size, 0, size), UDim2.new(0.5, (-size / 2), 0.5, (-size / 2)), 'Out', 'Quad', len, true, nil) for i = 1, 10 do c.ImageTransparency = c.ImageTransparency + 0.05 wait(len / 12) end c:Destroy() end) btn.MouseEnter:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(121, 48, 48) }):Play() end) btn.MouseLeave:Connect(function() game.TweenService:Create(btn, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { BackgroundColor3 = Color3.fromRGB(141, 56, 56) }):Play() end) end if dOpened then game.TweenService:Create(dropFrame, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,474,0,dropList.AbsoluteContentSize.Y + 5) }):Play() game.TweenService:Create(expand_more, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Rotation = 180 }):Play() wait(0.1) game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() else game.TweenService:Create(dropFrame, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,474,0,32) }):Play() game.TweenService:Create(expand_more, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Rotation = 0 }):Play() wait(0.1) game.TweenService:Create(sectionMain, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut), { Size = UDim2.new(0,itemsList.AbsoluteContentSize.X,0, itemsList.AbsoluteContentSize.Y + 5) }):Play() end end return DropdownFunc end function fElements:Seperator() local seperator = Instance.new("Frame") seperator.Name = "seperator" seperator.Parent = sectionMain seperator.BackgroundColor3 = Color3.fromRGB(141, 56, 56) seperator.BorderColor3 = Color3.fromRGB(27, 27, 27) seperator.Size = UDim2.new(0, 474, 0, 2) end -- =============== -- -- 添加textLabel函數 function fElements:NewLabel(text) -- 建立獨立容器 local container = Instance.new("Frame") container.Name = "labelContainer" container.Parent = sectionMain container.BackgroundColor3 = Color3.fromRGB(255, 255, 255) container.BackgroundTransparency = 1 container.BorderSizePixel = 0 container.Size = UDim2.new(1, 0, 0, 36) -- 高度固定為 36(與 Button 一致) container.ClipsDescendants = false -- 建立 Label local label = Instance.new("TextLabel") label.Name = "labelText" label.Parent = container label.BackgroundColor3 = Color3.fromRGB(255, 255, 255) label.BackgroundTransparency = 1 label.Position = UDim2.new(0, 0, 0, 0) label.Size = UDim2.new(1, -10, 1, 0) -- 填滿 container 並留邊距 label.ZIndex = 5 label.Font = Enum.Font.Gotham label.Text = text or "Label" label.TextColor3 = Color3.fromRGB(255, 255, 255) label.TextSize = 14 label.TextXAlignment = Enum.TextXAlignment.Center label.TextYAlignment = Enum.TextYAlignment.Center label.ClipsDescendants = false return { Set = function(self, newText) label.Text = newText end, Get = function(self) return label.Text end, Remove = function() container:Destroy() end } end return fElements end return sections end return Forums
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
FnafHuntedAdapter
Lua | 29 min ago | 18.52 KB
MTG/RiffleShuffle Simulation
Python | 46 min ago | 4.58 KB
300$ GIFTCARDS? P8
Java | 49 min ago | 0.07 KB
FREE 500$ GIFTCARDS???? VF
Java | 50 min ago | 0.07 KB
Make 3500$ in 1 day [Method]???? XH
Java | 51 min ago | 0.06 KB
?FREE Method Leaked? 1Y
Java | 52 min ago | 0.07 KB
?Make 1500$ in 1 day [Method]? AZ
Java | 53 min ago | 0.07 KB
200 INSTANTLY [Works Worldwide]? SD
Java | 54 min ago | 0.07 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!