TX_YT1234

loadstring maker v2

Feb 15th, 2021
999
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 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. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.Active = true
  19. Frame.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  20. Frame.Position = UDim2.new(0.151485145, 0, 0.328224778, 0)
  21. Frame.Size = UDim2.new(0, 256, 0, 174)
  22. Frame.Draggable = true
  23.  
  24. input.Name = "input"
  25. input.Parent = Frame
  26. input.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  27. input.Position = UDim2.new(0.0676987171, 0, 0.374321908, 0)
  28. input.Size = UDim2.new(0, 230, 0, 42)
  29. input.Font = Enum.Font.SourceSans
  30. input.PlaceholderText = "raw script url"
  31. input.Text = ""
  32. input.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. input.TextSize = 14.000
  34.  
  35. make.Name = "make"
  36. make.Parent = Frame
  37. make.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  38. make.Position = UDim2.new(0.127160549, 0, 0.0738091171, 0)
  39. make.Size = UDim2.new(0, 200, 0, 41)
  40. make.Font = Enum.Font.SourceSans
  41. make.Text = "make loadstring"
  42. make.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. make.TextSize = 14.000
  44.  
  45. copy.Name = "copy"
  46. copy.Parent = Frame
  47. copy.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. copy.Position = UDim2.new(0.127160549, 0, 0.682594836, 0)
  49. copy.Size = UDim2.new(0, 200, 0, 41)
  50. copy.Font = Enum.Font.SourceSans
  51. copy.Text = "copy loadstring"
  52. copy.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. copy.TextSize = 14.000
  54.  
  55. -- Scripts:
  56.  
  57. local function OIWWX_fake_script() -- make.LocalScript
  58. local script = Instance.new('LocalScript', make)
  59.  
  60. script.Parent.MouseButton1Click:Connect(function()
  61. input.Text = "loadstring(game:HttpGet('"..input.Text.."'))()"
  62. end)
  63. end
  64. coroutine.wrap(OIWWX_fake_script)()
  65. local function RMVSPK_fake_script() -- copy.LocalScript
  66. local script = Instance.new('LocalScript', copy)
  67.  
  68. script.Parent.MouseButton1Click:Connect(function()
  69. setclipboard(input.Text)
  70. end)
  71. end
  72. coroutine.wrap(RMVSPK_fake_script)()
  73.  
Advertisement
Add Comment
Please, Sign In to add comment