Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Does anyone know how to make the number of players who clicked a TextButton, teleport the players?

Asked by
p0vd 207 Moderation Voter
4 years ago
Edited 4 years ago

Basically what I'm asking for is something like this: https://gyazo.com/cae356edbe0502e584391dbce6e878a9 It would teleport the amount of players to a certain game. I've seen this trick in many games, so I've been wondering how on Earth I would do this? If anyone has at least has a wiki page for it I would greatly appreciate it!

0
Question title and description don't line up at all... Not to mention the fact the link isn't even valid BuDeep 214 — 4y
0
srry my brain wasnt processing during this p0vd 207 — 4y
0
Then force your brain to process xddd greatneil80 2647 — 4y
0
This isnt a script request website NSMascot 113 — 4y
0
k im asking for a wiki page, is that enough for you? p0vd 207 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

must insert a bool value under index table module

b = script.Parent.Parent.Engine
wingflex = script.Parent.Parent.Wings_Motion
--LeftWingCenter.A.Motor.DesiredAngle = (math.random(MinimumFlex,MaximumFlex

LeftWingCenter = wingflex.Left.Outboard
RightWingCenter = wingflex.Right.Outboard

local MotorAngle = (0.03/0.07)

while wait(0.009) do    
    if b.Position.Y > 1 and b.Position.Y < 9999 then
        print('WingFlexing')
        LeftWingCenter.A.Motor.MaxVelocity = 0.005
        RightWingCenter.A.Motor.MaxVelocity = 0.005
        for x = 0.1,1 do 
         wait(math.random(1,2)) 
            print('WingFlex Motion 1')
            LeftWingCenter.A.Motor.DesiredAngle = (math.random(MotorAngle))
            RightWingCenter.A.Motor.DesiredAngle = (math.random(MotorAngle))
            end
    end
end
0
this is the wrong question, my dude. p0vd 207 — 4y
0
what? VitroxVox 884 — 4y
0
LAMO this is the wrong question BashGuy10 384 — 4y
Ad

Answer this question