Advertisement
memberhero

Mario Gui

Dec 13th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. -- Objects
  2. wait(1)
  3. local MarioGui = Instance.new("ScreenGui")
  4. local MainFrame = Instance.new("Frame")
  5. local Logo2 = Instance.new("TextLabel")
  6. local Logo = Instance.new("ImageLabel")
  7. local TextButton = Instance.new("TextButton")
  8. local Loadstring = Instance.new("Frame")
  9. local Script = Instance.new("TextBox")
  10. local Execute = Instance.new("TextButton")
  11.  
  12. -- Properties
  13.  
  14. MarioGui.Name = "MarioGui"
  15. MarioGui.Parent = game.Players.LocalPlayer.PlayerGui
  16.  
  17. MainFrame.Name = "MainFrame"
  18. MainFrame.Parent = MarioGui
  19. MainFrame.BackgroundColor3 = Color3.new(1, 0, 0)
  20. MainFrame.BorderSizePixel = 0
  21. MainFrame.Position = UDim2.new(0.0575373992, 0, 0.113839291, 0)
  22. MainFrame.Size = UDim2.new(0, 532, 0, 54)
  23.  
  24. Logo2.Name = "Logo2"
  25. Logo2.Parent = MainFrame
  26. Logo2.BackgroundColor3 = Color3.new(1, 0, 0)
  27. Logo2.Position = UDim2.new(0.105263159, 0, 0, 0)
  28. Logo2.Size = UDim2.new(0, 221, 0, 50)
  29. Logo2.Font = Enum.Font.SourceSans
  30. Logo2.FontSize = Enum.FontSize.Size14
  31. Logo2.Text = "Mario GUI BY basstracker1970"
  32. Logo2.TextSize = 14
  33.  
  34. Logo.Name = "Logo"
  35. Logo.Parent = MainFrame
  36. Logo.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Logo.Position = UDim2.new(0.00563909765, 0, 0, 0)
  38. Logo.Size = UDim2.new(0, 53, 0, 50)
  39. Logo.Image = "rbxassetid://55206305"
  40.  
  41. TextButton.Parent = MainFrame
  42. TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
  43. TextButton.BorderSizePixel = 0
  44. TextButton.Position = UDim2.new(0, 0, 1, 0)
  45. TextButton.Size = UDim2.new(0, 196, 0, 50)
  46. TextButton.Font = Enum.Font.SourceSans
  47. TextButton.FontSize = Enum.FontSize.Size14
  48. TextButton.Text = "Lua.exe"
  49. TextButton.TextSize = 14
  50. TextButton.MouseButton1Down:connect(function()
  51. Loadstring.Visible = true
  52. end)
  53. Loadstring.Name = "Loadstring"
  54. Loadstring.Parent = MarioGui
  55. Loadstring.BackgroundColor3 = Color3.new(1, 0, 0)
  56. Loadstring.Position = UDim2.new(0.0575373992, 0, 0.345982134, 0)
  57. Loadstring.Size = UDim2.new(0, 532, 0, 246)
  58. Loadstring.Visible = false
  59.  
  60. Script.Name = "Script"
  61. Script.Parent = Loadstring
  62. Script.BackgroundColor3 = Color3.new(1, 0, 0)
  63. Script.BorderSizePixel = 0
  64. Script.Size = UDim2.new(0, 183, 0, 50)
  65. Script.Font = Enum.Font.SourceSans
  66. Script.FontSize = Enum.FontSize.Size14
  67. Script.Text = "print()"
  68. Script.TextSize = 14
  69.  
  70. Execute.Name = "Execute"
  71. Execute.Parent = Loadstring
  72. Execute.BackgroundColor3 = Color3.new(1, 0, 0)
  73. Execute.BorderSizePixel = 0
  74. Execute.Position = UDim2.new(0.624060154, 0, 1, 0)
  75. Execute.Size = UDim2.new(0, 200, 0, 50)
  76. Execute.Font = Enum.Font.SourceSans
  77. Execute.FontSize = Enum.FontSize.Size14
  78. Execute.Text = "Execute"
  79. Execute.TextSize = 14
  80. Execute.MouseButton1Down:connect(function()
  81. game:GetService("Players")
  82. loadstring(Script.Text)()
  83. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement