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

Why will my script not work when it is formatted correctly?

Asked by
dxrrevn 13
3 years ago

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,

01local IncVal = script.Parent.IncrementValue.Value
02local Gamepass2xClicksID = 12345 -- TempValue
03local Gamepass5xClicksID = 123456 -- TempValue
04local Gamepass10xClicksID = 1234567 -- TempValue
05local Player = game.Players.LocalPlayer
06local IncVal = 1
07 
08if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(Player, Gamepass2xClicksID) then
09    IncVal = 2
10elseif game:GetService("MarketplaceService"):UserOwnsGamePassAsync(Player, Gamepass5xClicksID) then
11    IncVal = 5
12elseif game:GetService("MarketplaceService"):UserOwnsGamePassAsync(Player, Gamepass10xClicksID) then
13    IncVal = 10
14 
15script.Parent.MouseButton1Click:Connect(function()
16    Player.leaderstats.Clicks.Value = game.Players.LocalPlayer.leaderstats.Clicks.Value + IncVal
17    end)
18end

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?

1 answer

Log in to vote
0
Answered by 3 years ago
Edited 3 years ago

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:

01local IncVal = script.Parent.IncrementValue.Value
02local Gamepass2xClicksID = 12345 -- TempValue
03local Gamepass5xClicksID = 123456 -- TempValue
04local Gamepass10xClicksID = 1234567 -- TempValue
05local Playerid = game.Players.LocalPlayer.UserId -- user id of the player
06local Player = game.Players.LocalPlayer
07local IncVal = 1
08 
09if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(Playerid, Gamepass2xClicksID) then
10    IncVal = 2
11elseif game:GetService("MarketplaceService"):UserOwnsGamePassAsync(Playerid, Gamepass5xClicksID) then
12    IncVal = 5
13elseif game:GetService("MarketplaceService"):UserOwnsGamePassAsync(Playerid, Gamepass10xClicksID) then
14    IncVal = 10
15 
16script.Parent.MouseButton1Click:Connect(function()
17    Player.leaderstats.Clicks.Value = game.Players.LocalPlayer.leaderstats.Clicks.Value + IncVal
18    end)
19end

Hope this helped!

Any questions? Just ask!

0
Thanks, let me try this out and I'll update you on it. dxrrevn 13 — 3y
Ad

Answer this question