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

How to use Region3 with my custom stamper?

Asked by 8 years ago
01local RbxStamper = LoadLibrary("RbxStamper")
02local InsertService = game:GetService("InsertService")
03 
04local dispenser = game.workspace.Part
05local player = game.Players.LocalPlayer
06local mouse = player:GetMouse()
07 
08local stampControl
09local pBase = nil
10 
11function findBase()
12    for _, base in pairs(game.workspace["Building Zones"]:GetChildren()) do
13        if base:IsA("Model") and base.Player.Value == player.Name then
14            pBase = base           
15        end
View all 44 lines...

The only thing i'm stuck on is using Region3 for the area to stamp in. How do you accomplish this?

Thanks.

Answer this question