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
--!optimize 2 | |
--!native | |
-- Services | |
local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
local RunService = game:GetService("RunService") | |
local Players = game:GetService("Players") | |
-- Dependencies | |
local Quaternion = require(ReplicatedStorage.Modules.Quaternion) |
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
--!optimize 2 | |
--!native | |
-- Types | |
type EnemyStats = { | |
max_health: number, | |
speed: number, | |
hidden: boolean, | |
} |
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
--!optimize 2 | |
local Players = game:GetService("Players") | |
local ServerStorage = game:GetService("ServerStorage") | |
local assets = ServerStorage:WaitForChild("assets") | |
local morphs = assets:WaitForChild("morphs") | |
local playerMorphing = {} |
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
--[[ | |
We don't like it when people run into walls | |
why was this running every heartbeat what is wrong with you zynx | |
Authored by: VortexReanimated | |
Authored on: 10/8/2024 @ 12:17 AM EST | |
]] | |
--!native | |
--!optimize 2 |