Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- More Scripts
- -- Start
- local UIS = game:GetService("UserInputService")
- -- Main GUI
- local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
- ScreenGui.Name = "ElvisHubFuturistic"
- local Main = Instance.new("Frame", ScreenGui)
- Main.Size = UDim2.new(0, 340, 0, 420)
- Main.Position = UDim2.new(0.5, -170, 0.5, -210)
- Main.BackgroundColor3 = Color3.fromRGB(15, 15, 25)
- Main.BorderSizePixel = 0
- Main.Active = true
- Main.Draggable = true
- Main.Visible = true
- Main.ClipsDescendants = true
- local corner = Instance.new("UICorner", Main)
- corner.CornerRadius = UDim.new(0, 12)
- -- Blue Neon Glow (Edge)
- local Glow = Instance.new("ImageLabel", Main)
- Glow.Name = "Glow"
- Glow.Image = "rbxassetid://4996891970" -- Blue blur aura
- Glow.ImageColor3 = Color3.fromRGB(0, 200, 255)
- Glow.BackgroundTransparency = 1
- Glow.Size = UDim2.new(1, 40, 1, 40)
- Glow.Position = UDim2.new(0, -20, 0, -20)
- Glow.ZIndex = 0
- Glow.ScaleType = Enum.ScaleType.Slice
- Glow.SliceCenter = Rect.new(20, 20, 280, 280)
- -- Title
- local Title = Instance.new("TextLabel", Main)
- Title.Text = "MoreScripts (Elvis)"
- Title.Size = UDim2.new(1, 0, 0, 40)
- Title.BackgroundTransparency = 1
- Title.TextColor3 = Color3.fromRGB(0, 255, 255)
- Title.Font = Enum.Font.GothamBold
- Title.TextScaled = true
- -- Scroll Frame
- local Scroll = Instance.new("ScrollingFrame", Main)
- Scroll.Size = UDim2.new(1, -20, 1, -60)
- Scroll.Position = UDim2.new(0, 10, 0, 50)
- Scroll.BackgroundTransparency = 1
- Scroll.CanvasSize = UDim2.new(0, 0, 0, 0)
- Scroll.ScrollBarThickness = 4
- Scroll.AutomaticCanvasSize = Enum.AutomaticSize.Y
- local UIList = Instance.new("UIListLayout", Scroll)
- UIList.Padding = UDim.new(0, 8)
- UIList.SortOrder = Enum.SortOrder.LayoutOrder
- local function createButton(text, scriptUrl)
- local Btn = Instance.new("TextButton", Scroll)
- Btn.Size = UDim2.new(1, 0, 0, 40)
- Btn.BackgroundColor3 = Color3.fromRGB(20, 20, 35)
- Btn.TextColor3 = Color3.fromRGB(255, 255, 255)
- Btn.Text = text
- Btn.Font = Enum.Font.Gotham
- Btn.TextScaled = true
- Btn.AutoButtonColor = true
- local BtnCorner = Instance.new("UICorner", Btn)
- BtnCorner.CornerRadius = UDim.new(0, 10)
- local Glow = Instance.new("UIStroke", Btn)
- Glow.Color = Color3.fromRGB(0, 200, 255)
- Glow.Thickness = 1.5
- Glow.Transparency = 0.3
- Btn.MouseButton1Click:Connect(function()
- pcall(function()
- loadstring(game:HttpGet(scriptUrl))()
- end)
- end)
- end
- -- Buttons
- createButton("Join Any Player", "https://pastebin.com/raw/4BaUUZCk")
- createButton("RC7 Remake", "https://pastebin.com/raw/YWEjtR94")
- createButton("Teleport GUI", "https://pastebin.com/raw/NLuh6z43")
- createButton("Lazy Hub V4", "https://rawscripts.net/raw/The-Chosen-One-laziest-V2-7696")
- createButton("Nameless Admin", "https://rawscripts.net/raw/Universal-Script-nameless-admin-so-good-38584")
- createButton("Fling GUI", "https://pastebin.com/raw/kuKGRSBD")
- createButton("X Ghost Hub X", "https://rawscripts.net/raw/Universal-Script-X-Ghost-Hub-X-7595")
- createButton("Chat Bypasser", "https://raw.githubusercontent.com/AnnaRoblox/AnnaBypasser/refs/heads/main/AnnaBypasser.lua")
- createButton("Chat Troll (Admin)", "https://pastebin.com/raw/b6fFs5K6")
- createButton("Sword Hacks Menu", "https://pastebin.com/raw/SfQanmLw")
- createButton("Dex Explorer", "https://rawscripts.net/raw/Universal-Script-Keyless-mobile-dex-17888")
- -- Minimize Button
- local MinBtn = Instance.new("TextButton", Main)
- MinBtn.Size = UDim2.new(0, 24, 0, 24)
- MinBtn.Position = UDim2.new(1, -30, 0, 6)
- MinBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
- MinBtn.Text = "-"
- MinBtn.TextColor3 = Color3.fromRGB(0, 0, 0)
- MinBtn.Font = Enum.Font.GothamBold
- MinBtn.TextScaled = true
- local MinCorner = Instance.new("UICorner", MinBtn)
- MinCorner.CornerRadius = UDim.new(1, 0)
- local minimized = false
- MinBtn.MouseButton1Click:Connect(function()
- minimized = not minimized
- if minimized then
- Scroll.Visible = false
- Main.Size = UDim2.new(0, 340, 0, 60)
- else
- Scroll.Visible = true
- Main.Size = UDim2.new(0, 340, 0, 420)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement