Facebook
From Mammoth Frog, 2 Years ago, written in Plain Text.
">

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

from

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

- view diff
Embed
Download Paste or View Raw
Hits: 75
  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.  

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Corrupt Iguana text 2 Years ago.