Hello, I’m currently working on a nuke system which’s going pretty good for now, my only problem is that I don’t know why the Value
in the Vector3Value
won’t work.
Here’s the script.
function OnClick()
local part = game:GetService("ReplicatedStorage").nukes.Nuke:clone()
part.Parent = game.Workspace
part.Position = Vector3.new(script.Parent.Parent.Coordenate.Value)
end
script.Parent.MouseButton1Click:Connect(OnClick)
It doesn’t show me any error on the Output, any help would be appreciated!