Trying to Make a survival, im making Clothing tools, so when you have it
you can click to put it on, but there is a problem with the shirt every time i walk with it Equipped my Character glitches out.
Sry for the lag
Trying to Make a survival, im making Clothing tools, so when you have it
you can click to put it on, but there is a problem with the shirt every time i walk with it Equipped my Character glitches out.
Try this one.
> wait()
> -- Variables
> local ReplicatedStorage = game:GetService("ReplicatedStorage")
> local WeaponStats = require(ReplicatedStorage:WaitForChild("WeaponStats"))
> local DistanceModule = require(ReplicatedStorage:WaitForChild("DistanceModule"))
>
> -- Player
> local Players = game:GetService("Players")
> local Player = Players.LocalPlayer
> local Character = Player.Character or Player.CharacterAdded:wait()
> local Humanoid = Character:WaitForChild("Humanoid")
> local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart")
>
>
> -- Tool
> local Tool = script.Parent
> local AnimationsAction = Tool.ActionAnimations:GetDescendants()
> local Sounds = Tool.Sounds:GetDescendants()
>
> local EventBlock = Tool.BlockingEvent
> local Event = Tool.Event
>
> local IdleAnimation = Tool.IdleAnimation
> local Equip = Humanoid:LoadAnimation(IdleAnimation)
>
> Tool.Activated:Connect(function()
> Tool.Event:FireServer(Player)
> end)
>
> Tool.Equipped:Connect(function()
> Equip:Play()
> end)
>
> Tool.Unequipped:Connect(function()
> Equip:Stop()
> end)
```[quote="Hanszimmermehr, post:2, topic:2424651, full:true, username:zl_509143"]
Did not work, I remove the script and it still glitches out my Character
Try turning CanCollide off, if that doesn’t work then it might be the animation