So I'm making a clicking simulator, with gamepasses that increase the click increment value. I have an IntValue which tells the game what the Click Increment is.
My script,
01 | local IncVal = script.Parent.IncrementValue.Value |
02 | local Gamepass 2 xClicksID = 12345 -- TempValue |
03 | local Gamepass 5 xClicksID = 123456 -- TempValue |
04 | local Gamepass 10 xClicksID = 1234567 -- TempValue |
05 | local Player = game.Players.LocalPlayer |
06 | local IncVal = 1 |
07 |
08 | if game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(Player, Gamepass 2 xClicksID) then |
09 | IncVal = 2 |
10 | elseif game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(Player, Gamepass 5 xClicksID) then |
11 | IncVal = 5 |
12 | elseif game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(Player, Gamepass 10 xClicksID) then |
13 | IncVal = 10 |
14 |
15 | script.Parent.MouseButton 1 Click:Connect( function () |
16 | Player.leaderstats.Clicks.Value = game.Players.LocalPlayer.leaderstats.Clicks.Value + IncVal |
17 | end ) |
18 | end |
is correct, no errors. However, when I play the game, I get the Output error of:
Unable to cast Instance to int64
How can I fix this?
So the error here is that to check if the player has the gamepass you must provide the player's user id and the gamepass id.
Here's the adjusted script:
01 | local IncVal = script.Parent.IncrementValue.Value |
02 | local Gamepass 2 xClicksID = 12345 -- TempValue |
03 | local Gamepass 5 xClicksID = 123456 -- TempValue |
04 | local Gamepass 10 xClicksID = 1234567 -- TempValue |
05 | local Playerid = game.Players.LocalPlayer.UserId -- user id of the player |
06 | local Player = game.Players.LocalPlayer |
07 | local IncVal = 1 |
08 |
09 | if game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(Playerid, Gamepass 2 xClicksID) then |
10 | IncVal = 2 |
11 | elseif game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(Playerid, Gamepass 5 xClicksID) then |
12 | IncVal = 5 |
13 | elseif game:GetService( "MarketplaceService" ):UserOwnsGamePassAsync(Playerid, Gamepass 10 xClicksID) then |
14 | IncVal = 10 |
15 |
16 | script.Parent.MouseButton 1 Click:Connect( function () |
17 | Player.leaderstats.Clicks.Value = game.Players.LocalPlayer.leaderstats.Clicks.Value + IncVal |
18 | end ) |
19 | end |
Hope this helped!
Any questions? Just ask!