Advertisement
ExecutorForALLdomain

Humanoid Manipulation Script

Oct 18th, 2024
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. local folder = nil --[[FOLDER / path WHERE THE AI ARE!]] -- dont work on Player aka game.Players
  2.  
  3. for i,humanoid in pairs(folder:GetDescendants()) do
  4.     if humanoid:IsA("Humanoid") then
  5.         humanoid.WalkSpeed = 100
  6.         --[[
  7.             example:
  8.             humanoid.WalkSpeed = 1000
  9.             humanoid.Sit = true
  10.             humanoid.HipHeight = 40
  11.         ]]
  12.     end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement