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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. -- MADE BY ouw#7809
  2.  
  3. getgenv().farm = false
  4.  
  5. local TweenService  = game:GetService("TweenService")
  6. local noclipE       = false
  7. local antifall      = false
  8.  
  9. local function noclip()
  10.     for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  11.         if v:IsA("BasePart") and v.CanCollide == true then
  12.             v.CanCollide = false
  13.             game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
  14.         end
  15.     end
  16. end
  17.  
  18. local function moveto(obj, speed)
  19.     local info = TweenInfo.new(((game.Players.LocalPlayer.Character.HumanoidRootPart.Position - obj.Position).Magnitude)/ speed,Enum.EasingStyle.Linear)
  20.     local tween = TweenService:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, info, {CFrame = obj})
  21.  
  22.     if not game.Players.LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyVelocity") then
  23.         antifall = Instance.new("BodyVelocity", game.Players.LocalPlayer.Character.HumanoidRootPart)
  24.         antifall.Velocity = Vector3.new(0,0,0)
  25.         noclipE = game:GetService("RunService").Stepped:Connect(noclip)
  26.         tween:Play()
  27.     end
  28.        
  29.     tween.Completed:Connect(function()
  30.         antifall:Destroy()
  31.         noclipE:Disconnect()
  32.     end)
  33. end
  34.  
  35. while farm do task.wait()
  36.     moveto(game:GetService("Workspace").Chests["Normal_Chest"].Hitbox.CFrame, 170)
  37.     game:GetService("VirtualInputManager"):SendKeyEvent(true, "E", false, game)
  38. end



  • Recent Roblox Scripts