Main Search
Delta Corp Forum Index
 
 
FAQ Members Groups Profile Private Messages

Important Notice: We regret to inform you that our free phpBB forum hosting service will be discontinued by the end of June 30, 2024. If you wish to migrate to our paid hosting service, please contact [email protected].
Teleport Brick

 
Post new topic   Reply to topic    Delta Corp Forum Index -> Script Requests
View previous topic :: View next topic  
Author Message
ganswish
Beginner Poster


Joined: 06 Feb 2008
Posts: 37

PostPosted: Sat Feb 09, 2008 1:52 am    Post subject: Teleport Brick Reply with quote

Name:Tele brick

Items needed: game.Workspace.tele1 (this is the brick that will be stepped on)
game.Workspace.tele2 (this is the brick that the user will be moved to if they step on tele1)

Desc. When a user steps on tele1 , it will move them to the location of tele2

Please help if you can!!

This is what i have so far:

function onTouch(part)
local h = part.Parent:findFirstChild()
if h~= nill then
h.Position=game.Workspace.tele2
end
end

connection = script.Parent.Touched:connect(onTouch)
Back to top
View user's profile Send private message
kiddietron
Site Admin


Joined: 06 Feb 2008
Posts: 797
Location: On Roblox

PostPosted: Sat Feb 09, 2008 2:09 am    Post subject: Reply with quote

brick = script.Parent
debounce = false

function onTouched(part)
if debounce == true then return end
if part.Parent == game.Workspace then
if part.Anchored == false then
part.Position = game.Workspace.tele2.Position
end
else
debounce = true
local h = part.Parent:findFirstChild("Humanoid")
if h == nil then return end
local x = game.Workspace.tele2.Position.x
local y = game.Workspace.tele2.Position.y
local z = game.Workspace.tele2.Position.z
part.Parent:move(Vector3.new(x,y,z))
end
end
wait(3)
debounce = false
end

script.Parent.Touched:connect(onTouched)

Once again I haven't tested. Might Work.
_________________
�Kiddietron
�Phailing at making a signature

Free Money here just sign up and click away.
http://bux.to/?r=kiddietron

Spam is for noobs.

Back to top
View user's profile Send private message Send e-mail AIM Address
robloxcop2/ROBLOXianuser
Delta Corp Veteran


Joined: 06 Feb 2008
Posts: 339
Location: Mississippi

PostPosted: Sat Feb 09, 2008 2:12 am    Post subject: Reply with quote

There's already a Tele Brick...
_________________
.`~Delta Corp Veteran~'.
Find me on ROBLOX as robloxcop2.
I <3 pie
Back to top
View user's profile Send private message Visit poster's website
ganswish
Beginner Poster


Joined: 06 Feb 2008
Posts: 37

PostPosted: Sat Feb 09, 2008 2:13 am    Post subject: Reply with quote

It didnt work Sad but thanks for trying Kiddietron Smile
Back to top
View user's profile Send private message
kiddietron
Site Admin


Joined: 06 Feb 2008
Posts: 797
Location: On Roblox

PostPosted: Sat Feb 09, 2008 2:14 am    Post subject: Reply with quote

Alright I'll actually go test.
_________________
�Kiddietron
�Phailing at making a signature

Free Money here just sign up and click away.
http://bux.to/?r=kiddietron

Spam is for noobs.

Back to top
View user's profile Send private message Send e-mail AIM Address
ganswish
Beginner Poster


Joined: 06 Feb 2008
Posts: 37

PostPosted: Sat Feb 09, 2008 2:14 am    Post subject: Reply with quote

Sorry for the Double Post, but robloxcop what can I type in to find the Tele brick??
Back to top
View user's profile Send private message
robloxcop2/ROBLOXianuser
Delta Corp Veteran


Joined: 06 Feb 2008
Posts: 339
Location: Mississippi

PostPosted: Sat Feb 09, 2008 2:16 am    Post subject: Reply with quote

Go to All Models, then type Teleport...
_________________
.`~Delta Corp Veteran~'.
Find me on ROBLOX as robloxcop2.
I <3 pie
Back to top
View user's profile Send private message Visit poster's website
ganswish
Beginner Poster


Joined: 06 Feb 2008
Posts: 37

PostPosted: Sat Feb 09, 2008 2:17 am    Post subject: Reply with quote

Thats the teleport tool that teles you to where you want.. Im talking about a brick called tele1 that when you step on , it teleports you to the exact location of a brick called tele2..... I think Kiddietron is trying to solve the problem with the script :\
Back to top
View user's profile Send private message
kiddietron
Site Admin


Joined: 06 Feb 2008
Posts: 797
Location: On Roblox

PostPosted: Sat Feb 09, 2008 2:20 am    Post subject: Reply with quote

I fixed it, I'll post a link on my releases page.
_________________
�Kiddietron
�Phailing at making a signature

Free Money here just sign up and click away.
http://bux.to/?r=kiddietron

Spam is for noobs.

Back to top
View user's profile Send private message Send e-mail AIM Address
ganswish
Beginner Poster


Joined: 06 Feb 2008
Posts: 37

PostPosted: Sat Feb 09, 2008 2:23 am    Post subject: Reply with quote

Yay Smile Thank you again Kiddietron
Back to top
View user's profile Send private message
kiddietron
Site Admin


Joined: 06 Feb 2008
Posts: 797
Location: On Roblox

PostPosted: Sat Feb 09, 2008 2:24 am    Post subject: Reply with quote

Did you get it?
_________________
�Kiddietron
�Phailing at making a signature

Free Money here just sign up and click away.
http://bux.to/?r=kiddietron

Spam is for noobs.

Back to top
View user's profile Send private message Send e-mail AIM Address
ganswish
Beginner Poster


Joined: 06 Feb 2008
Posts: 37

PostPosted: Sat Feb 09, 2008 2:38 am    Post subject: Reply with quote

Ya I got it Smile Thanks
Back to top
View user's profile Send private message
kiddietron
Site Admin


Joined: 06 Feb 2008
Posts: 797
Location: On Roblox

PostPosted: Sat Feb 09, 2008 2:47 am    Post subject: Reply with quote

Oh btw, miked has had a teleport brick system for a long time. Lol. I've wanted to make my own for a while though.
_________________
�Kiddietron
�Phailing at making a signature

Free Money here just sign up and click away.
http://bux.to/?r=kiddietron

Spam is for noobs.

Back to top
View user's profile Send private message Send e-mail AIM Address
Display posts from previous:   
Post new topic   Reply to topic    Delta Corp Forum Index -> Script Requests All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Back to Top              
Jenova Template © digital-delusion.com
Powered by phpBB © 2001, 2002 phpBB Group



For Support - http://forums.BizHat.com

Free Web Hosting | Free Forum Hosting | FlashWebHost.com | Image Hosting | Photo Gallery | FreeMarriage.com

Powered by PhpBBweb.com, setup your forum now!