Hello there,
01 | -- Server - Client Function -- |
02 | local rs = game:GetService( "ReplicatedStorage" ) |
03 | local folder = rs:WaitForChild( "Instance Work" ) |
04 | local instance_func = folder:WaitForChild( "Instance" ) |
05 |
06 | ------------------------------------------------------ |
07 | -- Creates a part on the server -- |
08 |
09 | local function instance(plr, obj, props) |
10 | local object = Instance.new(obj) |
11 |
12 | for prop, value in next , props do |
13 | if prop = = 'Parent' then |
14 | value = return_obj_from_string(value) |
15 | end |
01 | -- Client - Server Function -- |
02 | local rs = game:GetService( "ReplicatedStorage" ) |
03 | local folder = rs:WaitForChild( "Instance Work" ) |
04 | local instance_func = folder:WaitForChild( "Instance" ) |
05 | ------------------------------------------------------ |
06 | -- Creates a part on the client -- |
07 |
08 | local function instance(obj, props) |
09 | local object = Instance.new(obj) |
10 |
11 | for prop, value in next , props do |
12 | if prop = = 'Parent' then |
13 | value = return_obj_from_string(value) |
14 | end |
15 |
01 | -- Script inside Click Detector, which is inside a part and meant to activate the client function upon clicking the part -- |
02 | local detector = script.Parent; |
03 | local rs = game:GetService( "ReplicatedStorage" ); |
04 | local instance_folder = rs:WaitForChild( "Instance Work" ) |
05 | local instance = instance_folder:WaitForChild( "Instance" ) |
06 |
07 | detector.MouseClick:Connect( function (plr) |
08 | local char = plr.Character or plr.CharacterAdded:Wait(); |
09 | local root = char:WaitForChild( "HumanoidRootPart" ); |
10 | local props = { |
11 | [ 'BrickColor' ] = BrickColor:random(); |
12 | [ 'Transparency' ] = math.random(); |
13 | [ 'Anchored' ] = true ; |
14 | [ 'CanCollide' ] = false ; |
15 | [ 'Material' ] = Enum.Material.Neon; |
Best regards,
IdealistDeveloper