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
| --[[ | |
| Ninja Combat Script - 伤害可调节版 | |
| 适配忍者注入器手机端 | |
| 使用前请确保游戏已完全加载 | |
| ]] | |
| local Settings = { | |
| Damage = 50, -- 默认伤害值,可在游戏中调整 | |
| AutoAttack = true, -- 自动攻击 | |
| AttackRange = 25, -- 攻击范围 |
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
| --[[ | |
| 玩家伤害修改脚本 | |
| 功能:自定义设置玩家的伤害倍数 | |
| 使用方法:在游戏中输入命令修改伤害 | |
| ]] | |
| local Player = game.Players.LocalPlayer | |
| local Character = Player.Character or Player.CharacterAdded:Wait() | |
| -- 默认设置 |