of     1   

Barmoi
#228352878Saturday, December 02, 2017 11:43 PM GMT

I need help with a 2 player teleportation script. So if 2 people click a part they both teleport somewhere. I only made a script for one person, Can someone help me make it for 2 players? Script: local telebrick = script.Parent local position = Vector3.new(0,50,0) --replace the coordinates with the actual destination coordinates local Detector = Instance.new("ClickDetector") Detector.Parent = telebrick telebrick.ClickDetector.MouseClick:connect(function(plr) plr.Character.HumanoidRootPart.CFrame = CFrame.new(position) end) ʰᵉʸ ʷʰᵒ ᵐᵃᵈᵉ ᵐʸ ᵏᵉʸᵇᵒᵃʳᵈ ᵗᶦⁿʸ|R$99,788|~Rocks Owner & Lead VC'er|+2.3k posts
Barmoi
#228353099Saturday, December 02, 2017 11:49 PM GMT

? ʰᵉʸ ʷʰᵒ ᵐᵃᵈᵉ ᵐʸ ᵏᵉʸᵇᵒᵃʳᵈ ᵗᶦⁿʸ|R$99,788|~Rocks Owner & Lead VC'er|+2.3k posts
V_PN
#228353383Saturday, December 02, 2017 11:55 PM GMT

I'd something like add two string values and then use them to depend on if two players have clicked it. Then it'd save the persons name (when the button is clicked) in the first value SPECIFICALLY, and to prevent it from overwriting in the next step make sure the value isnt nil or something. Then if the first value isn't nil then it'd go to the second one where it would store it, then after that get the two players and teleport them to their location. After that replace the values back to nil. Might work, might not. #code print('0')
LuaCymru
#228354607Sunday, December 03, 2017 12:21 AM GMT

local telebrick = script.Parent local position = Vector3.new(0,50,0) --replace the coordinates with the actual destination coordinates local Detector = Instance.new("ClickDetector") local bool = Instance.new('BoolValue',telebrick) bool.Value =0 other = '' Detector.Parent = telebrick telebrick.ClickDetector.MouseClick:connect(function(plr) if bool.Value == false then other = plr.Name bool.Value = true else if game.Players:FindFirstChild(other) then plr2 = game.Players:FindFirstChild(other) plr1 = plr plr1.Character:MoveTo(position) plr2.Character:MoveTo(position) bool.Value = false other = '' else other = plr.Name bool.Value = true end end end)
LuaCymru
#228354672Sunday, December 03, 2017 12:22 AM GMT

local telebrick = script.Parent local position = Vector3.new(0,50,0) --replace the coordinates with the actual destination coordinates local Detector = Instance.new("ClickDetector") local bool = Instance.new('BoolValue',telebrick) bool.Value =false other = '' Detector.Parent = telebrick telebrick.ClickDetector.MouseClick:connect(function(plr) if bool.Value == false then other = plr.Name bool.Value = true else if game.Players:FindFirstChild(other) then plr2 = game.Players:FindFirstChild(other) plr1 = plr plr1.Character:MoveTo(position) plr2.Character:MoveTo(position) bool.Value = false other = '' else other = plr.Name bool.Value = true end end end)
Barmoi
#228354778Sunday, December 03, 2017 12:24 AM GMT

Thats script can fire if the same person clicks it twice ʰᵉʸ ʷʰᵒ ᵐᵃᵈᵉ ᵐʸ ᵏᵉʸᵇᵒᵃʳᵈ ᵗᶦⁿʸ|R$99,788|~Rocks Owner & Lead VC'er|+2.3k posts
V_PN
#228354857Sunday, December 03, 2017 12:26 AM GMT

Then do something like the second value isn't the same as one. ez #code while true do end
Barmoi
#228355370Sunday, December 03, 2017 12:39 AM GMT

how? ʰᵉʸ ʷʰᵒ ᵐᵃᵈᵉ ᵐʸ ᵏᵉʸᵇᵒᵃʳᵈ ᵗᶦⁿʸ|R$99,788|~Rocks Owner & Lead VC'er|+2.3k posts
Barmoi
#228355830Sunday, December 03, 2017 12:51 AM GMT

DSFSF ʰᵉʸ ʷʰᵒ ᵐᵃᵈᵉ ᵐʸ ᵏᵉʸᵇᵒᵃʳᵈ ᵗᶦⁿʸ|R$99,788|~Rocks Owner & Lead VC'er|+2.3k posts

    of     1