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

Placement preview for my furniture placement system not working. How to fix?

Asked by
2ndwann 131
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:

01-- Script
02local ReplicatedStorage = game:GetService("ReplicatedStorage")
03 
04local MousePositionEvent = Instance.new("RemoteEvent")
05MousePositionEvent.Name = "MousePositionEvent"
06MousePositionEvent.Parent = ReplicatedStorage
07 
08local MouseClickEvent = Instance.new("RemoteEvent")
09MouseClickEvent.Name = "MouseClickEvent"
10MouseClickEvent.Parent = ReplicatedStorage
11 
12 
13-- Preview the placement
14local function PreviewPlace(Owner, PositionBase, StructureBase)
15    StructureBase.UserOwner.Value = Owner.Name -- Assign Owner
View all 42 lines...

Script for the client:

01-- LocalScript
02local ReplicatedStorage = game:GetService("ReplicatedStorage")
03local MousePositionEvent = ReplicatedStorage:WaitForChild("MousePositionEvent")
04local MouseClickEvent = ReplicatedStorage:WaitForChild("MouseClickEvent")
05 
06local Players = game:GetService("Players")
07local Player = Players.LocalPlayer
08 
09local Mouse = Player:GetMouse()
10local MouseCFrame
11local MousePosition
12 
13local SelectedStructure = game.Workspace.OakWoodBeam -- The selected Strukchur
14local SelectedStructureAmount = 3
15local DestDir = game.Workspace -- Destination Folder for placed structures
View all 54 lines...

How would I fix it?

0
I am sorry, but if you are going to put alot of code like that then it would be good for you to put way more explaination then what are you trying to accomplish RBLXNogin 187 — 5y
0
When you clone "StructureBase" on line 30, the SelectionBox may have been cloned too. You'll have to delete or hide it in the cloned object. User#20279 0 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

The selection box should be handled locally, as it's something only the player that it's relevant to should see. This would also significantly make the code cleaner and easier to manage.

Ad

Answer this question