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

UserOwner is not a valid member of Model, how to fix it?

Asked by
2ndwann 131
5 years ago
Edited 5 years ago

I am trying to make a basic placement system, and part of that is that I have to assign the owner of the item being placed. I am assigning the name of the owner to a StringValue within the item being placed.

But it does not want to do it, and it keeps giving me this error.

The error is: game.Workspace.PlacementServer:37 UserOwner is not a valid member of Model

Is there a way to fix it?

The part of the script where the trouble is happening is line #37

Server Script:

01local ReplicatedStorage = game:GetService("ReplicatedStorage")
02 
03local MousePositionEvent = Instance.new("RemoteEvent")
04MousePositionEvent.Name = "MousePositionEvent"
05MousePositionEvent.Parent = ReplicatedStorage
06 
07local PlayerFolderEvent = Instance.new("RemoteEvent")
08PlayerFolderEvent.Name = "PlayerFolderEvent"
09PlayerFolderEvent.Parent = ReplicatedStorage
10 
11function CreatePlayerFolder(PlayerName)
12    local PlayerStructuresFolder = Instance.new("Folder")
13    PlayerStructuresFolder.Name = PlayerName
14    PlayerStructuresFolder.Parent = game.Workspace
15end
View all 56 lines...

LocalScript:

01local ReplicatedStorage = game:GetService("ReplicatedStorage")
02 
03local Player = game.Players.LocalPlayer
04local Mouse = Player:GetMouse()
05local MouseCFrame = Mouse.Hit
06local MousePosition = MouseCFrame.p
07 
08local MousePositionEvent = ReplicatedStorage:WaitForChild("MousePositionEvent")
09local PlayerFolderEvent = ReplicatedStorage:WaitForChild("PlayerFolderEvent")
10 
11function ShowMousePosition()
12    MouseCFrame = Mouse.Hit
13    MousePosition = MouseCFrame.p
14    MousePositionEvent:FireServer(MousePosition)
15end
View all 22 lines...

1 answer

Log in to vote
0
Answered by
moo1210 587 Moderation Voter
5 years ago

"UserOwner is not a valid member of Model" means basicly the same as the error, UserOwner is not a vaild memeber of the model, This means you did a typo in the script, the model, or the model doesn't exist.

0
Yep, I got it fixed, thank you! 2ndwann 131 — 5y
Ad

Answer this question