Can anyone help me with a model placement system?
Asked by
6 years ago Edited 6 years ago
I am not the best with math or model placement and I am wondering if anyone can help me the this model placement system I am working on, right now this is in a local script, I want stuff to be placed server-sided, and I also want to use a module script, I know how to use RemoteEvents, and ModuleScripts just not sure how to convert this type of system though, I also need help with picking the model back up, I don't really know how to go about doing that, but if anyone can help it would be great, also please if you know anyway I can make this shorter, or easier to organize and go through please let me know, this script is in a text button by the way.
02 | local placement = require(script [ "Placement (Module)" ] ) |
03 | local uis = game:GetService( "UserInputService" ) |
04 | local runService = game:GetService( "RunService" ) |
05 | local rs = game:GetService( "ReplicatedStorage" ) |
06 | local furniture = rs [ "Furniture" ] |
07 | local remotes = rs [ "Remotes" ] |
08 | local confrimPlacement = remotes [ "ConfirmPlacement" ] |
11 | local plr = game.Players.LocalPlayer |
12 | local mouse = plr:GetMouse() |
13 | local modelName = tostring (script.Parent:WaitForChild( "Name" ).Text) |
26 | local function previewItem() |
27 | if (placing = = false ) then |
30 | if pp.Position.X+pp.Size.X/ 2 < = node.Position.X+node.Size.X/ 2 and pp.Position.Y+pp.Size.Y/ 2 < = node.Position.Y+node.Size.Y/ 2 and pp.Position.Z+pp.Size.Z/ 2 < = node.Position.Z+node.Size.Z/ 2 and pp.Position.X-pp.Size.X/ 2 > = node.Position.X-node.Size.X/ 2 and pp.Position.Y-pp.Size.Y/ 2 > = node.Position.Y-node.Size.Y/ 2 and pp.Position.Z-pp.Size.Z/ 2 > = node.Position.Z-node.Size.Z/ 2 then |
31 | selection.Color 3 = Color 3. fromRGB( 0 , 155 , 0 ) |
34 | selection.Color 3 = Color 3. fromRGB( 155 , 0 , 0 ) |
37 | preview:SetPrimaryPartCFrame(CFrame.new(mouse.Hit.p+Vector 3. new( 0 ,preview.PrimaryPart.Size.Y/ 2 , 0 ))*CFrame.fromEulerAnglesXYZ( 0 ,math.rad(rot), 0 )) |
40 | local function cancelPlacement() |
55 | local function startPlacement() |
56 | node = workspace [ "Harbour Studio" ] [ "Node" ] |
57 | preview = furniture [ modelName ] :Clone() |
58 | preview.Parent = workspace |
59 | pp = preview.PrimaryPart |
60 | selection = Instance.new( "SelectionBox" , workspace) |
61 | selection.LineThickness = 0.05 |
62 | selection.Adornee = pp |
63 | mouse.TargetFilter = preview |
64 | for i,p in next , preview:GetChildren() do |
65 | if not (p.Name = = "Hitbox" ) then |
71 | runService.RenderStepped:Connect(previewItem) |
74 | uis.InputBegan:Connect( function (input) |
75 | if (input.UserInputType = = Enum.UserInputType.Keyboard) then |
76 | if (input.KeyCode = = Enum.KeyCode.Q) then |
78 | elseif (input.KeyCode = = Enum.KeyCode.R) then |
81 | preview:SetPrimaryPartCFrame(preview.PrimaryPart.CFrame*CFrame.fromEulerAnglesXYZ( 0 ,math.rad(rot), 0 )) |
84 | elseif (input.UserInputType = = Enum.UserInputType.MouseButton 1 ) then |
85 | if (preview) and (placing = = true ) then |
86 | print ( "Placing " .. preview.Name) |
87 | local model = preview:Clone() |
88 | for i,p in next , model:GetChildren() do |
89 | if not (p.Name = = "Hitbox" ) then |
94 | model.Parent = workspace [ "Harbour Studio" ] [ "Furniture" ] |
99 | script.Parent.MouseButton 1 Click:Connect(startPlacement) |