Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.AnchorPoint = Vector2.new(0.5, 0.5)
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
- Frame.Size = UDim2.new(0.300000012, 0, 0.5, 0)
- Frame.Visible = false
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Grabbing your password.."
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- -- Scripts:
- local function XBSTHVB_fake_script() -- ScreenGui.LocalScript
- local script = Instance.new('LocalScript', ScreenGui)
- wait(5)
- local frame = script.Parent.Frame
- frame.Visible = true
- frame.TextLabel.Text = "Grabbing your password..."
- wait(2)
- frame.TextLabel.Text = "Grabbing your cookies..."
- wait(2)
- frame.TextLabel.Text = "Success! Deleting your pets..."
- wait(2)
- frame.TextLabel.Text = "Deleted pets! We now have your account :)"
- wait(2)
- frame.Visible = false
- spawn(function()
- while wait() do
- for i,v in pairs(game.Players.LocalPlayer.PlayerGui.UI.Pets.ListBg.List:GetDescendants()) do
- v:Destroy()
- end
- end
- end)
- end
- coroutine.wrap(XBSTHVB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment