and local script ``local RepStorage = game:GetService("ReplicatedStorage")
local OpenShop = RepStorage.Events:WaitForChild("OpenShopGUIEvent")
local BuyrustyShovel = RepStorage.Events:WaitForChild("RustShovelBoughtEvent")
local GUI = script.Parent.Parent
local popSFX = GUI["Pop Sound!"]
local ChaChing = GUI["Coins ka-ching"]
OpenShop.OnClientEvent:Connect(function()
GUI.Enabled = true
popSFX:Play()
end)
GUI.CloseButton.Activated:Connect(function()
GUI.Enabled = false
popSFX:Play()
end)
GUI.ScrollingFrame.RustyShovelButton.Activated:Connect(function(player)
BuyrustyShovel:FireServer(player)
ChaChing:Play()
end)``