Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- wait(1)
- local MarioGui = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local Logo2 = Instance.new("TextLabel")
- local Logo = Instance.new("ImageLabel")
- local TextButton = Instance.new("TextButton")
- local Loadstring = Instance.new("Frame")
- local Script = Instance.new("TextBox")
- local Execute = Instance.new("TextButton")
- -- Properties
- MarioGui.Name = "MarioGui"
- MarioGui.Parent = game.Players.LocalPlayer.PlayerGui
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = MarioGui
- MainFrame.BackgroundColor3 = Color3.new(1, 0, 0)
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(0.0575373992, 0, 0.113839291, 0)
- MainFrame.Size = UDim2.new(0, 532, 0, 54)
- Logo2.Name = "Logo2"
- Logo2.Parent = MainFrame
- Logo2.BackgroundColor3 = Color3.new(1, 0, 0)
- Logo2.Position = UDim2.new(0.105263159, 0, 0, 0)
- Logo2.Size = UDim2.new(0, 221, 0, 50)
- Logo2.Font = Enum.Font.SourceSans
- Logo2.FontSize = Enum.FontSize.Size14
- Logo2.Text = "Mario GUI BY basstracker1970"
- Logo2.TextSize = 14
- Logo.Name = "Logo"
- Logo.Parent = MainFrame
- Logo.BackgroundColor3 = Color3.new(1, 1, 1)
- Logo.Position = UDim2.new(0.00563909765, 0, 0, 0)
- Logo.Size = UDim2.new(0, 53, 0, 50)
- Logo.Image = "rbxassetid://55206305"
- TextButton.Parent = MainFrame
- TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0, 0, 1, 0)
- TextButton.Size = UDim2.new(0, 196, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.FontSize = Enum.FontSize.Size14
- TextButton.Text = "Lua.exe"
- TextButton.TextSize = 14
- TextButton.MouseButton1Down:connect(function()
- Loadstring.Visible = true
- end)
- Loadstring.Name = "Loadstring"
- Loadstring.Parent = MarioGui
- Loadstring.BackgroundColor3 = Color3.new(1, 0, 0)
- Loadstring.Position = UDim2.new(0.0575373992, 0, 0.345982134, 0)
- Loadstring.Size = UDim2.new(0, 532, 0, 246)
- Loadstring.Visible = false
- Script.Name = "Script"
- Script.Parent = Loadstring
- Script.BackgroundColor3 = Color3.new(1, 0, 0)
- Script.BorderSizePixel = 0
- Script.Size = UDim2.new(0, 183, 0, 50)
- Script.Font = Enum.Font.SourceSans
- Script.FontSize = Enum.FontSize.Size14
- Script.Text = "print()"
- Script.TextSize = 14
- Execute.Name = "Execute"
- Execute.Parent = Loadstring
- Execute.BackgroundColor3 = Color3.new(1, 0, 0)
- Execute.BorderSizePixel = 0
- Execute.Position = UDim2.new(0.624060154, 0, 1, 0)
- Execute.Size = UDim2.new(0, 200, 0, 50)
- Execute.Font = Enum.Font.SourceSans
- Execute.FontSize = Enum.FontSize.Size14
- Execute.Text = "Execute"
- Execute.TextSize = 14
- Execute.MouseButton1Down:connect(function()
- game:GetService("Players")
- loadstring(Script.Text)()
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement