Tweening a player's head?
Asked by
3 years ago Edited 3 years ago
So I've been trying to tween a player's head, but I can't seem to get it working. It grabs the player's head correctly, it's just the tween that won't work. It's supposed to rotate the player's head 90 degrees when the part is touched.
If someone could give me an answer for why this isn't working I'd be very grateful!
01 | local TweenService = game:GetService( "TweenService" ) |
02 | local spininfo = TweenInfo.new( 1 ,Enum.EasingStyle.Back) |
03 | local part = script.Parent |
06 | function OnTouched(PlayerPart) |
07 | local IsPlayer = PlayerPart.Parent:FindFirstChild( "Humanoid" ) |
08 | if IsPlayer and SpinVar = = false then |
09 | local Character = PlayerPart.Parent.Head |
11 | local Spin 1 = TweenService:Create(Character,spininfo, { CFrame = Character.CFrame * CFrame.Angles( 0 ,math.rad( 90 ), 0 ) } ) |
19 | part.Touched:Connect(OnTouched) |