Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell infortality
- -- Revamp by ImFrostic, Version 2.8
- -- Objects
- local Execution = Instance.new("ScreenGui")
- local Scripts = Instance.new("Frame")
- local Bar1 = Instance.new("Frame")
- local ScriptsInject = Instance.new("ScrollingFrame")
- local Input = Instance.new("TextBox")
- local Execute = Instance.new("TextButton")
- local Clear = Instance.new("TextButton")
- -- Properties
- Execution.Name = "Execution"
- Execution.Parent = game.CoreGui
- Scripts.Name = "Scripts"
- Scripts.Parent = Execution
- Scripts.Active = true
- Scripts.BackgroundColor3 = Color3.new(1, 1, 1)
- Scripts.ClipsDescendants = true
- Scripts.Draggable = true
- Scripts.Position = UDim2.new(0.232003868, 0, 0.113691941, 0)
- Scripts.Size = UDim2.new(0, 563, 0, 298)
- Bar1.Name = "Bar1"
- Bar1.Parent = Scripts
- Bar1.BackgroundColor3 = Color3.new(0, 1, 1)
- Bar1.Size = UDim2.new(0, 563, 0, 44)
- ScriptsInject.Name = "Scripts Inject"
- ScriptsInject.Parent = Scripts
- ScriptsInject.BackgroundColor3 = Color3.new(0.576471, 0.576471, 0.576471)
- ScriptsInject.BackgroundTransparency = 0.5
- ScriptsInject.BorderColor3 = Color3.new(0.333333, 1, 1)
- ScriptsInject.BorderSizePixel = 5
- ScriptsInject.Position = UDim2.new(0.0337477811, 0, 0.191275164, 0)
- ScriptsInject.Size = UDim2.new(0, 530, 0, 186)
- Input.Name = "Input"
- Input.Parent = ScriptsInject
- Input.BackgroundColor3 = Color3.new(1, 1, 1)
- Input.BackgroundTransparency = 0.5
- Input.BorderSizePixel = 0
- Input.Size = UDim2.new(0, 506, 0, 999)
- Input.Font = Enum.Font.SourceSans
- Input.MultiLine = true
- Input.TextColor3 = Color3.new(1, 1, 1)
- Input.TextSize = 14
- Input.TextWrapped = true
- Execute.Name = "Execute"
- Execute.Parent = Scripts
- Execute.BackgroundColor3 = Color3.new(1, 1, 1)
- Execute.BorderSizePixel = 0
- Execute.Position = UDim2.new(0.0888099521, 0, 0.855704725, 0)
- Execute.Size = UDim2.new(0, 169, 0, 34)
- Execute.Font = Enum.Font.SourceSans
- Execute.Text = "Execute"
- Execute.TextColor3 = Color3.new(0.333333, 1, 1)
- Execute.TextScaled = true
- Execute.TextSize = 14
- Execute.TextWrapped = true
- Execute.MouseButton1Down:connect(function()
- loadstring(Input.Text)()
- end)
- Clear.Name = "Clear"
- Clear.Parent = Scripts
- Clear.BackgroundColor3 = Color3.new(1, 1, 1)
- Clear.BorderSizePixel = 0
- Clear.Position = UDim2.new(0.564831197, 0, 0.855704725, 0)
- Clear.Size = UDim2.new(0, 169, 0, 34)
- Clear.Font = Enum.Font.SourceSans
- Clear.Text = "Clear"
- Clear.TextColor3 = Color3.new(0.333333, 1, 1)
- Clear.TextScaled = true
- Clear.TextSize = 14
- Clear.TextWrapped = true
- Clear.MouseButton1Down:connect(function()
- Input.Text = ""
- end)
- -- Scripts
Add Comment
Please, Sign In to add comment