Posts: 1,752
Threads: 460
Joined: Apr 2011
Reputation:
0
Posts: 1,959
Threads: 140
Joined: Apr 2011
Reputation:
0
Whats your idea?! And this should be posted in the scripting section.
Posts: 1,752
Threads: 460
Joined: Apr 2011
Reputation:
0
(06-17-2011, 06:10 PM)Fire Wrote: Whats your idea?! And this should be posted in the scripting section.
War game.
Posts: 805
Threads: 85
Joined: May 2011
Reputation:
0
(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.
War game.
Ok, what exactly would you need scripted in that?
Posts: 1,752
Threads: 460
Joined: Apr 2011
Reputation:
0
(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.
War game.
Ok, what exactly would you need scripted in that?
Well. Not a war game.. Sorta like Webs from Spiderman.. Like Double Wires with weapons.. So Buildings and a tool?
Posts: 1,562
Threads: 157
Joined: Apr 2011
Reputation:
0
(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.
War game.
Ok, what exactly would you need scripted in that?
Well. Not a war game.. Sorta like Webs from Spiderman.. Like Double Wires with weapons.. So Buildings and a tool?
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..
Posts: 805
Threads: 85
Joined: May 2011
Reputation:
0
(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.
War game.
Ok, what exactly would you need scripted in that?
Well. Not a war game.. Sorta like Webs from Spiderman.. Like Double Wires with weapons.. So Buildings and a tool?
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..
[lua]while true do
sleep(0.1)
game.World.Part.Transparency = 0
sleep(0.1)
game.World.Part.Transparency = 1
end
[/lua]
;3
Posts: 1,562
Threads: 157
Joined: Apr 2011
Reputation:
0
(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.
Ok, what exactly would you need scripted in that?
Well. Not a war game.. Sorta like Webs from Spiderman.. Like Double Wires with weapons.. So Buildings and a tool?
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..
[lua]while true do
sleep(0.1)
game.World.Part.Transparency = 0
sleep(0.1)
game.World.Part.Transparency = 1
end
[/lua]
;3
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.
Ok, what exactly would you need scripted in that?
Well. Not a war game.. Sorta like Webs from Spiderman.. Like Double Wires with weapons.. So Buildings and a tool?
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..
[lua]while true do
sleep(0.1)
game.World.Part.Transparency = 0
sleep(0.1)
game.World.Part.Transparency = 1
end
[/lua]
;3
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]
Posts: 805
Threads: 85
Joined: May 2011
Reputation:
0
06-17-2011, 06:53 PM
(This post was last modified: 06-17-2011, 07:01 PM by fireland.)
On buildism though instead of Workspace it's World.
Posts: 1,562
Threads: 157
Joined: Apr 2011
Reputation:
0
(06-17-2011, 06:53 PM)BlandFlakes Wrote: On buildism though instead of Workspace it's game.
Roblox Buildism
Workspace World
Wait sleep
|