Skip to content

Instantly share code, notes, and snippets.

View Yatori0's full-sized avatar

Yatorii. Yatori0

View GitHub Profile
-- 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
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
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
-- 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