Alright so, I'm trying to make it so I can spawn stuff from a folder in ReplicatedStorage to Workspace but only if it doesn't find the model I want to spawn in. I am fairly new to this scripting thing so I might have some issues. It would be spawned and despawned through a GUI TextButton. The function i'm using is called SpawnFunction. Script inside the ServerScriptStorage [Typical Script]
01 | ReplicatedStorage = game.ReplicatedStorage |
02 | workspace = game.Workspace -- This is just extra insurance |
03 | --Made By MillerrIAm |
04 | --------------------------- |
05 | --Start Script |
06 | --Main Script |
07 | if player,spawn true then |
08 | workspace:GetChildren(spawn) then |
09 | workspace:(spawn):Destroy() |
10 | else |
11 | ReplicatedStorage.Stipulation:Clone(spawn).Parent = workspace |
12 | end |
Script inside the GUI Button [Local Script]
01 | --Made By MillerrIAm |
02 | --------------------------- |
03 | --Start Script |
04 | --Main Script |
05 | function onClick() |
06 | game.ReplicatedStorage.SpawnFunction:InvokeServer( "SpawnMe!" ) --Ignore the name, that's just what i named the model. |
07 | end |
08 |
09 | script.Parent.MouseButton 1 Down:connect(onClick) |
10 | print ( "GUIButton Working" ) |
For starters, you don't need to reference the workspace hardly ever in a variable. The global workspace
is the quickest and best way to access the workspace.
Anyway, you want to say "The client wants a map from clicking this button, and the server wants to clone it into the workspace" right?
So first, you'd insert a local script into your text button. Then you'd store the replicated storage and a remote event in some variables.
--Client
01 | --local script inside button |
02 |
03 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local remoteEvent = replicatedStorage:WaitForChild( "RemoteEvent" ) |
05 |
06 | local button = script.Parent |
07 |
08 | local function onClick() |
09 | remoteEvent:FireServer() |
10 | end |
11 |
12 | button.MouseButton 1 Down:Connect(onClick) |
--Server
01 | --server script |
02 |
03 | local replicatedStorage = game:GetService( "ReplicatedStorage" ) |
04 | local remoteEvent = replicatedStorage:WaitForChild( "RemoteEvent" ) |
05 |
06 | local debounce = false |
07 | local function addMaps() |
08 | if not debounce then |
09 | debounce = true |
10 | local map = replicatedStorage:WaitForChild( "Map" ):Clone() --Clone the map (should be a model) |
11 | map.Parent = workspace --parent to workspace |
12 | else |
13 | workspace:FindFirstChild( "Map" ):Destroy() --say you wanted to delete it if you pressed again |
14 | debounce = false |
15 | end |
16 | end |
17 |
18 | remoteEvent.OnServerEvent:Connect(addMaps) |
90% sure this is a troll question but maybe you'll learn something. Have at it.