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

What is wrong with the line of script below?

Asked by 11 years ago

fireball.Size=Vector3.new(4.5.6)

2 answers

Log in to vote
1
Answered by 11 years ago

did you define fireball as a variable before using it also use commas instead of dots like this Vector3.new(4, 5, 6)

Ad
Log in to vote
1
Answered by
IcyEvil 260 Moderation Voter
11 years ago

first of all you have to define fireball...

1fireball=Instance.new("Part", game.Workspace)

then you did the (4.5.6) part wrong it is actually

1fireball.Size=Vector3.new(4,5,6)

full script here

1fireball=Instance.new("Part", game.Workspace)
2fireball.Size=Vector3.new(4,5,6)

If it is wrong tell me via PM.

Answer this question