-- HandcuffConfig.lua
return {
-- General Settings
AllowedGroups = {1234567}, -- Group IDs allowed to use handcuffs
AllowedRanks = {10, 50, 100}, -- Minimum rank required in the groups
-- Handcuff Properties
HandcuffBreakTime = 30, -- Time in seconds before handcuffs can be broken
ReducedWalkSpeed = 8, -- Walk speed when handcuffed (default is 16)
DisableJump = true, -- Whether jumping is disabled when handcuffed
-- Animation Settings
HandcuffAnimationId = "rbxassetid://1234567890", -- Animation for applying handcuffs
HandcuffedIdleAnimationId = "rbxassetid://0987654321", -- Animation for handcuffed state
BreakHandcuffAnimationId = "rbxassetid://5555555555", -- Animation for breaking handcuffs
-- System Integration
UseCustomNotifications = false, -- Use game's notification system
IntegrateWithTeamSystem = true, -- Automatically detect teams for permissions
-- Advanced Options
AntiExploitEnabled = true, -- Enable additional security measures
HandcuffRange = 5, -- Maximum distance for handcuffing in studs
CustomModelId = nil -- Optional custom handcuff model ID
}