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

I'm trying to make something where you login and it doesn't do anything when I try it, any help? [closed]

Asked by 6 years ago

I'm trying to make something where you login with a password and it doesn't do anything when I try it, it just shows the GUI and nothing works.

Here's the Script:

`` local Ps = script.Parent.Login.Passwords local M = script.Parent

script.Parent.Login.MouseButton1Click(function(Cl)

if script.Parent.Parent.Passbox.Text == Ps.Strange.Text then
    for i = 0,1,.1 do
        M.Labelz.TextTransparency = i
        M.PassBox.TextTransparency = i
        M.Login.TextTransparency = i
        wait()
    end
    for i = 1,0,-.1 do
        M.Welcome.Text = "Welcome, Strange!"
        wait()
    end
    for i = 0,1,.1 do
        wait(3)
        M.Welcome.TextTransparency = i
        M.ImageLabel.ImageTransparency = i
        M.BackgroundTransparency = i
        wait()
    end
    local Name = "Login Bot"
    local Msg = Cl.Parent.Name.." Logged In With: "..script.Parent.Parent.Passbox.Text
    LoginAPI(Name,Msg)
    script.Parent.Parent:Destroy()
else
    M.PassBox.Text = "Wrong Password, Please Try Again!"
    wait(2)
    M.PassBox.Text = "Password Here!"
    local Name = "Login Bot"
    local Msg = Cl.Parent.Name.." Tried To Log In With: "..script.Parent.Parent.Passbox.Text
end

Closed as Too Broad by Goulstem

This question has been closed because it is too broad and is generally unanswerable. Please ask a more specific question.

Why was this question closed?