|
| 05 Jun 2015 09:58 PM |
Part = game.Workspace.Part.Transparency Part = 0.25 num2 = game.Workspace.num2.Transparency num2 = 1 if Part < num2 then print("trans part numb2 higher than Part") end
-- proud |
|
|
| Report Abuse |
|
|
Darkenus
|
  |
| Joined: 17 Jul 2014 |
| Total Posts: 1997 |
|
|
| 05 Jun 2015 09:59 PM |
print("OMG, CONGRATS!")
Nice job! |
|
|
| Report Abuse |
|
|
| |
|
|
| 05 Jun 2015 10:02 PM |
part = script.Parent
part.Touched:connect(function(hit) congrats = "Congrats Dude!" fun = "Have Fun Learning More!" keep = "Keep up the good work!" print(congrats, keep, fun) end) |
|
|
| Report Abuse |
|
|
|
| 05 Jun 2015 10:04 PM |
| oops silly me. Forgot to change the variables to local variables xD. |
|
|
| Report Abuse |
|
|
|
| 05 Jun 2015 10:08 PM |
My very first script for a gui button aka it's for Berezaa's Tycoon Kit
script.Parent.MouseButton1Click:connect(function() local player = game.Players.Player local cashmoney = game.ServerStorage.MoneyStorage:FindFirstChild(player.Name) if cashmoney then cashmoney.Value = cashmoney.Value + 10000000 end end)
|
|
|
| Report Abuse |
|
|
|
| 05 Jun 2015 10:11 PM |
| Above will only work in a serverscript. So you kinda failed, unless that IS in a server script. Which would be a double fail. |
|
|
| Report Abuse |
|
|
|
| 05 Jun 2015 10:23 PM |
| He also defined Player as game.Players.Player so it would only work in test mode xD |
|
|
| Report Abuse |
|
|