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 220 online users. » 0 Member(s) | 218 Guest(s) Bing, Google
|
Latest Threads |
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 5,971
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 684
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,497
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,204
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,068
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 947
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 927
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,136
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 949
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 907
|
|
|
2/4/11 |
Posted by: Jacob__mybb_import1 - 02-05-2011, 12:55 AM - Forum: News
- Replies (5)
|
 |
- Tool picking up/dropping works again, and
- Tools are now dropped where you are pointing instead of on your head
- getAngle() member function for tools; this returns the angle between the player's body and the mouse
- moveTo(position, part) member function for models. The specified part will be moved to the given position, and the other parts in the model will be moved with it.
Here is an example of getAngle(). Put this script in a tool, then click to throw balls.
Code: player = script.Parent.Parent.Parent
character = player.Character
body = character.Body
link(script.Parent.MouseDown, function(b)
if b == 1 then
local a = math.rad(script.Parent:getAngle()) --it returns degrees, we need radians to use sin and cos
local x = math.cos(a) --get the x and y components of the angle
local y = math.sin(a)
local position = Vec2D(body.Position.x + x * 4, body.Position.y + y * 4) --Position of the ball
local p = create("Circle")
p.Position = position
p.Velocity = Vec2D(x * 20, y * 20) --Give it some velocity
p.Color = Color(200, 0, 0)
p.Parent = game.World
end
end)
|
|
|
What not to suggest |
Posted by: BuildistGuard - 02-04-2011, 11:26 PM - Forum: Suggestions
- Replies (3)
|
 |
This is a list to what not to suggest so we do not copy other games. This list will be updated from time to time.
List of what not to suggest:
1. Do not suggest copying other games like Runescape or Roblox or anything else. This could get Buildism sued and shut down.
2. Do not suggest Female bodies. This could mean chaos for Buildism. This could make 20-40 year old man disguise themselves as young girls and those could attract boys to date them and give out their personal info and which is bad.
|
|
|
Do not give out personal information or Online date |
Posted by: BuildistGuard - 02-04-2011, 11:20 PM - Forum: 2DWorlds Discussion
- Replies (8)
|
 |
Do not do Online dating and giving away phone numbers, mail address, home address, or your school. Emails may be allowed or your name. Also please do not online date, the person you are ODing(Online dating) is probably a 40 year old man dressed up as a girl. Those people could find you and do bad stuff to you. Also please do not cyberbully or give real world threats. Thank you for listening and reading this Thread.
|
|
|
Advance Skins. |
Posted by: Xray - 02-04-2011, 10:26 PM - Forum: Suggestions
- Replies (3)
|
 |
Would it be possible to make Skins that look left or right with a different head and not always looking sideways straight at camera cause it looks weird. :lol:
|
|
|
How to make a vip door |
Posted by: BuildistGuard - 02-04-2011, 02:14 AM - Forum: Tutorials and Guides
- No Replies
|
 |
First copy this script
[lua]allowed = {"YourNameHere", "OtherNameHere"}
function in_table ( e, t )
for _,v in pairs(t) do
if (v==e) then return true end
end
return false
end
function onCollide(part)
if part.Parent:isA("Character") then
local name = part.Parent.Name
if in_table(name, allowed) then
if script.Parent.Collidable then
script.Parent.Collidable = false
script.Parent.Transparency = 0.5
sleep(1)
script.Parent.Collidable = true
script.Parent.Transparency = 0
end
end
end
end
link(script.Parent.Collided, onCollide)[/lua]
Open the "Script" and paste this lua code. Finally change "Yournamehere" and "Othernamehere" and add whatever names you want on the list.No killing is included, but add it if you want. Have fun letting the only players in and the Vip door can be useful for a secret hideout, givers, party,etc.
|
|
|
|