Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3
- -- Instances:
- local a = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- --Properties:
- a.Name = "a"
- a.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- a.Enabled = false
- Frame.Parent = a
- Frame.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
- Frame.BorderSizePixel = 5
- Frame.Position = UDim2.new(0.278128952, 0, 0.406344414, 0)
- Frame.Size = UDim2.new(0, 350, 0, 124)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Size = UDim2.new(0, 350, 0, 30)
- TextLabel.Font = Enum.Font.GothamSemibold
- TextLabel.Text = "Abort so u dont get banned"
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.214285716, 0, 0.387096763, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.GothamSemibold
- TextButton.Text = "Abort"
- TextButton.TextColor3 = Color3.new(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14
- TextButton.TextWrapped = true
- -- Scripts:
- local function JTTV_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- local player = game.Players.LocalPlayer
- script.Parent.MouseButton1Click:Connect(function()
- player:Kick("Successfully aborted. Hope you don't get banned.")
- end)
- end
- coroutine.wrap(JTTV_fake_script)()
- local function UAUF_fake_script() -- a.draggable
- local script = Instance.new('Script', a)
- local frame = script.Parent.Frame -- change riskexeui to whatever frame you want to make draggable
- frame.Draggable = true
- frame.Selectable = true
- frame.Active = true
- frame.RobloxLocked = false
- end
- coroutine.wrap(UAUF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment