Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait()
- spawn(function()
- local VirtualUser = game:GetService("VirtualUser")
- game:GetService("Players").LocalPlayer.Idled:Connect(function()
- VirtualUser:CaptureController()
- VirtualUser:ClickButton2(Vector2.new())
- end)
- end)
- local playerName = game.Players.LocalPlayer.Name
- local g = Instance.new("ScreenGui")
- g.Name = "IloveGray"
- g.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- local label = Instance.new("TextLabel", g)
- label.Text = "Updated"
- label.Size = UDim2.new(0, 200, 0, 50)
- label.Position = UDim2.new(0.5, -100, 1, -50)
- label.BackgroundColor3 = Color3.new(0, 0, 0)
- label.TextColor3 = Color3.new(1, 1, 1)
- label.BackgroundTransparency = 0.5
- local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
- local tween = game:GetService("TweenService"):Create(label, tweenInfo, {Position = UDim2.new(0.5, -100, 0.9, -25)})
- tween:Play()
- wait(5)
- label:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement