-- Script executer script XD. Idk why you would need this, well I think i need it for quick execution without crashing and stuff like that lol. -Xyper local S1 = Instance.new("ScreenGui") local S1Frame = Instance.new("Frame") local Execute = Instance.new("TextButton") local Clear = Instance.new("TextButton") local Input = Instance.new("TextBox") local OpenClose = Instance.new("TextButton") S1.Name = "S1" S1.Parent = game.Players.LocalPlayer.PlayerGui S1.ZIndexBehavior = Enum.ZIndexBehavior.Sibling S1.ResetOnSpawn = false S1Frame.Name = "S1Frame" S1Frame.Parent = S1 S1Frame.BackgroundColor3 = Color3.new(1, 1, 1) S1Frame.Position = UDim2.new(0, 0, 0.248875543, 0) S1Frame.Size = UDim2.new(0, 545, 0, 384) S1Frame.Style = Enum.FrameStyle.DropShadow S1Frame.Visible = false Execute.Name = "Execute" Execute.Parent = S1Frame Execute.BackgroundColor3 = Color3.new(1, 1, 1) Execute.Position = UDim2.new(0.00872371532, 0, 0.880995035, 0) Execute.Size = UDim2.new(0, 106, 0, 35) Execute.Style = Enum.ButtonStyle.RobloxButtonDefault Execute.Font = Enum.Font.SourceSans Execute.Text = "Execute" Execute.TextColor3 = Color3.new(1, 1, 1) Execute.TextScaled = true Execute.TextSize = 14 Execute.TextWrapped = true -- MADE BY XYPER IN PASTEBIN Clear.Name = "Clear" Clear.Parent = S1Frame Clear.BackgroundColor3 = Color3.new(1, 1, 1) Clear.Position = UDim2.new(0.228907213, 0, 0.880995035, 0) Clear.Size = UDim2.new(0, 106, 0, 35) Clear.Style = Enum.ButtonStyle.RobloxButtonDefault Clear.Font = Enum.Font.SourceSans Clear.Text = "Clear" Clear.TextColor3 = Color3.new(1, 1, 1) Clear.TextScaled = true Clear.TextSize = 14 Clear.TextWrapped = true Input.Name = "Input" Input.Parent = S1Frame Input.BackgroundColor3 = Color3.new(0.0117647, 0, 0.184314) Input.BackgroundTransparency = 0.5 Input.Position = UDim2.new(0.0406618454, 0, 0.050907772, 0) Input.Size = UDim2.new(0, 486, 0, 300) Input.Font = Enum.Font.SourceSans print("Made by Xyper in Pastebin") Input.PlaceholderText = "Code goes here" Input.Text = "" Input.TextColor3 = Color3.new(255, 255, 255) Input.TextSize = 14 Input.TextXAlignment = Enum.TextXAlignment.Left Input.TextYAlignment = Enum.TextYAlignment.Top -- MADE BY XYPER IN PASTEBIN OpenClose.Name = "Open/Close" OpenClose.Parent = S1 OpenClose.BackgroundColor3 = Color3.new(1, 1, 1) OpenClose.Position = UDim2.new(0, 0, 0.88905549, 0) OpenClose.Size = UDim2.new(0, 103, 0, 34) OpenClose.Style = Enum.ButtonStyle.RobloxButtonDefault OpenClose.Font = Enum.Font.SourceSans OpenClose.Text = "Show/Hide" OpenClose.TextColor3 = Color3.new(1, 1, 1) OpenClose.TextScaled = true OpenClose.TextSize = 14 OpenClose.TextWrapped = true -- Scripts OpenClose.MouseButton1Click:Connect(function() if S1Frame.Visible == false then S1Frame.Visible = true else S1Frame.Visible = false end end) -- MADY BY XYPER IN PASTEBIN Execute.MouseButton1Click:Connect(function() loadstring(Input.Text) end) Clear.MouseButton1Click:Connect(function() Input.Text = "" end) -- Xyper (Pastebin)