This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- This script allows the player to fly, as if they were in creative mode. Be warned, this isn't perfect, and lag may | |
--- result in your death. | |
--- Firstly we want to ensure that we have a neural interface and wrap it. | |
local modules = peripheral.find("neuralInterface") | |
if not modules then | |
error("Must have a neural interface", 0) | |
end | |
--- - We require a sensor and introspection module in order to gather information about the player |
NewerOlder