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

I have an error that ive never seen before and I dont understand it??

Asked by 5 years ago
Edited 5 years ago
01-- June 30, 2019
02-- Made by IiNaoriku
03--put this in StarterPlayerScripts
04local rs = game:GetService("ReplicatedStorage")
05local gunEvent = rs:WaitForChild("GunEvent")
06 
07gunEvent.OnServerEvent:Connect(function(player, startPos, endPos)
08 
09     local part = Instance.new("Part")
10    local specialMesh = Instance.new("SpecialMesh", part)
11    specialMesh.MeshType = Enum.MeshType.Sphere
12 
13    specialMesh.Scale = Vector3.new(0.1,0.25,4)
14    part.Material = Enum.Material.Neon
15    part.CFrame = CFrame.new(startPos, endPos)
View all 34 lines...

I made a bullet generating code, but it gives me this weird error that I've never seen before. This is the error,

12:16:35.207 - ServerScriptService.bullet:15: bad argument #1 to 'new' (Vector3 expected, got Object)

12:16:35.208 - Stack Begin

12:16:35.208 - Script 'ServerScriptService.bullet', Line 15

Can someone help me with this? Thanks.

1 answer

Log in to vote
0
Answered by 5 years ago

Maybe try using .Size not .Scale?

0
The problem is on line 15, i have to use scale because its a mesh iinaoriku 52 — 5y
Ad

Answer this question