Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell infortality
- -- Revamp by ImFrostic, Version 2.8
- -- Objects
- local Executor = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local bar1 = Instance.new("Frame")
- local bar1_2 = Instance.new("Frame")
- local ScriptGenerator = Instance.new("ScrollingFrame")
- local Input = Instance.new("TextBox")
- local Execute = Instance.new("TextButton")
- local Clear = Instance.new("TextButton")
- -- Properties
- Executor.Name = "Executor"
- Executor.Parent = game.Players.LocalPlayer.PlayerGui
- Main.Name = "Main"
- Main.Parent = Executor
- Main.BackgroundColor3 = Color3.new(1, 1, 1)
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0.680951059, 0, 0.392525077, 0)
- Main.Size = UDim2.new(0, 441, 0, 392)
- bar1.Name = "bar1"
- bar1.Parent = Main
- bar1.BackgroundColor3 = Color3.new(0.745098, 0, 0)
- bar1.BorderSizePixel = 0
- bar1.Size = UDim2.new(0, 442, 0, 22)
- bar1_2.Name = "bar1"
- bar1_2.Parent = Main
- bar1_2.BackgroundColor3 = Color3.new(0.45098, 0, 0)
- bar1_2.BorderSizePixel = 0
- bar1_2.Position = UDim2.new(0, 0, 0.0561224483, 0)
- bar1_2.Size = UDim2.new(0, 442, 0, 10)
- ScriptGenerator.Name = "ScriptGenerator"
- ScriptGenerator.Parent = Main
- ScriptGenerator.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
- ScriptGenerator.BorderSizePixel = 0
- ScriptGenerator.Position = UDim2.new(0.10997732, 0, 0.153849542, 0)
- ScriptGenerator.Size = UDim2.new(0, 344, 0, 228)
- ScriptGenerator.CanvasSize = UDim2.new(0, 0, 100000, 0)
- Input.Name = "Input"
- Input.Parent = ScriptGenerator
- Input.BackgroundColor3 = Color3.new(1, 1, 1)
- Input.BackgroundTransparency = 1
- Input.BorderSizePixel = 0
- Input.Size = UDim2.new(0, 328, 0, 999)
- Input.ClearTextOnFocus = false
- Input.Font = Enum.Font.SourceSans
- Input.MultiLine = true
- Input.Text = "--Script Here"
- Input.TextColor3 = Color3.new(1, 1, 1)
- Input.TextSize = 14
- Input.TextXAlignment = Enum.TextXAlignment.Left
- Input.TextYAlignment = Enum.TextYAlignment.Top
- Execute.Name = "Execute"
- Execute.Parent = Main
- Execute.BackgroundColor3 = Color3.new(0.45098, 0, 0)
- Execute.BorderColor3 = Color3.new(0.745098, 0, 0)
- Execute.BorderSizePixel = 5
- Execute.Position = UDim2.new(0.111111112, 0, 0.80292201, 0)
- Execute.Size = UDim2.new(0, 200, 0, 50)
- Execute.Font = Enum.Font.Cartoon
- Execute.Text = "Execute"
- Execute.TextColor3 = Color3.new(1, 1, 0.498039)
- Execute.TextScaled = true
- Execute.TextSize = 14
- Execute.TextWrapped = true
- Clear.Name = "Clear"
- Clear.Parent = Main
- Clear.BackgroundColor3 = Color3.new(0.45098, 0, 0)
- Clear.BorderColor3 = Color3.new(0.745098, 0, 0)
- Clear.BorderSizePixel = 5
- Clear.Position = UDim2.new(0.687239528, 0, 0.803571403, 0)
- Clear.Size = UDim2.new(0, 90, 0, 50)
- Clear.Font = Enum.Font.Cartoon
- Clear.Text = "Clear"
- Clear.TextColor3 = Color3.new(1, 1, 0.498039)
- Clear.TextScaled = true
- Clear.TextSize = 14
- Clear.TextWrapped = true
- -- Scripts
- Execute.MouseButton1Down:Connect(function()
- loadstring(Input.Text)
- end)
- Clear.MouseButton1Down:Connect(function()
- Input.Text = "--Script Here"
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement