Created by YGT72
Features:
- AUTO AWAKEN
- DEV NOTES:
- What this script will do is when your below the health of 30 it will automatically awaken I wont obfuscate it so you can see and understand from it.
while true do --loop
wait()--So it dosent fuck itself over
local me = game.Players.LocalPlayer.Character.Humanoid--locals
local lp = game.Players.LocalPlayer--locals
if lp.PlayerGui.HUD.Ultimate.ulti.visible == true then --CHECK 1: checks if awaken is ready
if me.Health < 30 then --CHECK 2: checks if health is below 30 can be changed
-- below will run a script that will activate an awaken
local args = {
[1] = "g"
}
game:GetService("Players").LocalPlayer.Backpack.ServerTraits.Input:FireServer(unpack(args))
end
end
end
ENJOY!