A PHP Error was encountered

Severity: Notice

Message: Undefined index: HARD

Filename: geshi/geshi.php

Line Number: 2726

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HARD

Filename: geshi/geshi.php

Line Number: 2726

A PHP Error was encountered

Severity: Notice

Message: Undefined index: HARD

Filename: geshi/geshi.php

Line Number: 2726

Re: Re: Press e to noclip - Pastebin
Facebook
From Botched Finch, 1 Year ago, written in Erlang.
">

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: 242
  1. noclip = false
  2. game:GetService('RunService').Stepped:connect(function()
  3. if noclip then
  4. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  5. end
  6. end)
  7. plr = game.Players.LocalPlayer
  8. mouse = plr:GetMouse()
  9. mouse.KeyDown:connect(function(key)
  10.  
  11. if key == "e" then
  12. noclip = not noclip
  13. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  14. end
  15. end)
  16. print('Loaded')
  17. print('Press "E" to noclip')