01 | Player = script.Parent.Parent |
02 | mouse = Player:GetMouse() |
03 |
04 | function onKeyDown(key) |
05 | key = key:lower() |
06 | if key = = "z" then |
07 | local x = Instance.new( "Part" ) |
08 | x.BrickColor = BrickColor.new( "Bright red" ) |
09 | x.Size = Vector 3. new( 10 , 10 , 10 ) |
10 | x.TopSurface = "Smooth" |
11 | x.BottomSurface = "Smooth" |
12 | x.Shape = "Ball" |
13 | x.Transparency = 0.8 |
14 | local y = Instance.new( "BodyVelocity" ) |
15 | y.maxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
On this line it looks like you forgot to capitalize:
1 | x.Cframe = Player.Character.Torso.CFrame*CFrame.new( 0 , 0 , - 10 ) |
Should Be:
1 | x.CFrame = Player.Character.Torso.CFrame*CFrame.new( 0 , 0 , - 10 ) |
Capitalization is very important