BinaricHi

Untitled

Apr 14th, 2024
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4. -- FE Script Executor
  5. -- Executor Beta V.1
  6.  
  7. -- Create the executor GUI
  8. local executorGui = Instance.new("ScreenGui")
  9. executorGui.Name = "Backdoor By Cve0ch no require"
  10. executorGui.Parent = game.Players.LocalPlayer.PlayerGui
  11.  
  12. local mainFrame = Instance.new("Frame")
  13. mainFrame.Size = UDim2.new(0, 300, 0, 200)
  14. mainFrame.Position = UDim2.new(0, 10, 0, 10)
  15. mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  16. mainFrame.BorderSizePixel = 0
  17. mainFrame.Parent = executorGui
  18.  
  19. local closeButton = Instance.new("TextButton")
  20. closeButton.Size = UDim2.new(0, 20, 0, 20)
  21. closeButton.Position = UDim2.new(0, 5, 0, 5)
  22. closeButton.Text = "X"
  23. closeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  24. closeButton.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  25. closeButton.Parent = mainFrame
  26.  
  27. local inputBox = Instance.new("TextBox")
  28. inputBox.Size = UDim2.new(0, 200, 0, 30)
  29. inputBox.Position = UDim2.new(0, 50, 0, 100)
  30. inputBox.PlaceholderText = "Type you're script here..."
  31. inputBox.Parent = mainFrame
  32.  
  33. local executeButton = Instance.new("TextButton")
  34. executeButton.Size = UDim2.new(0, 150, 0, 30)
  35. executeButton.Position = UDim2.new(0, 75, 0, 150)
  36. executeButton.Text = " Execute🤑😯🤫 "
  37. executeButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  38. executeButton.BackgroundColor3 = Color3.fromRGB(0, 0, 100)
  39. executeButton.Parent = mainFrame
  40.  
  41. -- Close button functionality
  42. closeButton.MouseButton1Click:Connect(function()
  43. executorGui:Destroy()
  44. end)
  45.  
  46. -- Execute button functionality
  47. executeButton.MouseButton1Click:Connect(function()
  48. local scriptToExecute = inputBox.Text
  49. loadstring(scriptToExecute)()
  50. end)
Advertisement
Add Comment
Please, Sign In to add comment