Dear, best reader
I'll ask anybody to help me for a DialogShop, mine doesn't work.. So i hope, if you read this and you know how, please send me a script or something.
Thanks already, Greetings, bartjenl
01 | local dialog = script.Parent |
02 | dialog.DialogChoiceSelected:connect( function (player, choice) |
03 | -- Check the player has a stats object |
04 | local stats = player:FindFirstChild( 'leaderstats' ) |
05 | if not stats then return end |
06 |
07 | -- And that the stats object contains a gold member |
08 | local gold = stats:FindFirstChild( 'Gold' ) |
09 | if not gold then return end |
10 |
11 | if choice = = script.Parent.DialogChoice.ChoiceA then |
12 | if gold.Value > = 5 then -- 5 is the amount of gold you need to purchase this weapon |
13 | game.ReplicatedStorage.Weapon 1 :Clone().Parent = player.Backpack |
14 | gold.Value = gold.Value - 5 -- subtract the amount of gold you need to purchase |
15 | end |
Closed as Not Constructive by farrizbb and antonio6643
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?