|
| 06 Apr 2014 06:36 AM |
| If I were to create a gamepass that would a give a gravity coil and speed coil, how would i do that?👶👶 |
|
|
| Report Abuse |
|
|
| 06 Apr 2014 06:41 AM |
| I saw a youtube video showing how to do it with one gear so how do I make it give out two gears? |
|
|
| Report Abuse |
|
|
| 06 Apr 2014 07:20 AM |
Wrong forum, you should go to Scripting Helpers.
Anyway, I think I can help.
Just type this script in:
wait(2) --Keep at 2 for safety. ------EDIT BELOW
gpid = 93052731 --Game Pass ID tools = {"tool1", "tool2", "tool3"} --Put VIP tools in Lighting, then put their exact names here.
GPS = Game:GetService("GamePassService") function respawned(char) player = game.Players:FindFirstChild(char.Name) print("Respawned") if char:FindFirstChild("Head") ~= nil then print("It's a Player!") if GPS:PlayerHasPass(player, gpid) then print("Has GPID") for i = 1,#tools do game.Lighting:FindFirstChild(tools[i]):Clone().Parent = player.Backpack end else print("No GPID") end end end game.Workspace.ChildAdded:connect(respawned) |
|
|
| Report Abuse |
|
| |