|
| 04 Mar 2016 08:18 PM |
player = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent money = player.leaderstats.Points price = 100
function buy() if money.Value >= price then money.Value = money.Value - price and workspace.currentbid.Value == workspace.currentbid.Value -100 end end script.Parent.MouseButton1Down:connect(buy)
you guys can probably tell by reading it |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Mar 2016 08:32 PM |
error = leaderstats is not a valid member of Players.
Say whaaat |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Mar 2016 08:36 PM |
| Do you want to multiplayer studio so i can help you? |
|
|
| Report Abuse |
|
|
Gensoki
|
  |
| Joined: 15 Feb 2014 |
| Total Posts: 1982 |
|
|
| 04 Mar 2016 08:37 PM |
localscript
player = game.Players.LocalPlayer leaderstats = player:WaitForChild'leaderstats' money = leaderstats:WaitForChild'Points' price = 100
script.Parent.MouseButton1Down:connect(function() if money.Value >= price then money.Value = money.Value - price and workspace.currentbid.Value == workspace.currentbid.Value -100 end end)
http://www.roblox.com/mne-item?id=374063815 http://www.roblox.com/yee-item?id=376895439 |
|
|
| Report Abuse |
|
|
|
| 04 Mar 2016 08:42 PM |
did not work and made local.
|
|
|
| Report Abuse |
|
|
|
| 04 Mar 2016 08:43 PM |
| Invite me in studio ill make it. |
|
|
| Report Abuse |
|
|
|
| 04 Mar 2016 08:48 PM |
| idk how to do that. hold up |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Mar 2016 08:52 PM |
| go into your place in edit mode then go to view then click teamcreate and add me then stay in your place in edit mode |
|
|
| Report Abuse |
|
|
| |
|
|
| 04 Mar 2016 09:35 PM |
player = game:GetService("Players").LocalPlayer money = player:WaitForChild("leaderstats").Points price = 100
function buy() if money.Value >= price then money.Value = money.Value - price workspace.currentbid.Value == workspace.currentbid.Value -100 end end script.Parent.MouseButton1Down:connect(buy)
~XlAscensionlX [Graphic Design://Scripter://Developer://] |
|
|
| Report Abuse |
|
|