Placement preview for my furniture placement system not working. How to fix?
Asked by
5 years ago Edited 5 years ago
I am making a basic furniture placement system for my game, and I am having trouble with hiding the selection box (for previewing) after the player has placed the structure.
After the player has placed the structure, it still shows the SelectionBox, but I intended to make it disappear when the player places the structure.
I am having the particular trouble in Line #35 of the Script for the server.
Script for the server:
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local MousePositionEvent = Instance.new( "RemoteEvent" ) |
05 | MousePositionEvent.Name = "MousePositionEvent" |
06 | MousePositionEvent.Parent = ReplicatedStorage |
08 | local MouseClickEvent = Instance.new( "RemoteEvent" ) |
09 | MouseClickEvent.Name = "MouseClickEvent" |
10 | MouseClickEvent.Parent = ReplicatedStorage |
14 | local function PreviewPlace(Owner, PositionBase, StructureBase) |
15 | StructureBase.UserOwner.Value = Owner.Name |
17 | local Position = CFrame.new(PositionBase) |
18 | StructureBase:SetPrimaryPartCFrame(Position) |
21 | local Selection = StructureBase.SelectionBox |
22 | Selection.Color 3 = Color 3. new( 0 , 255 , 0 ) |
23 | Selection.Transparency = 0 |
25 | MousePositionEvent.OnServerEvent:Connect(PreviewPlace) |
29 | local function Place(Owner, PositionBase, StructureBase, DestinationFolder) |
30 | local NewStructure = StructureBase:Clone() |
32 | NewStructure.Parent = DestinationFolder |
33 | NewStructure.UserOwner.Value = Owner.Name |
36 | local Selection = StructureBase.SelectionBox |
37 | Selection.Transparency = 1 |
39 | print (Owner.Name .. " has ended placing a " .. NewStructure.Name .. "!" ) |
42 | MouseClickEvent.OnServerEvent:Connect(Place) |
Script for the client:
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local MousePositionEvent = ReplicatedStorage:WaitForChild( "MousePositionEvent" ) |
04 | local MouseClickEvent = ReplicatedStorage:WaitForChild( "MouseClickEvent" ) |
06 | local Players = game:GetService( "Players" ) |
07 | local Player = Players.LocalPlayer |
09 | local Mouse = Player:GetMouse() |
13 | local SelectedStructure = game.Workspace.OakWoodBeam |
14 | local SelectedStructureAmount = 3 |
15 | local DestDir = game.Workspace |
19 | Mouse.Button 1 Down:Connect( function () |
20 | SelectedStructureAmount = SelectedStructureAmount - 1 |
22 | if (SelectedStructureAmount = = 0 ) then |
26 | MouseClickEvent:FireServer(MousePosition, SelectedStructure, DestDir) |
29 | print (SelectedStructureAmount) |
33 | function UpdatePosition() |
34 | MouseCFrame = Mouse.Hit |
35 | MousePosition = MouseCFrame.p |
37 | if (SelectedStructureAmount > = 1 and Placing = = true ) then |
38 | MousePositionEvent:FireServer(MousePosition, SelectedStructure) |
42 | if (Placing = = false ) then |
How would I fix it?