Legit1093

LMAO

Mar 30th, 2020
611
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  17. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  19. Frame.Size = UDim2.new(0.300000012, 0, 0.5, 0)
  20. Frame.Visible = false
  21.  
  22. TextLabel.Parent = Frame
  23. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  24. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  25. TextLabel.Font = Enum.Font.SourceSans
  26. TextLabel.Text = "Grabbing your password.."
  27. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  28. TextLabel.TextScaled = true
  29. TextLabel.TextSize = 14
  30. TextLabel.TextWrapped = true
  31.  
  32. -- Scripts:
  33.  
  34. local function XBSTHVB_fake_script() -- ScreenGui.LocalScript
  35. local script = Instance.new('LocalScript', ScreenGui)
  36.  
  37. wait(5)
  38. local frame = script.Parent.Frame
  39. frame.Visible = true
  40. frame.TextLabel.Text = "Grabbing your password..."
  41. wait(2)
  42. frame.TextLabel.Text = "Grabbing your cookies..."
  43. wait(2)
  44. frame.TextLabel.Text = "Success! Deleting your pets..."
  45. wait(2)
  46. frame.TextLabel.Text = "Deleted pets! We now have your account :)"
  47. wait(2)
  48. frame.Visible = false
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. spawn(function()
  56. while wait() do
  57. for i,v in pairs(game.Players.LocalPlayer.PlayerGui.UI.Pets.ListBg.List:GetDescendants()) do
  58. v:Destroy()
  59. end
  60. end
  61. end)
  62. end
  63. coroutine.wrap(XBSTHVB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment