of     1   

Cerualen
#123409261Saturday, January 18, 2014 4:28 PM GMT

I want it so that when you click button, you get blue katana if you have this certain gamepass Broken Script: gpid = 141910550 --Game Pass ID tools = {"BlueKatana"} GPS = Game:GetService("GamePassService") function unleashepicness() 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 script.Parent.MouseButton1Click:connect(unleashepicness) siggy so hot, it spits yoga fire
devLucas
#123409478Saturday, January 18, 2014 4:31 PM GMT

You didn't put "char" in the parenthesis for the function. Broken Script: gpid = 141910550 --Game Pass ID tools = {"BlueKatana"} GPS = Game:GetService("GamePassService") function unleashepicness(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 script.Parent.MouseButton1Click:connect(unleashepicness)
Cerualen
#123409613Saturday, January 18, 2014 4:32 PM GMT

ah I knew it! Thx :0 siggy so hot, it spits yoga fire
Cerualen
#123439362Saturday, January 18, 2014 9:37 PM GMT

Still no work... siggy so hot, it spits yoga fire
Cerualen
#123492459Sunday, January 19, 2014 9:55 AM GMT

Anyone? siggy so hot, it spits yoga fire
Azarth
#123493055Sunday, January 19, 2014 10:17 AM GMT

--local script repeat wait() until game.Players.LocalPlayer local p = game.Players.LocalPlayer gpid = 141910550 tools = {"BlueKatana"} GPS = Game:GetService("GamePassService") function unleashepicness() if GPS:PlayerHasPass(p, gpid) then print("Has GPID") for i = 1,#tools do game.Lighting:FindFirstChild(tools[i]):Clone().Parent = p.Backpack end else print("No GPID") end end script.Parent.MouseButton1Click:connect()

    of     1