Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276

Full Statistics

Online Users
There are currently 230 online users.
» 0 Member(s) | 229 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,263
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 733
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,516
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,224
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,108
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 972
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 952
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,161
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 980
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 935

 
  Reasons Why Ashely Should Not Be Mod
Posted by: DysLabs - 08-07-2012, 02:08 AM - Forum: Archive - Replies (12)

1. Shes too strict.
2. She takes the rules out of context.
3. She ignores me so I can spam. "Some other mod will take care of you. You're not my problem."
4. Everybody hates her. (Except Glome)
5. She won't listen to complaints.
6. She took my complain public.

Am I forgetting something?


7. She causes drama

Print this item

  Buildism - Are the rules to vague?
Posted by: When - 08-06-2012, 11:52 PM - Forum: 2DWorlds Discussion - Replies (2)

Do you think the rules are too vague causing each moderator to interpret the rules differently?

Print this item

  HELP PLZ!
Posted by: Leonartist - 08-06-2012, 10:11 PM - Forum: Help - Replies (5)

I don't have all my skins saved, and Buildism has blocked me from saving pictures of skins. I know about the url people use to access the person's skin they are currently wearing, but I would have to wear all my skins and it would take too long to do everything. I also need to know how to access character parts. PLZ give me the urls.

Print this item

  What I like/dislike about Buildism
Posted by: DysLabs - 08-06-2012, 08:55 PM - Forum: 2DWorlds Discussion - Replies (23)

(Should this have gone in The Community?)

What I like:

Everybody knows each other.

ALMOST everyone gets along.
(May be a few arguments but they get resolved)

Its small

What I dislike:

Some mods enforce the rules differently. *cough* Ashely *cough*

The rules are a bit vague.

That's all I can think of right now.
Opinions? Criticism? More likes? More dislikes? Post them.

Print this item

  I can't see skins.
Posted by: DysLabs - 08-06-2012, 07:50 PM - Forum: Bug Reports - Replies (10)

Whenever I go to see a skin, all I see is this:
[Image: lIOpE0]

Print this item

  List of Archived Buildism's Scripts (Release Date)
Posted by: Archived_Latinxassassin - 08-06-2012, 05:50 PM - Forum: Scripting - Replies (4)

All of Archived Buildism's Scripts are here by release date! If there is something missing, PM me.

Give me your feedback! The list is not complete, but I will add time to time.

1.) Kill Part (October 17, 2010 10:12 AM, created by Jacob_)

Code:
link(script.Parent.Collided, function(h)
    if h.Parent:isA("Character") then
        h.Parent:kill()
    end
end)

2.) Music Player (October 17, 2010 10:13, created by Jacob_)

Code:
link(script.Parent.Clicked, function()
    if script.Parent.Playing.Value then
        script.Parent.Sound:stop()
        script.Parent.Playing.Value = false
    else
        script.Parent.Sound:play()
        script.Parent.Playing.Value = true
    end
end)

3.) Fly Tool (October 17, 2010 10:14 AM, created by Jacob_)
Code:
tool = script.Parent
player = tool.Parent.Parent
if player:isA("Player") then
    controller = player.Character.Body.Controller

link(script.Parent.MouseDown, function(button, point)
    controller.Velocity = Vec2D(controller.Velocity.x, 5)
end)

link(script.Parent.MouseUp, function(button)
    controller.Velocity = Vec2D(controller.Velocity.x, 0)
end)

end

4.) Teleport Tool (October 17, 2010 10:15 AM, created by Jacob_)

Code:
tool = script.Parent
player = tool.Parent.Parent
if player:isA("Player") then
    body = player.Character.Body
    link(script.Parent.MouseDown, function(button, point)
        body.Position = point
    end)
end

5.) Reset Tool (January 1, 2011 7:07 PM created by Aroblix; edited by Jacob_)

Code:
player = script.Parent.Parent.Parent
link(script.Parent.MouseDown, function()
player.Character.Health = 0
end)

All of Archived Buildism's Scripts are here by release date! If there is something missing, PM me.

Give me your feedback! The list is not complete, but I will add time to time.

1.) Kill Part (October 17, 2010 10:12 AM, created by Jacob_)

Code:
link(script.Parent.Collided, function(h)
    if h.Parent:isA("Character") then
        h.Parent:kill()
    end
end)

2.) Music Player (October 17, 2010 10:13, created by Jacob_)

Code:
link(script.Parent.Clicked, function()
    if script.Parent.Playing.Value then
        script.Parent.Sound:stop()
        script.Parent.Playing.Value = false
    else
        script.Parent.Sound:play()
        script.Parent.Playing.Value = true
    end
end)

3.) Fly Tool (October 17, 2010 10:14 AM, created by Jacob_)
Code:
tool = script.Parent
player = tool.Parent.Parent
if player:isA("Player") then
    controller = player.Character.Body.Controller

link(script.Parent.MouseDown, function(button, point)
    controller.Velocity = Vec2D(controller.Velocity.x, 5)
end)

link(script.Parent.MouseUp, function(button)
    controller.Velocity = Vec2D(controller.Velocity.x, 0)
end)

end

4.) Teleport Tool (October 17, 2010 10:15 AM, created by Jacob_)

Code:
tool = script.Parent
player = tool.Parent.Parent
if player:isA("Player") then
    body = player.Character.Body
    link(script.Parent.MouseDown, function(button, point)
        body.Position = point
    end)
end

5.) Reset Tool (January 1, 2011 7:07 PM created by Aroblix; edited by Jacob_)

Code:
player = script.Parent.Parent.Parent
link(script.Parent.MouseDown, function()
player.Character.Health = 0
end)

6.) Rocket Tool (January 2, 2011 7:32 PM, created by Aroblix)

Code:
rocket = false
char = script.Parent.Parent.Parent.Character
link(script.Parent.MouseDown, function()
if rocket == false then
rocket = true
create("Rocket").Parent = char.Body
else
char.Body.Rocket.Parent = nil
end
end)

Print this item

  Hi i'm new
Posted by: ClassicBuilder - 08-06-2012, 05:25 PM - Forum: The Community - Replies (3)

Not really know much Smile

Print this item

  Old video games vs. new video games
Posted by: Qwertygiy - 08-06-2012, 12:22 PM - Forum: Debate - Replies (15)

In this thread, debate whether "older" games, "recent" games, or "newer" games are better, or whether it doesn't really matter.

For the sake of this thread, "older" refers to pre-2000, "recent" to 2000-2010, and "newer" to everything made during or after 2010.

For example, nearly all PS2 games fall into "recent", while nearly all PS1 games fall into "older". Portal and Super Mario Galaxy are "recent", while their sequels are "newer".

Print this item

  The Poll of Buildism 2
Posted by: c00lcurt - 08-06-2012, 12:15 PM - Forum: General Discussion - Replies (4)

Fixes these 2 problems:

1. More options, yay!
2. I repeated Roblox twice on the old one.

Have fun!


Poll posted, enjoy!

Print this item

  Contest Poll
Posted by: Mother - 08-06-2012, 11:55 AM - Forum: News - Replies (8)

Hey Buildist,

This week we are hoping to have a contest up and running but we would like your help. I have tons of ideas but we would like you guys the users of Buildism to pick the category for the new contest!

In my previous contest suggestions thread I asked for you guys to post some ideas and the feedback was great. The poll above is for you guys to answer, would you guys like a building contest, skin contest, video contest, or other. If you pick other please post below what contest you would like.

The prizes will be different. Smile

Thanks guy.

Print this item