So, when I press T, it isn't thrown. Any ideas?
It says, Character is not a valid members of part. Code:
01 | Mouse = game.Players.LocalPlayer:GetMouse() |
02 | Player = game.Players.LocalPlayer |
03 | Character = Player.Character |
04 | Torso = Character.Torso |
05 | Part = game.Workspace.Part |
09 | Mouse.KeyDown:connect( function (key) |
14 | Part.Size = Part.Size + Vector 3. new( 1 , 1 , 1 ) |
15 | Part.Position = Part.Position + Vector 3. new( 0 , 2 , 0 ) |
22 | Part.CFrame = Part.CFrame * CFrame.fromEulerAnglesXYZ( 0.5 , 0.5 , 0.5 ) |
28 | Mouse.KeyDown:connect( function (key) |
33 | Part.Size = Part.Size - Vector 3. new( 1 , 1 , 1 ) |
34 | Part.Position = Part.Position - Vector 3. new( 0 , 1 , 0 ) |
42 | Mouse.KeyDown:connect( function (key) |
45 | local fire = Instance.new( "Fire" ,Part) |
54 | Mouse.KeyDown:connect( function (key) |
57 | local Bv = Instance.new( "BodyVelocity" ) |
59 | Bv.maxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
60 | Bv.velocity = Torso.Character.CFrame.lookVector * 100 |