Skip to content

ReRand Studios toolkit for game development including the Revared module manager as well as a Values system and much more

License

Notifications You must be signed in to change notification settings

ReRand/RbxRevared

Repository files navigation

Banner

A powerful toolkit for Roblox game development made for ReRand Studios games including the Revared module manager as well as a Values system and much more

  • Advanced Triggers
  • Client-side badges and data stores
  • Global-side stuff
  • Custom Script Signals
  • Directory fetching
  • Dict types

local Revared = require(workspace.Revared);


local Trigger = Revared:GetModule("Trigger"); -- gets the trigger module
local GlobalSide = Revared:GetModule("GlobalSide"); -- gets the global-sided values module


local triggerPart = script.Parent;


local trigger = Trigger.new(triggerPart); -- creates a new trigger with the part
trigger:Visualize(); -- makes the trigger visible with a special texture


trigger.Entered:Connect(function(character) -- when the player enters the trigger it damages them
    print("entered");
    GlobalSide:Damage(character, 50);
end)


trigger.Exited:Connect(function(character) -- when the player exits the trigger it heals them
    print("exited");
    GlobalSide:Heal(character, 50);
end)


trigger:Activate(); -- activates the trigger

About

ReRand Studios toolkit for game development including the Revared module manager as well as a Values system and much more

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Languages