local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() getgenv().Time = 1 getgenv().RightUpperLegAccessories = { {id = 18457575895}, } local function hideRightLegAndAddAccessories(character) local rightUpperLeg = character:FindFirstChild("RightUpperLeg") if rightUpperLeg then rightUpperLeg.Transparency = 1 local rightLowerLeg = character:FindFirstChild("RightLowerLeg") local rightFoot = character:FindFirstChild("RightFoot") if rightLowerLeg then rightLowerLeg:Destroy() end if rightFoot then rightFoot:Destroy() end for _, accessory in ipairs(getgenv().RightUpperLegAccessories) do local accessory = game:GetObjects("rbxassetid://" .. tostring(accessory.id))[1] if accessory then accessory.Parent = game.Workspace local handle = accessory:FindFirstChild("Handle") if handle then handle.CFrame = rightUpperLeg.CFrame local weld = Instance.new("Weld") weld.Part0 = handle weld.Part1 = rightUpperLeg weld.C0 = CFrame.new(0, -0.12, 0) weld.Parent = handle accessory.Parent = character end end end end end local function onCharacterAdded(character) wait(getgenv().Time) hideRightLegAndAddAccessories(character) end game.Players.LocalPlayer.CharacterAdded:Connect(function(newCharacter) character = newCharacter onCharacterAdded(character) end) if game.Players.LocalPlayer.Character then onCharacterAdded(game.Players.LocalPlayer.Character) end game:GetService("RunService").Stepped:Connect( function() game.Players.LocalPlayer.Character.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682" game.Players.LocalPlayer.Character.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=10921242013" game.Players.LocalPlayer.Character.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716" end )