UserOwner is not a valid member of Model, how to fix it?
Asked by
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:
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local MousePositionEvent = Instance.new( "RemoteEvent" ) |
04 | MousePositionEvent.Name = "MousePositionEvent" |
05 | MousePositionEvent.Parent = ReplicatedStorage |
07 | local PlayerFolderEvent = Instance.new( "RemoteEvent" ) |
08 | PlayerFolderEvent.Name = "PlayerFolderEvent" |
09 | PlayerFolderEvent.Parent = ReplicatedStorage |
11 | function CreatePlayerFolder(PlayerName) |
12 | local PlayerStructuresFolder = Instance.new( "Folder" ) |
13 | PlayerStructuresFolder.Name = PlayerName |
14 | PlayerStructuresFolder.Parent = game.Workspace |
17 | PlayerFolderEvent.OnServerEvent:Connect(CreatePlayerFolder) |
21 | Structure.__index = Structure |
23 | function Structure.new(what, owner) |
24 | local newStructure = { } |
25 | setmetatable (newStructure, Structure) |
26 | newStructure.what = what or "Nothing" |
27 | newStructure.owner = owner or "Nobody" |
32 | function Structure:Place(Position, RotationX, RotationY, RotationZ) |
34 | local StructureBase = self.what:Clone() |
35 | StructureBase.Parent = game.Workspace |
37 | StructureBase.UserOwner = self.owner |
40 | if (StructureBase) then |
41 | StructureBase:MoveTo(Position) |
45 | print ( "Error, cannot place!" ) |
50 | function MovePart(Player,Coords) |
52 | local StructureObject = Structure.new(ReplicatedStorage.Structures.Wood.Oak.OakTable, Player) |
53 | StructureObject:Place(Coords, 0 , 0 , 0 ) |
56 | MousePositionEvent.OnServerEvent:Connect(MovePart) |
LocalScript:
01 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local Player = game.Players.LocalPlayer |
04 | local Mouse = Player:GetMouse() |
05 | local MouseCFrame = Mouse.Hit |
06 | local MousePosition = MouseCFrame.p |
08 | local MousePositionEvent = ReplicatedStorage:WaitForChild( "MousePositionEvent" ) |
09 | local PlayerFolderEvent = ReplicatedStorage:WaitForChild( "PlayerFolderEvent" ) |
11 | function ShowMousePosition() |
12 | MouseCFrame = Mouse.Hit |
13 | MousePosition = MouseCFrame.p |
14 | MousePositionEvent:FireServer(MousePosition) |
22 | PlayerFolderEvent:FireServer(Player.Name) |