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

Anyone know how to make the dropper give more money when you buy a game pass?

Asked by 4 years ago
Edited 4 years ago

I'm trying to make it so that when you buy a game pass the droppers drop more money. Here is the script in the droppers.

1Cash.Value = 00

Cash.Value is how much each dropper gives.

01wait(2)
02workspace:WaitForChild("PartStorage")
03 
04while true do
05    wait(2.5)
06    local part = Instance.new("Part",workspace.PartStorage)
07    part.BrickColor=script.Parent.Parent.Parent.DropColor.Value
08    part.Material=script.Parent.Parent.Parent.MaterialValue.Value
09    local cash = Instance.new("IntValue",part)
10    cash.Name = "Cash"
11    cash.Value = 20
12    part.CFrame = script.Parent.Drop.CFrame - Vector3.new(0,1.6,0)
13    part.FormFactor = "Custom"
14    part.Size=Vector3.new(1.4, 1.4, 1.4)
15    part.TopSurface = "Smooth"
16    part.BottomSurface = "Smooth"
17    game.Debris:AddItem(part,20)
18end

2 answers

Log in to vote
1
Answered by
Pupppy44 671 Moderation Voter
4 years ago

You can use UserOwnsGamePassAsync to do this. Here's an example of how it works:

1function PlayerAdded(p)
2if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(p.UserId, 1234) then -- This would return a bool value, if I own it it would return true, else false
3print(p.Name ... " owns the gamepass!")
4else
5print(p.Name ... " doesn't own the gamepass")
6end
7end
8 
9game:GetService("Players").PlayerAdded:Connect(PlayerAdded)
Ad
Log in to vote
0
Answered by 4 years ago

Use UserOwnsGamePassAsync.

That might help you!

Answer this question