๐Environment
These are all of the functions revolving the Roblox environment that Wave supports.
Add Spy Callback
<void> addspycallback(<function callback>)
Registers a
callback
that will be executed whenever a RemoteEvent or function is invoked, allowing you to inspect or log the call.
Create Secure Folder
<void> createsecurefolder(<string> path)
Creates a new secure folder to
path
.
Note: The folder itself won't be able to be found by the game. This means you don't need to set the security of the instances within it.
Alternative:
create_secure_folder
Fire Click Detector
<void> fireclickdetector(<ClickDetector> ClickDetector, <number?> Distance = 0, <string?>)
Fires the
ClickDetector
. If no distance supplied, it will default to0
.
Fire Proximity Prompt
<void> fireproximityprompt(<ProximityPrompt> Prompt)
Fires the
ProximityPrompt
trigger.
Fire Touch Interest
<void> firetouchinterest(<BasePart> totouch, <BasePart> Part, <uint?> toggle)
Touches part with
totouch
.
Actions:
Begins the touch.
0
Ends the touch.
1
Get Instances
<table> getinstances(<void>)
Returns a
table
with instances.
Alternative:
get_instances
Get Nil Instances
<table> getnilinstances(<void>)
Returns a
table
with instances parented tonil
.
Alternative:
get_nil_instances
Is Secured Instance
<void> issecuredinstance(<Instance> Instance)
Returns
true
/false
ifInstance
is secured/not secured.
Alternative:
is_secured_instance
Protect Instance
<void> protectinstance(<Instance obj>)
Marks
obj
as protected, preventing it from being tampered with or detected by certain internal checks.
Set Normal Instance
<table> setnormalinstance(<Instance> Instance)
Sets
Instance
back to its normal state. Returnsfalse
ifInstance
is back to normal.
Alternative:
set_normal_instance
Set Simulation Radius
<void> setsimulationradius(<number radius>)
Sets the simulation
radius
for the local player, controlling how far physics and character updates are processed around the player.
Set Secure Instance
<table> setsecureinstance(<Instance> Instance)
Secures
Instance
. Returnsfalse
ifInstance
is secured.
Alternative:
set_secure_instance
Last updated