|
| 29 May 2014 05:29 PM |
I need an teleporter brick that teleports a player with an FF duration and then you can teleport back with an ff duration you can post the script here and then i can put it in a brick and see if it works
ty |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
| |
|
Hazania
|
  |
| Joined: 04 Jun 2010 |
| Total Posts: 1344 |
|
|
| 29 May 2014 07:40 PM |
Just to clarify; You want a brick that onTouched() will teleport you to another brick across the map that once teleported to you will have a forcefield so that you arn't spawnkilled for x amount of seconds/minutes. Upon stepping back on the brick you are teleported back to the other spot with the same ff.
^ Am I correct? |
|
|
| Report Abuse |
|
|
| |
|
| |
|
Hazania
|
  |
| Joined: 04 Jun 2010 |
| Total Posts: 1344 |
|
|
| 29 May 2014 07:56 PM |
| Are you asking for someone to make it for you? Or asking for someone to help teach you how to make it. You should have an idea of what your doing and an example of your progress before you ask for help. |
|
|
| Report Abuse |
|
|
Hazania
|
  |
| Joined: 04 Jun 2010 |
| Total Posts: 1344 |
|
|
| 29 May 2014 07:58 PM |
| All the script has to do is move the persons position to the other location and then insert a force field into their torso temporarily using wait(20) and then remove(). It's simple, you just need to have a general idea and have at least tried or people don't like doing things for you or any other person. |
|
|
| Report Abuse |
|
|
|
| 29 May 2014 08:12 PM |
Can you script it for me, please?
I really need it for my fort. |
|
|
| Report Abuse |
|
|
|
| 29 May 2014 08:18 PM |
| Can anyone script it for me? Like have a duration of 3 seconds. |
|
|
| Report Abuse |
|
|
golfercab
|
  |
| Joined: 26 Sep 2011 |
| Total Posts: 714 |
|
|
| 29 May 2014 08:18 PM |
script would look like
function
teleports player to brick
turns forcefield true for a certain time
connection line |
|
|
| Report Abuse |
|
|
Hazania
|
  |
| Joined: 04 Jun 2010 |
| Total Posts: 1344 |
|
|
| 29 May 2014 08:20 PM |
| This isn't what he wants. Unfortunately I don't have the time right now to make you this script. |
|
|
| Report Abuse |
|
|
|
| 29 May 2014 08:24 PM |
| Haz, may you script it and PM me it when you have time? I really need that script. |
|
|
| Report Abuse |
|
|
Hazania
|
  |
| Joined: 04 Jun 2010 |
| Total Posts: 1344 |
|
|
| 29 May 2014 08:26 PM |
| Idk, we will see. Leave me a pm and if I ever have time for it I'll help. |
|
|
| Report Abuse |
|
|
Hazania
|
  |
| Joined: 04 Jun 2010 |
| Total Posts: 1344 |
|
|
| 29 May 2014 08:27 PM |
| In the mean time I suggest trying to figure it out yourself. By using free models and the roblox wiki, you should be able to learn how other people made tele scripts and also how to add things like the forcefield. Goodluck! |
|
|
| Report Abuse |
|
|
golfercab
|
  |
| Joined: 26 Sep 2011 |
| Total Posts: 714 |
|
|
| 29 May 2014 09:28 PM |
| ^ i learn a lot from wiki/googling |
|
|
| Report Abuse |
|
|
jd678
|
  |
| Joined: 18 Apr 2008 |
| Total Posts: 11529 |
|
|
| 29 May 2014 09:45 PM |
| Don't script it for him, and if you do don't do it for free. For real, make him learn himself. |
|
|
| Report Abuse |
|
|
kylerzong
|
  |
| Joined: 06 Aug 2011 |
| Total Posts: 659 |
|
|
| 29 May 2014 10:34 PM |
Script goes inside the first brick (First brick is named "TeleBrick1"
see if this works -------------------------------------------------------------------- function onTouched(hit) if hit.Parent.Humanoid ~= nil then local player = hit.Parent player:MoveTo(game.Workspace:findFirstChild("TeleBrick2").Position) ff = Instance.new("Forcefield", hit.Parent) wait(5) ff:Destroy() end end script.Parent.Touched:connect(onTouched) ----------------------------------------------------------------------------
Script goes inside second brick (second brick is named "TeleBrick2" function onTouched(hit) if hit.Parent.Humanoid ~= nil then local player = hit.Parent player:MoveTo(game.Workspace:findFirstChild("TeleBrick1").Position) ff = Instance.new("Forcefield", hit.Parent) wait(5) ff:Destroy() end end script.Parent.Touched:connect(onTouched) -----------------------------------------------------------------------
|
|
|
| Report Abuse |
|
|
|
| 30 May 2014 02:51 PM |
Only worked once.. But thank you for trying. Also, it didn't FF. |
|
|
| Report Abuse |
|
|
|
| 30 May 2014 02:52 PM |
| I really need this script for my base. So please. I will pay 150R$ if someone script it for me. |
|
|
| Report Abuse |
|
|
golfercab
|
  |
| Joined: 26 Sep 2011 |
| Total Posts: 714 |
|
|
| 30 May 2014 03:01 PM |
| only worked once? why wouldn't it work again? any error lines |
|
|
| Report Abuse |
|
|
|
| 30 May 2014 03:10 PM |
Here's the place: http://www.roblox.com/Valorous-Fort-Diamond-3-0-NOT-RAIDABLE-place?id=158634162
Go inside the base, and go to the left. Use the left teleporting brick. Also you teleport on top of the brick not inside. |
|
|
| Report Abuse |
|
|
|
| 30 May 2014 03:15 PM |
P1 = Workspace.Part1Name P2 = Workspace.Part2Name
function tp(char,brick,fftime) char:MoveTo(brick.Position) if not char:FindFirstChild("ff") then ff = Instance.new("ForceField",char) ff.Name = "ff" game.Debris:AddItem(ff,fftime) end end
P1.Touched:connect(function(h) if h.Parent:FindFirstChild("Humanoid") then tp(h.Parent,P2,3) end end)
P2.Touched:connect(function(h) if h.Parent:FindFirstChild("Humanoid") then tp(h.Parent,P1,3) end end) |
|
|
| Report Abuse |
|
|