So I do know about properties and yeilds, however I cant find a solution to this section of my script.
local Player = game:GetService("Players").LocalPlayer local char = Player.Character or Player.CharacterAdded:Wait() local Humanoid = char:WaitForChild("Humanoid") local Torso = Humanoid:WaitForChild("UpperTorso")
There is no UpperTorso in the humanoid. You should try this:
local Player = game:GetService("Players").LocalPlayer local char = Player.Character or Player.CharacterAdded:Wait() local Humanoid = char:WaitForChild("Humanoid") local Torso = char:WaitForChild("UpperTorso")
We make mistakes!