|
| 24 Oct 2011 04:44 AM |
| well basiclly i have a city , and in it i need to have a script that gives you money like every 30 seconds you get like 100 , and also a script which lets you buy stuff like a for sale thing for a house , so say you have 3000 and the house is 3000 you walk up and walk into the for sale sign. so can you get what im saying? |
|
|
| Report Abuse |
|
|
| |
|
|
| 24 Oct 2011 05:43 AM |
Title Change
also no requests. |
|
|
| Report Abuse |
|
|
| |
|
|
| 24 Oct 2011 05:48 AM |
:D I wonder if he will try to learn to script now, Probly not.
--nate890 was here Ujelly?-- |
|
|
| Report Abuse |
|
|
|
| 24 Oct 2011 05:53 AM |
Might have better luck posting this in "Let's Make a Deal" section of the forums and not here, This section is for help with YOUR script not for asking others to make a script for you...
|
|
|
| Report Abuse |
|
|
|
| 24 Oct 2011 05:54 AM |
| I don't want somone to make it for me i need a basic idea of what i need to do? |
|
|
| Report Abuse |
|
|
|
| 24 Oct 2011 06:02 AM |
| @ above you need to learn2script and only then can yuou make this. |
|
|
| Report Abuse |
|
|
Ultraw
|
  |
| Joined: 20 Nov 2010 |
| Total Posts: 6575 |
|
|
| 24 Oct 2011 09:27 AM |
print("Give me scripts because i can't script and i wish for you to slave for me so i don't have to go to the trouble to learn")
function onPlayerEntered(newPlayer)
local stats = Instance.new("IntValue") stats.Name = "leaderstats"
local mins = Instance.new("IntValue") mins.Name = "Cash" mins.Value = 0
mins.Parent = stats stats.Parent = newPlayer
while true do wait(30) mins.Value = mins.Value + 100 end end
game.Players.ChildAdded:connect(onPlayerEntered) |
|
|
| Report Abuse |
|
|