Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local finished = Instance.new("TextButton")
- local inhere = Instance.new("TextBox")
- local explainlol = Instance.new("TextLabel")
- local bye = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- Frame.Parent = ScreenGui
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(0.67451, 0, 0)
- Frame.Position = UDim2.new(0.5, -245, 0.5, -140)
- Frame.Size = UDim2.new(0, 490, 0, 280)
- finished.Name = "finished"
- finished.Parent = Frame
- finished.BackgroundColor3 = Color3.new(0.756863, 0.109804, 0.109804)
- finished.Position = UDim2.new(0, 370, 0, 230)
- finished.Size = UDim2.new(0, 110, 0, 40)
- finished.Text = "Execute"
- inhere.Name = "inhere"
- inhere.Parent = Frame
- inhere.BackgroundColor3 = Color3.new(1, 1, 1)
- inhere.Position = UDim2.new(0, 10, 0, 10)
- inhere.Size = UDim2.new(0, 450, 0, 210)
- inhere.MultiLine = true
- inhere.Text = ""
- inhere.TextWrapped = true
- inhere.TextXAlignment = Enum.TextXAlignment.Left
- inhere.TextYAlignment = Enum.TextYAlignment.Top
- explainlol.Name = "explainlol"
- explainlol.Parent = Frame
- explainlol.Active = true
- explainlol.BackgroundColor3 = Color3.new(0.756863, 0.109804, 0.109804)
- explainlol.Position = UDim2.new(0, 10, 0, 230)
- explainlol.Size = UDim2.new(0, 340, 0, 40)
- explainlol.Text = "I dunno how many lines this boi can run (probably as much as roblox can take). Useful to use just incase your level 7 crashes. Have fun. -Krm35"
- explainlol.TextColor3 = Color3.new(0, 0, 0)
- explainlol.TextWrapped = true
- bye.Name = "bye"
- bye.Parent = Frame
- bye.BackgroundColor3 = Color3.new(0.67451, 0, 0)
- bye.Position = UDim2.new(0, 470, 0, 0)
- bye.Size = UDim2.new(0, 20, 0, 20)
- bye.Text = "X"
- bye.MouseButton1Down:connect(function()
- bye.Parent.Parent:remove()
- end)
- finished.MouseButton1Down:connect(function()
- datboi = finished.Parent.inhere.Text
- loadstring(datboi)()
- end)
Advertisement
Add Comment
Please, Sign In to add comment