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 10 years ago

fireball.Size=Vector3.new(4.5.6)

2 answers

Log in to vote
1
Answered by 10 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
10 years ago

first of all you have to define fireball...

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

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

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

full script here

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

If it is wrong tell me via PM.

Answer this question