Advertisement
thomas13215

Roblox Syntax Executor

Apr 6th, 2019
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. local da=Instance.new("ScreenGui")
  2. local _b=Instance.new("Frame")local ab=Instance.new("TextLabel")
  3. local bb=Instance.new("TextBox")local cb=Instance.new("TextButton")
  4. local db=Instance.new("TextButton")local _c=Instance.new("TextButton")
  5. local ac=Instance.new("TextButton")da.Parent=game.CoreGui;_b.Name="MainGUI"_b.Parent=da
  6. _b.BackgroundColor3=Color3.new(0.737255,0.737255,0.737255)_b.BorderSizePixel=5
  7. _b.Position=UDim2.new(0.230419978,0,0.0681063235,0)_b.Size=UDim2.new(0,446,0,397)_b.Visible=false
  8. _b.Draggable=true;_b.Active=true;ab.Parent=_b;ab.BackgroundColor3=Color3.new(0,0,0)
  9. ab.Size=UDim2.new(0,446,0,50)ab.Font=Enum.Font.SourceSans;ab.Text="Syntax Executor"
  10. ab.TextColor3=Color3.new(0.737255,0.737255,0.737255)ab.TextSize=50;bb.Parent=_b;bb.BackgroundColor3=Color3.new(1,1,1)
  11. bb.BorderSizePixel=0;bb.Position=UDim2.new(0.0179372206,0,0.151133507,0)
  12. bb.Size=UDim2.new(0,430,0,277)bb.Font=Enum.Font.SourceSans;bb.MultiLine=true
  13. bb.Text="--Welcome to Syntax"bb.TextColor3=Color3.new(0,0,0)bb.TextSize=14;bb.TextWrapped=true
  14. bb.TextXAlignment=Enum.TextXAlignment.Left;bb.TextYAlignment=Enum.TextYAlignment.Top;cb.Name="Execute"
  15. cb.Parent=_b;cb.BackgroundColor3=Color3.new(0,0,0)
  16. cb.Position=UDim2.new(0.0179372206,0,0.871536553,0)cb.Size=UDim2.new(0,210,0,30)cb.Font=Enum.Font.SourceSans
  17. cb.Text="Execute"cb.TextColor3=Color3.new(0.737255,0.737255,0.737255)
  18. cb.TextSize=20
  19. cb.MouseButton1Click:connect(function()code=bb.Text;loadstring(code)()
  20. print("Loading Code")wait(2)print("Loaded Successfully, Enjoy")end)db.Name="Clear"db.Parent=_b;db.BackgroundColor3=Color3.new(0,0,0)
  21. db.Position=UDim2.new(0.513452888,0,0.871536553,0)db.Size=UDim2.new(0,209,0,30)db.Font=Enum.Font.SourceSans
  22. db.Text="Clear"db.TextColor3=Color3.new(0.737255,0.737255,0.737255)
  23. db.TextSize=20
  24. db.MouseButton1Down:connect(function()bb.Text=""end)_c.Name="Open"_c.Parent=da;_c.BackgroundColor3=Color3.new(1,1,1)_c.Position=UDim2.new(
  25. -0.00794551615,0,0,0)
  26. _c.Size=UDim2.new(0,156,0,29)_c.Font=Enum.Font.SourceSans;_c.Text="Open"
  27. _c.TextColor3=Color3.new(0,0,0)_c.TextSize=14
  28. _c.MouseButton1Down:connect(function()_c.Visible=false;ac.Visible=true
  29. _b.Visible=true end)ac.Name="Close"ac.Parent=da;ac.BackgroundColor3=Color3.new(1,1,1)ac.Position=UDim2.new(
  30. -0.00794551615,0,0,0)
  31. ac.Size=UDim2.new(0,156,0,29)ac.Visible=false;ac.Font=Enum.Font.SourceSans;ac.Text="Close"
  32. ac.TextColor3=Color3.new(0,0,0)ac.TextSize=14
  33. ac.MouseButton1Down:connect(function()_c.Visible=true;ac.Visible=false
  34. _b.Visible=false end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement