Can someone help me script? - Printable Version +- 2DWorlds Forums (http://2dworlds.buildism.net/forum) +-- Forum: 2DWorlds (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=4) +--- Forum: 2DWorlds Discussion (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=10) +--- Thread: Can someone help me script? (/showthread.php?tid=5916) Pages:
1
2
|
Can someone help me script? - Fish - 06-17-2011 I haz game idea.. RE: Can someone help me script? - Fire - 06-17-2011 Whats your idea?! And this should be posted in the scripting section. RE: Can someone help me script? - Fish - 06-17-2011 (06-17-2011, 06:10 PM)Fire Wrote: Whats your idea?! And this should be posted in the scripting section. War game. RE: Can someone help me script? - Blandflakes - 06-17-2011 (06-17-2011, 06:12 PM)Fish Wrote:(06-17-2011, 06:10 PM)Fire Wrote: Whats your idea?! And this should be posted in the scripting section. Ok, what exactly would you need scripted in that? RE: Can someone help me script? - Fish - 06-17-2011 (06-17-2011, 06:20 PM)BlandFlakes Wrote:(06-17-2011, 06:12 PM)Fish Wrote:(01-01-1970, 12:00 AM)FireS308334230' Wrote: Whats your idea?! And this should be posted in the scripting section. Well. Not a war game.. Sorta like Webs from Spiderman.. Like Double Wires with weapons.. So Buildings and a tool? RE: Can someone help me script? - broloxer - 06-17-2011 (06-17-2011, 06:23 PM)Fish Wrote:(06-17-2011, 06:20 PM)BlandFlakes Wrote:(06-17-2011, 06:12 PM)Fish Wrote:(01-01-1970, 12:00 AM)FireS308334230' Wrote: Whats your idea?! And this should be posted in the scripting section. I can only script a bit on roblox.. [lua]while true do game.Part.Transparency = 0 wait(0.1) game.Part.Transparency = 1 end [/lua] I don't know if that's right or wrong.. RE: Can someone help me script? - Blandflakes - 06-17-2011 (06-17-2011, 06:46 PM)broloxer Wrote:(06-17-2011, 06:23 PM)Fish Wrote:(06-17-2011, 06:20 PM)BlandFlakes Wrote:(06-17-2011, 06:12 PM)Fish Wrote:(01-01-1970, 12:00 AM)FireS308334230' Wrote: Whats your idea?! And this should be posted in the scripting section. [lua]while true do sleep(0.1) game.World.Part.Transparency = 0 sleep(0.1) game.World.Part.Transparency = 1 end [/lua] ;3 RE: Can someone help me script? - broloxer - 06-17-2011 (06-17-2011, 06:50 PM)BlandFlakes Wrote:(06-17-2011, 06:46 PM)broloxer Wrote:(06-17-2011, 06:23 PM)Fish Wrote:(06-17-2011, 06:20 PM)BlandFlakes Wrote:(06-17-2011, 06:12 PM)Fish Wrote: War game. Oh! I forgot Workspace, part is a valid part of game. :l while true do wait(0.1) game.Workspace.Part.Transparency = 0 wait(0.1) game.Workspace.Part.Transparency = 1 end (06-17-2011, 06:50 PM)BlandFlakes Wrote:(06-17-2011, 06:46 PM)broloxer Wrote:(06-17-2011, 06:23 PM)Fish Wrote:(06-17-2011, 06:20 PM)BlandFlakes Wrote:(06-17-2011, 06:12 PM)Fish Wrote: War game. Oh! I forgot Workspace, part is a valid part of game. :l [lua]while true do wait(0.1) game.Workspace.Part.Transparency = 0 wait(0.1) game.Workspace.Part.Transparency = 1 end[/lua] RE: Can someone help me script? - Blandflakes - 06-17-2011 On buildism though instead of Workspace it's World. RE: Can someone help me script? - broloxer - 06-17-2011 (06-17-2011, 06:53 PM)BlandFlakes Wrote: On buildism though instead of Workspace it's game. Roblox Buildism Workspace World Wait sleep |