of     1   

DarkLightReborn
#181818048Sunday, January 17, 2016 2:59 AM GMT

So this is my game but the GravityCoil dosen`t work so this my script local player = game.Players.LocalPlayer local pints = player:waitForChild('leaderstats').Points script.Parent.MouseButton1Click:connect(function() if Points.Value >= 20 and not player.Backpack:FindFirstChild('GravityCoil')and not player.Character:FindFirstChild('GravityCoil') then -- Player can afford the item game.ReplicatedStorage.Gears.GravityCoil.Clone().Parent = player.Backpack end end) http://www.roblox.com/games/344229698/working-on-Shop-Gut
DarkLightReborn
#181818116Sunday, January 17, 2016 2:59 AM GMT

local player = game.Players.LocalPlayer local pints = player:waitForChild('leaderstats').Points script.Parent.MouseButton1Click:connect(function() if Points.Value >= 20 and not player.Backpack:FindFirstChild('GravityCoil')and not player.Character:FindFirstChild('GravityCoil') then -- Player can afford the item game.ReplicatedStorage.Gears.GravityCoil.Clone().Parent = player.Backpack end end)
ProjectSlayer
#181820244Sunday, January 17, 2016 3:31 AM GMT

This is the incorrect forum; not many people here know how to script. I know the Scripters desc. says they don't take help requests, but they actually do if you ask politely enough.
Wrathsong
#181824801Sunday, January 17, 2016 4:38 AM GMT

^ They won't script FOR you but they'll help you debug your stuff. "local pints = player:waitForChild('leaderstats').Points" WaitForChild* "if Points.Value >= 20" There's no variable named Points. Your variable above that referenced points was called "pints". Everything else should be right though.

    of     1