Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does it say when i test the script Cframe is not available?

Asked by 9 years ago
01Player = script.Parent.Parent
02mouse = Player:GetMouse()
03 
04function 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 = Vector3.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 = Vector3.new(math.huge, math.huge, math.huge)
View all 27 lines...

1 answer

Log in to vote
1
Answered by
sad_eyez 162
9 years ago

On this line it looks like you forgot to capitalize:

1x.Cframe = Player.Character.Torso.CFrame*CFrame.new(0, 0, -10)

Should Be:

1x.CFrame = Player.Character.Torso.CFrame*CFrame.new(0, 0, -10)

Capitalization is very important

0
Thank you :) tyrellyommey123 0 — 9y
Ad

Answer this question