Advertisement
athaha

Script I made with chat gpt

Apr 6th, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. -- Command Bar Script (Pastebin-friendly)
  2. -- GUI for executing scripts by name from a predefined list
  3.  
  4. local scriptList = {
  5. fly = "https://pastebin.com/raw/BsPnkswF",
  6. noclip = "https://pastebin.com/raw/mKjQ3QbM",
  7. admin = "https://pastebin.com/raw/yNRmreUh",
  8. infiniteyield = "https://pastebin.com/raw/VK7yNR8R",
  9. aimbot = "https://pastebin.com/raw/GEEg3Tzr",
  10. btools = "https://pastebin.com/raw/cydjdp7D",
  11. clicktp = "https://pastebin.com/raw/vVpB6hVu",
  12. speed = "https://pastebin.com/raw/VTzpcA4p",
  13. fling = "https://pastebin.com/raw/VpLk9Umn",
  14. esp = "https://pastebin.com/raw/Xu3d1mZq",
  15. r6anim = "https://pastebin.com/raw/Q1sUf6x4",
  16. chatbypass = "https://pastebin.com/raw/C1BR0MrB",
  17. sitloop = "https://pastebin.com/raw/V0X6DzMf",
  18. walkonwalls = "https://pastebin.com/raw/JefU7FHH",
  19. infinitejump = "https://pastebin.com/raw/gACbXMsZ"
  20. -- Add more scripts here as needed
  21. }
  22.  
  23. local gui = Instance.new("ScreenGui", game:GetService("CoreGui"))
  24. gui.Name = "CommandBar"
  25.  
  26. local frame = Instance.new("Frame", gui)
  27. frame.Size = UDim2.new(0, 350, 0, 50)
  28. frame.Position = UDim2.new(0.5, -175, 0, 10)
  29. frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  30. frame.BorderSizePixel = 0
  31. frame.Active = true
  32. frame.Draggable = true
  33.  
  34. local box = Instance.new("TextBox", frame)
  35. box.Size = UDim2.new(1, -10, 1, -10)
  36. box.Position = UDim2.new(0, 5, 0, 5)
  37. box.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  38. box.TextColor3 = Color3.new(1, 1, 1)
  39. box.PlaceholderText = "Enter script name (e.g. fly, esp)..."
  40. box.Text = ""
  41. box.ClearTextOnFocus = false
  42. box.TextScaled = true
  43. box.Font = Enum.Font.Code
  44.  
  45. box.FocusLost:Connect(function(enterPressed)
  46. if enterPressed then
  47. local input = box.Text:lower()
  48. local link = scriptList[input]
  49. if link then
  50. pcall(function()
  51. loadstring(game:HttpGet(link))()
  52. end)
  53. box.Text = ""
  54. else
  55. box.Text = "Script not found!"
  56. task.wait(2)
  57. box.Text = ""
  58. end
  59. end
  60. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement