TX_YT1234

loadstring maker (open source)

Feb 13th, 2021
1,206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local input = Instance.new("TextBox")
  9. local make = Instance.new("TextButton")
  10. local copy = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.Active = true
  18. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  19. Frame.Position = UDim2.new(0.18984127, 0, 0.25429976, 0)
  20. Frame.Size = UDim2.new(0, 314, 0, 233)
  21. Frame.Draggable = true
  22.  
  23. input.Name = "input"
  24. input.Parent = Frame
  25. input.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  26. input.Position = UDim2.new(0.060509555, 0, 0.300429195, 0)
  27. input.Size = UDim2.new(0, 275, 0, 50)
  28. input.Font = Enum.Font.SourceSans
  29. input.PlaceholderText = "raw url here"
  30. input.Text = ""
  31. input.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. input.TextSize = 15.000
  33.  
  34. make.Name = "make"
  35. make.Parent = Frame
  36. make.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. make.Position = UDim2.new(0.178343952, 0, 0.0343347713, 0)
  38. make.Size = UDim2.new(0, 200, 0, 50)
  39. make.Font = Enum.Font.SourceSans
  40. make.Text = "make loadstring"
  41. make.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. make.TextSize = 14.000
  43.  
  44. copy.Name = "copy"
  45. copy.Parent = Frame
  46. copy.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  47. copy.Position = UDim2.new(0.181528658, 0, 0.609442055, 0)
  48. copy.Size = UDim2.new(0, 200, 0, 50)
  49. copy.Font = Enum.Font.SourceSans
  50. copy.Text = "copy loadstring"
  51. copy.TextColor3 = Color3.fromRGB(0, 0, 0)
  52. copy.TextSize = 14.000
  53.  
  54. -- Scripts:
  55.  
  56. local function AESAA_fake_script() -- make.LocalScript
  57. local script = Instance.new('LocalScript', make)
  58.  
  59. script.Parent.MouseButton1Click:Connect(function()
  60. input.Text = "loadstring(game:HttpGet('"..input.Text.."'))()"
  61. end)
  62. end
  63. coroutine.wrap(AESAA_fake_script)()
  64. local function ZBMDA_fake_script() -- copy.LocalScript
  65. local script = Instance.new('LocalScript', copy)
  66.  
  67. script.Parent.MouseButton1Click:Connect(function()
  68. setclipboard(input.Text)
  69. end)
  70. end
  71. coroutine.wrap(ZBMDA_fake_script)()
  72.  
Advertisement
Add Comment
Please, Sign In to add comment