Advertisement
ZOUK_AG

Roblox Studio Buy Scripts

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