The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Giant Simulator script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 27



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local VirtualUser=game:service'VirtualUser'
  2. game:service'Players'.LocalPlayer.Idled:connect(function()  -- Anti Afk Script
  3.     VirtualUser:CaptureController()
  4.     VirtualUser:ClickButton2(Vector2.new())
  5. end)
  6.  
  7. while true do
  8. for i,v in pairs(game.Workspace.Scene:GetDescendants()) do
  9.     if v.Name == "ResourceNode" then
  10.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  11.         game.Players.LocalPlayer.Character.Humanoid.Jump = true
  12.         wait(1)
  13.     end
  14. end
  15. wait(10)
  16. end