How can i limit the max number of clones from replicated storage?
This is my script for cloning a max of 4 houses from replicated storage. (cloning is done by remote event). this script is inside a spawn gui, which when clicks clones one house.
--local script
02 | local player = game.Players.LocalPlayer |
03 | local FindHotel = game.Workspace.Hotels:WaitForChild( "Hotel" ) |
05 | script.Parent.MouseButton 1 Click:Connect( function () |
06 | if intg < = 3 and player.leaderstats.Cash.Value > = 50 and not FindHotel then |
07 | game.ReplicatedStorage.AddBuildings.AddHouse:FireServer() |
09 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value - 50 |
10 | script.Parent.Visible = true |
11 | elseif intg < = 3 and player.leaderstats.Cash.Value < 50 and not FindHotel then |
12 | script.Parent.Parent.parent.Insufficient.Visible = true |
14 | script.Parent.Parent.parent.Insufficient.Visible = false |
15 | script.Parent.Visible = true |
17 | local House = game.Workspace.Houses:WaitForChild( "House" ) |
19 | House.AncestryChanged:Wait() |
20 | if not House:IsDescendantOf(workspace) then |
22 | print ( "intg=intg+1 executed" ) |
--server script
01 | game.ReplicatedStorage.AddBuildings.AddHouse.OnServerEvent:Connect( function (plr, intg) |
02 | local House = game.ReplicatedStorage.Buildings.House 1 |
03 | local ClonedHouse = House:Clone() |
04 | ClonedHouse.Parent = workspace.Houses |
06 | ClonedHouse.Position = Vector 3. new( 146.5 , 2.5 , - 236.5 ) |
07 | ClonedHouse.Name = "House" |
08 | ClonedHouse.Anchored = false |
I also have a destroy gui which destroys I clone if clicked once.
Destroy Gui:
--local script
01 | local player = game.Players.LocalPlayer |
04 | script.Parent.MouseButton 1 Click:Connect( function () |
05 | if game.Workspace.Houses:FindFirstChild( "House" ) then |
06 | game.ReplicatedStorage.AddBuildings.DestroyHouse:FireServer() |
07 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 25 |
--server script
1 | game.ReplicatedStorage.AddBuildings.DestroyHouse.OnServerEvent:Connect( function (plr, intg) |
2 | local House = game.Workspace.Houses:WaitForChild( "House" ) |
The Issue
So when I click the spawn gui after I join the game, I can get only a max of 4 clones. I keep clicking beyond that but nothing happens.
Then I click the destroy gui once and again start clicking the spawn gui.
now cloned houses get spammed.
I have used an integer variable to limit the clones. Why is it inefficient? Is there any mistake in the script which has to do anything with it?
Please help me
thanks in advance!