yeevivor4
|
  |
| Joined: 23 Feb 2011 |
| Total Posts: 112 |
|
|
| 27 Jul 2011 05:16 PM |
| Okay, I only know a tiny tiny bit of scripting. I keep trying to read the freaking roblox wiki scripting guides but its just all confusing. Can anyone at least tell me because its so freaking weird with all the stuff its just giving me. I don't know much also bout scripting so if you can, help me. I only read the very first one where it tells you if you haven't ever done scripting and I only understand a bit. If you can help me, thanks so much. Good bye |
|
|
| Report Abuse |
|
|
|
| 27 Jul 2011 05:18 PM |
| Leave this forum before you get possibly flamed(not by me)... |
|
|
| Report Abuse |
|
|
Incure
|
  |
| Joined: 19 Jul 2011 |
| Total Posts: 22 |
|
|
| 27 Jul 2011 05:25 PM |
| ME TOO! i thought i was the only Robloxian who had this problem it would be alot easier to learn with a video voice tutorial right? |
|
|
| Report Abuse |
|
|
|
| 27 Jul 2011 05:29 PM |
Here's one. It's a reset script, when in a game, go to the 'bar' at the top, click insert, then object, then click script, then go into explorer and paste this into the script, that will then let you reset if say reset during the game.
function onChatted(msg, speaker) source = string.lower(speaker.Name) msg = string.lower(msg) -- Note: This one is NOT caps sensitive
if msg == "reset" then speaker.Character.Head:remove() -- Death. end end
function onPlayerEntered(newPlayer) newPlayer.Chatted:connect(function(msg) onChatted(msg, newPlayer) end) end game.Players.ChildAdded:connect(onPlayerEntered)
|
|
|
| Report Abuse |
|
|
Incure
|
  |
| Joined: 19 Jul 2011 |
| Total Posts: 22 |
|
|
| 27 Jul 2011 05:31 PM |
| Thank you! is there any other beginner scripts i can learn? |
|
|
| Report Abuse |
|
|
booing
|
  |
| Joined: 04 May 2009 |
| Total Posts: 6594 |
|
|
| 27 Jul 2011 06:05 PM |
wiki.roblox.com/ lua.org/pil |
|
|
| Report Abuse |
|
|
Incure
|
  |
| Joined: 19 Jul 2011 |
| Total Posts: 22 |
|
|
| 27 Jul 2011 06:21 PM |
| If you read above.. We came here because dont understand how to learn to script from the roblox wiki.. |
|
|
| Report Abuse |
|
|
|
| 27 Jul 2011 06:57 PM |
Insert a script in your place and do this
Game.Workspace.Base.Transparency= 1
And if you want it to wait a little do this:
Wait(5) --You can copy and paste this because with the -- its like a note --And the 5 Stands for how long you want it to wait. Game.Workspace.Base.Transparency= 1
|
|
|
| Report Abuse |
|
|
|
| 27 Jul 2011 06:59 PM |
That will make your baseplate invisible and if you want it to flash do this
Game.Workspace.Base.Transparency= 1 wait(1) Game.Workspace.Base.Transparency= 0 wait(1) Game.Workspace.Base.Transparency= 1 wait(1) --And so forth |
|
|
| Report Abuse |
|
|
Incure
|
  |
| Joined: 19 Jul 2011 |
| Total Posts: 22 |
|
|
| 27 Jul 2011 07:23 PM |
Thank you! :D and thanks for not flaming us :) i appreciate it.
Sincerely,Incure |
|
|
| Report Abuse |
|
|
|
| 27 Jul 2011 08:21 PM |
| np im new too ive gotten epic scripters to help me out! |
|
|
| Report Abuse |
|
|
|
| 27 Jul 2011 08:54 PM |
@Greed LOL YOU CAN'T CAPITALIZE game NOOB LOLZ |
|
|
| Report Abuse |
|
|
|
| 28 Jul 2011 12:43 PM |
| Man i forget a space , i get yelled at , i forget to not capitalize WHICH I DO THAT AND IT STILL WORKS and get yelled at. |
|
|
| Report Abuse |
|
|
| |
|