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

Can anyone help me with a model placement system?

Asked by
sad_eyez 162
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.

01-- Priority Varibles
02local placement = require(script["Placement (Module)"])
03local uis = game:GetService("UserInputService")
04local runService = game:GetService("RunService")
05local rs = game:GetService("ReplicatedStorage")
06local furniture = rs["Furniture"]
07local remotes = rs["Remotes"]
08local confrimPlacement = remotes["ConfirmPlacement"]
09 
10-- Secondary Varibles
11local plr = game.Players.LocalPlayer
12local mouse = plr:GetMouse()
13local modelName = tostring(script.Parent:WaitForChild("Name").Text)
14 
15--Modle Placement Varibles
View all 99 lines...
0
It's a lot more tough apparently, see https://scriptinghelpers.org/blog/creating-a-furniture-placement-system for help, I myself wouldn't try making this so props to you mate. Ziffixture 6913 — 6y

Answer this question