Facebook
From Corrupt Iguana, 2 Years ago, written in Plain Text.
This paste is a reply to Re: Untitled from Mammoth Frog - view diff
Embed
Download Paste or View Raw
Hits: 79
  1. local Players = game:GetService"Players";
  2. local Client = Players.LocalPlayer
  3.  
  4. function InfiniteStamina()
  5.    local BodyEffects = Client.Character:WaitForChild"BodyEffects";
  6.    local Defense, Movement, Reload = BodyEffects:WaitForChild"Defense", BodyEffects:WaitForChild"Movement", BodyEffects:WaitForChild"Reload"
  7.    
  8.    while wait() do
  9.        Reload.Value = false
  10.        Defense.Value = 9e9
  11.        
  12.        for _, v in next, Movement:GetChildren() do
  13.            if v then
  14.                v:Destroy()
  15.            end
  16.        end
  17.    end
  18. end
  19. InfiniteStamina()
  20.