Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Command Bar Script (Pastebin-friendly)
- -- GUI for executing scripts by name from a predefined list
- local scriptList = {
- fly = "https://pastebin.com/raw/BsPnkswF",
- noclip = "https://pastebin.com/raw/mKjQ3QbM",
- admin = "https://pastebin.com/raw/yNRmreUh",
- infiniteyield = "https://pastebin.com/raw/VK7yNR8R",
- aimbot = "https://pastebin.com/raw/GEEg3Tzr",
- btools = "https://pastebin.com/raw/cydjdp7D",
- clicktp = "https://pastebin.com/raw/vVpB6hVu",
- speed = "https://pastebin.com/raw/VTzpcA4p",
- fling = "https://pastebin.com/raw/VpLk9Umn",
- esp = "https://pastebin.com/raw/Xu3d1mZq",
- r6anim = "https://pastebin.com/raw/Q1sUf6x4",
- chatbypass = "https://pastebin.com/raw/C1BR0MrB",
- sitloop = "https://pastebin.com/raw/V0X6DzMf",
- walkonwalls = "https://pastebin.com/raw/JefU7FHH",
- infinitejump = "https://pastebin.com/raw/gACbXMsZ"
- -- Add more scripts here as needed
- }
- local gui = Instance.new("ScreenGui", game:GetService("CoreGui"))
- gui.Name = "CommandBar"
- local frame = Instance.new("Frame", gui)
- frame.Size = UDim2.new(0, 350, 0, 50)
- frame.Position = UDim2.new(0.5, -175, 0, 10)
- frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- frame.BorderSizePixel = 0
- frame.Active = true
- frame.Draggable = true
- local box = Instance.new("TextBox", frame)
- box.Size = UDim2.new(1, -10, 1, -10)
- box.Position = UDim2.new(0, 5, 0, 5)
- box.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
- box.TextColor3 = Color3.new(1, 1, 1)
- box.PlaceholderText = "Enter script name (e.g. fly, esp)..."
- box.Text = ""
- box.ClearTextOnFocus = false
- box.TextScaled = true
- box.Font = Enum.Font.Code
- box.FocusLost:Connect(function(enterPressed)
- if enterPressed then
- local input = box.Text:lower()
- local link = scriptList[input]
- if link then
- pcall(function()
- loadstring(game:HttpGet(link))()
- end)
- box.Text = ""
- else
- box.Text = "Script not found!"
- task.wait(2)
- box.Text = ""
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement