Update require paths to relative string

This commit is contained in:
aaron 2024-11-13 22:19:20 +00:00
parent 0897821e1f
commit 5abd5eee91
25 changed files with 89 additions and 124 deletions

View file

@ -1,7 +1,5 @@
if not game then script = require "test/relative-string" end
local action = require(script.Parent.action)()
local cleanup = require(script.Parent.cleanup)
local action = require "./action"()
local cleanup = require "./cleanup"
local function changed<T>(property: string, callback: (T) -> ())
return action(function(instance)