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
| -- Animation to Damage Timing Tracker with GUI | |
| local TRACKING_DISTANCE = 15 | |
| local player = game.Players.LocalPlayer | |
| local char = player.Character or player.CharacterAdded:Wait() | |
| local humanoid = char:WaitForChild("Humanoid") | |
| local recentAnimations = {} | |
| local currentTargetAnim = "" -- Currently tracked animation ID | |
| -- Create GUI |
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 LP = game:GetService("Players").LocalPlayer | |
| local VIM = game:GetService("VirtualInputManager") | |
| local DialogueGui = LP.PlayerGui:WaitForChild("Dialogue") | |
| local DialogueTab = DialogueGui.DialogueTab | |
| local ContentTab = DialogueTab.AnswersTab.ContentTab | |
| local TextTab = DialogueTab.TextTab | |
| local TextLabel = DialogueTab.TextTab.ContentTab:FindFirstChild("Text", true):FindFirstChild("Text") | |
| -- CONFIGURATION - Set these from your GUI | |
| _G.TechniqueAutoEnabled = false -- GUI sets this to true/false |
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 LP = game:GetService("Players").LocalPlayer | |
| local VIM = game:GetService("VirtualInputManager") | |
| local DialogueGui = LP.PlayerGui:WaitForChild("Dialogue") | |
| local DialogueTab = DialogueGui.DialogueTab | |
| local ContentTab = DialogueTab.AnswersTab.ContentTab | |
| local TextTab = DialogueTab.TextTab | |
| local TextLabel = DialogueTab.TextTab.ContentTab:FindFirstChild("Text", true):FindFirstChild("Text") | |
| -- CONFIGURATION - Set these from your GUI | |
| _G.ClanAutoEnabled = false -- GUI sets this to true/false |
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
| -- Roblox Auto Parry Script with Live Config System (FIXED) | |
| local Players = game:GetService("Players") | |
| local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
| local LocalPlayer = Players.LocalPlayer | |
| -- =========================== | |
| -- GLOBAL CONFIG (Edit these from your GUI) | |
| -- =========================== | |
| -- Attack IDs - YOU CAN ADD NEW IDS HERE OR FROM YOUR GUI |