Advertisement
CatGray

Afk

Jan 20th, 2024 (edited)
10,908
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. wait()
  2.  
  3. spawn(function()
  4. local VirtualUser = game:GetService("VirtualUser")
  5. game:GetService("Players").LocalPlayer.Idled:Connect(function()
  6. VirtualUser:CaptureController()
  7. VirtualUser:ClickButton2(Vector2.new())
  8. end)
  9. end)
  10.  
  11. local playerName = game.Players.LocalPlayer.Name
  12.  
  13. local g = Instance.new("ScreenGui")
  14. g.Name = "IloveGray"
  15. g.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. local label = Instance.new("TextLabel", g)
  17. label.Text = "Updated"
  18. label.Size = UDim2.new(0, 200, 0, 50)
  19. label.Position = UDim2.new(0.5, -100, 1, -50)
  20. label.BackgroundColor3 = Color3.new(0, 0, 0)
  21. label.TextColor3 = Color3.new(1, 1, 1)
  22. label.BackgroundTransparency = 0.5
  23.  
  24. local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
  25. local tween = game:GetService("TweenService"):Create(label, tweenInfo, {Position = UDim2.new(0.5, -100, 0.9, -25)})
  26. tween:Play()
  27.  
  28. wait(5)
  29. label:Destroy()
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement