ADVERTISEMENTREMOVE ADS
2 scripts
47,078 views

Script Preview
Description
able to fly and knock people off the map without swinging cant get kod
ADVERTISEMENTREMOVE ADS
25 Lines • 1.06 KiB
function CharacterInitService:Init()
Players.PlayerAdded:Connect(function(Player)
local success = PlayerState.Init(Player) -- Breakpoint here.
if success == false then
warn("Player data loaded unsuccessfully")
else
Player.CharacterAdded:Connect(function(CharacterModel)
-- apply the wrap when character model gets created
local WCS_Character = CharacterClass.new(CharacterModel)
-- Wrap as a fighter as well for access to specials, structure, and blast
local Fighter = FighterClass.new(CharacterModel)
FighterManager.CreateConnections(Fighter)
Fighter:SetStyle(Brawler)
FighterDataManager.LoadSpecials(Fighter) -- Never runs
print(PlayerState.GetAll(Fighter.Player)) -- Doesn't print
Ragdoll:RigCharacter(CharacterModel)
CharacterModel.Parent = workspace.Alive -- for HitboxClass
end)
end
end)
end
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments
Why it’s not working …