Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276
Full Statistics
|
Online Users |
There are currently 185 online users. » 0 Member(s) | 184 Guest(s) Bing
|
Latest Threads |
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,414
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 775
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,546
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,256
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,141
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 1,010
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 985
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,203
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 1,009
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 964
|
|
|
Cubebomb- The social network for kids and teens! |
Posted by: TheFlame - 05-14-2011, 10:16 PM - Forum: Video Games
- Replies (2)
|
 |
"CubeBomb is the social network for kids and teens. At CubeBomb, you can create cool items, customise your character, make new friends, and more. And the best part - all of it is free."
This game is REALLY fun! I am trying to recruit users so join if you can. Even Ashely plays Cubebomb! You can find me there as "Redflameman". So go join now at www.cubebomb.com!
|
|
|
I think I am learing how to script (Sort of the realy basics) |
Posted by: Fish - 05-14-2011, 10:12 PM - Forum: 2DWorlds Discussion
- Replies (12)
|
 |
RockFolder = create("Model")
RockFolder.Name = "Rocks"
RockFolder.Parent = game.World
link(RockFolder.ChildAdded,function(Stone)
link(Stone.Collided,function (hit)
if hit.Parent:isA("Character") and hit.Parent.Name ~= script.Parent.Parent.Parent.Name then
hit.Parent.Health = hit.Parent.Health-100
hit.Velocity = Vec2D(0,math.random(125,150))
end
end)
for i=1,25 do
Stone.Position = Stone.Position:add(Vec2D(0,0.4))
sleep(0.01)
end
sleep(0.05)
for i=1,25 do
Stone.Position = Stone.Position ub(Vec2D(0,0.4))
sleep(0.01)
end
local s = create("Script")
s.Source = "sleep(3) script.Parent:remove()"
s.Parent = Stone
end)
function Stone(Pos,Number)
S = create("Box")
--S = create("Box")
S.Name = "Rock"
--S.Fixed = true
--S.Locked = true
S.Transparency = 0.0
S.Collidable = true
S.Size = Vec2D(math.random(2,7),math.random(20,25))
S.Color = Color(148, 83, 17)
S.Position = Pos:add(Vec2D(Number*10,0))
S.Parent = RockFolder
end
D = false
link(script.Parent.MouseDown,function()
if D == true then return end
D = true
local BP = Vec2D(script.Parent.Parent.Parent.Character.Body.Position.x,script.Parent.Parent.Parent.Character.Body.Position.y)
for i=1,10 do
Stone(BP,i*-1)
sleep(0.05)
end
D = false
end)
It was origonaly water. I have never edited a script (Well... But Person299 Admin commands on ROBLOX. LOL) So I thought If I made Water into Box, a soild box would appear instead of water, it was right, then I changed the color and Transparenty! Looking at Qwertygiy's ROBLOX Scripts, he studyed Scripts to learn, like I am doing. So if anyone can give me basic scripts to edit, Thanks.
P.s, this script was from Anti.
|
|
|
Workin' on an Adventure level... |
Posted by: Qwertygiy - 05-14-2011, 10:09 PM - Forum: Current Games
- Replies (6)
|
 |
Picture this: A large map full of ladders, water, and various 'levels' (not as in game levels, but height levels).
Also, add a few various enemies, a prize or two, lots of special effects, lives, and scores.
That's what I'm working on at this game.
It'll be a while, but I hope to have the basics out by mid-June at the latest.
|
|
|
5/14/11 |
Posted by: Jacob__mybb_import1 - 05-14-2011, 08:26 PM - Forum: News
- No Replies
|
 |
- The property table and object tree resize automatically to fit your window.
|
|
|
|