Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Clear = Instance.new("TextButton")
- local Script1 = Instance.new("TextButton")
- local Holder = Instance.new("TextBox")
- local Script4 = Instance.new("TextButton")
- local Script3 = Instance.new("TextButton")
- local Script2 = Instance.new("TextButton")
- local Execute = Instance.new("TextButton")
- ScreenGui.Parent = game.CoreGui
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.BorderColor3 = Color3.new(0, 0, 0)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.0278306156, 0, 0.136217952, 0)
- Frame.Size = UDim2.new(0, 768, 0, 283)
- Clear.Name = "Clear"
- Clear.Parent = Frame
- Clear.BackgroundColor3 = Color3.new(1, 1, 1)
- Clear.BorderColor3 = Color3.new(0, 0, 0)
- Clear.BorderSizePixel = 0
- Clear.Position = UDim2.new(0.512371957, 0, 0.786381483, 0)
- Clear.Size = UDim2.new(0, 192, 0, 50)
- Clear.Font = Enum.Font.SourceSans
- Clear.Text = "Clear"
- Clear.TextColor3 = Color3.new(0, 0, 0)
- Clear.TextSize = 14
- Script1.Name = "Script1"
- Script1.Parent = Frame
- Script1.BackgroundColor3 = Color3.new(1, 1, 1)
- Script1.BorderColor3 = Color3.new(0, 0, 0)
- Script1.BorderSizePixel = 0
- Script1.Position = UDim2.new(0.815835118, 0, 0.0558724925, 0)
- Script1.Size = UDim2.new(0, 111, 0, 36)
- Script1.Font = Enum.Font.SourceSans
- Script1.Text = "Script1"
- Script1.TextColor3 = Color3.new(0, 0, 0)
- Script1.TextSize = 14
- Holder.Name = "Holder"
- Holder.Parent = Frame
- Holder.BackgroundColor3 = Color3.new(0.701961, 0.701961, 0.701961)
- Holder.BorderColor3 = Color3.new(0, 0, 0)
- Holder.BorderSizePixel = 0
- Holder.Position = UDim2.new(0.0224704649, 0, 0.0548274703, 0)
- Holder.Size = UDim2.new(0, 582, 0, 200)
- Holder.ClearTextOnFocus = false
- Holder.Font = Enum.Font.SourceSans
- Holder.MultiLine = true
- Holder.Text = ""
- Holder.TextColor3 = Color3.new(0, 0, 0)
- Holder.TextSize = 14
- Holder.TextXAlignment = Enum.TextXAlignment.Left
- Holder.TextYAlignment = Enum.TextYAlignment.Top
- Script4.Name = "Script4"
- Script4.Parent = Frame
- Script4.BackgroundColor3 = Color3.new(1, 1, 1)
- Script4.BorderColor3 = Color3.new(0, 0, 0)
- Script4.BorderSizePixel = 0
- Script4.Position = UDim2.new(0.815835178, 0, 0.631844103, 0)
- Script4.Size = UDim2.new(0, 111, 0, 36)
- Script4.Font = Enum.Font.SourceSans
- Script4.Text = "Script4"
- Script4.TextColor3 = Color3.new(0, 0, 0)
- Script4.TextSize = 14
- Script3.Name = "Script3"
- Script3.Parent = Frame
- Script3.BackgroundColor3 = Color3.new(1, 1, 1)
- Script3.BorderColor3 = Color3.new(0, 0, 0)
- Script3.BorderSizePixel = 0
- Script3.Position = UDim2.new(0.815835178, 0, 0.433964372, 0)
- Script3.Size = UDim2.new(0, 111, 0, 36)
- Script3.Font = Enum.Font.SourceSans
- Script3.Text = "Script3"
- Script3.TextColor3 = Color3.new(0, 0, 0)
- Script3.TextSize = 14
- Script2.Name = "Script2"
- Script2.Parent = Frame
- Script2.BackgroundColor3 = Color3.new(1, 1, 1)
- Script2.BorderColor3 = Color3.new(0, 0, 0)
- Script2.BorderSizePixel = 0
- Script2.Position = UDim2.new(0.815835178, 0, 0.243151665, 0)
- Script2.Size = UDim2.new(0, 111, 0, 36)
- Script2.Font = Enum.Font.SourceSans
- Script2.Text = "Script2"
- Script2.TextColor3 = Color3.new(0, 0, 0)
- Script2.TextSize = 14
- Execute.Name = "Execute"
- Execute.Parent = Frame
- Execute.BackgroundColor3 = Color3.new(1, 1, 1)
- Execute.BorderColor3 = Color3.new(0, 0, 0)
- Execute.BorderSizePixel = 0
- Execute.Position = UDim2.new(0.0540386029, 0, 0.786381483, 0)
- Execute.Size = UDim2.new(0, 192, 0, 50)
- Execute.Font = Enum.Font.SourceSans
- Execute.Text = "Execute"
- Execute.TextColor3 = Color3.new(0, 0, 0)
- Execute.TextSize = 14
- script.Parent.MouseButton1Down:Connect(function()
- local input = script.Parent.Parent.Holder
- input.Text = ""
- end)
- local remote = script.Parent.Remote
- remote.OnServerEvent:Connect(function(player,ss)
- require(script.Loadstring)(ss)()
- end)
- local UIS = game:GetService("UserInputService")
- function dragify(Frame)
- dragToggle = nil
- dragSpeed = 0.15
- dragInput = nil
- dragStart = nil
- dragPos = nil
- function updateInput(input)
- Delta = input.Position - dragStart
- Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
- game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.15), {Position = Position}):Play()
- end
- Frame.InputBegan:Connect(function(input)
- if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
- dragToggle = true
- dragStart = input.Position
- startPos = Frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragToggle = false
- end
- end)
- end
- end)
- Frame.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- dragInput = input
- end
- end)
- game:GetService("UserInputService").InputChanged:Connect(function(input)
- if input == dragInput and dragToggle then
- updateInput(input)
- end
- end)
- end
- dragify(script.Parent)
- script.Parent.MouseButton1Down:Connect(function()
- local input = script.Parent.Parent.Holder
- input.Text = "require(5887966886).EH('ReplaceWithUsername')"
- end)
- script.Parent.MouseButton1Down:Connect(function()
- local input = script.Parent.Parent.Holder
- input.Text = "require(14021031434)('ReplaceWithUsername')"
- end)
- script.Parent.MouseButton1Down:Connect(function()
- local input = script.Parent.Parent.Holder
- input.Text = "require(7192763922).load('ReplaceWithUsername')"
- end)
- script.Parent.MouseButton1Down:Connect(function()
- local input = script.Parent.Parent.Holder
- input.Text = "require(6274987259).v2('ReplaceWithUsername')"
- end)
- script.Parent.MouseButton1Down:Connect(function()
- local input = script.Parent.Parent.Holder
- script.Parent.Parent.Remote:FireServer(input.Text)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement