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

SCRIPT WONT WORK, PLEASE HELP! Script where if players have certain item they get free coins? [closed]

Asked by 6 years ago

SCRIPT WONT WORK, PLEASE HELP! I need a script where if players have certain gamepass they get free coins! I need this so creators get free stuff, please help!

Closed as Not Constructive by Link150

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?

1 answer

Log in to vote
-2
Answered by 6 years ago

Ok, your not supposed to ask for stuff without showing script but ok.

01-- If you do not know how to use this or the GUI, check out my YouTube video tutorial on this.
02-- Replace the 0's with your ID's
03-- Delete what you dont use, besides the first part of the function
04 
05 
06game.StarterGui.ResetPlayerGuiOnSpawn = false
07old_fog = game.Lighting.FogStart
08local MarketplaceService = game:GetService("MarketplaceService")
09 
10function getPlayerFromId(id)
11    for i,v in pairs(game.Players:GetChildren()) do
12        if v.userId == id then
13            return v
14        end
15    end
View all 99 lines...
Ad