Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Player = game.Players.LocalPlayer --플레이어를 찾는다
- local ErrorSound = game.Workspace.ErrorSound --월드에 구매할때 오류가나면 나오는 사운드 플레이
- local SuccessSound = game.Workspace.CashSoundEffect --월드에 구매할때 나는사운드 플레이
- script.Parent.MouseButton1Click:Connect(function() --마우스로 클릭했을때 실행하는것
- if Player.leaderstats.Money.Value >= 500 then --아이템 구매가격을 정하십시오
- Player.leaderstats.Money.Value = Player.leaderstats.Money.Value - 500 --당신이 정한 가격에서 -너스를 하십시오
- game.ReplicatedStorage.M4A1:clone().Parent = Player:WaitForChild("Backpack") --당신이 구매할 아이템을 ReplicatedStorage에 넣으십시오 그리고 "M4A1"에 자신이 판매할 아이템 이름을 넣으십시오
- SuccessSound:Play()
- else --둘중 성공의 뜻으로 정해진다
- ErrorSound:Play()
- end
- end)
- --제작 ZOUK AG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement