Just about a work state, Bug with different direction and the loop not working

This commit is contained in:
2024-07-27 21:09:14 -04:00
parent f37510422f
commit 38fc7b1254
3 changed files with 63 additions and 23 deletions

View File

@@ -9,13 +9,11 @@ local function printStudio<T...>(...: T...)
print(...)
end
end
local function printServer<T...>(...: T...)
if RunService:IsServer() then
print(...)
end
end
local function printClient<T...>(...: T...)
if RunService:IsClient() then
print(...)
@@ -27,13 +25,11 @@ local function warnStudio<T...>(...: T...)
warn(...)
end
end
local function warnServer<T...>(...: T...)
if RunService:IsServer() then
warn(...)
end
end
local function warnClient<T...>(...: T...)
if RunService:IsClient() then
warn(...)