Skip to content

Commit

Permalink
Move TextPrompt
Browse files Browse the repository at this point in the history
  • Loading branch information
Expertcoderz authored Dec 12, 2021
1 parent 38a8d33 commit d22ce2f
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions MainModule/Client/UI/Default/TextPrompt.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@

client = nil
service = nil

return function(data)
local gTable
local answer

local window = client.UI.Make("Window",{
Name = data.Name or "Prompt";
Title = data.Title or "Prompt";
Size = data.Size or {225,150};
SizeLocked = true;
OnClose = function()
if not answer then
answer = ""
end
end
})

local label = window:Add("TextLabel",{
Text = data.Question;
Font = "SourceSans";
TextScaled = true;
BackgroundTransparency = 1;
TextWrapped = true;
Size = UDim2.new(1, -10, 1, -35);
})

local input = window:Add("TextBox", {
Text = "";
TextSize = 18;
PlaceholderText = data.PlaceholderText or "";
ClearTextOnFocus = data.ClearTextOnFocus or false;
Size = UDim2.new(1, -40, 0, 25);
Position = UDim2.new(0, 5, 1, -30);
})
input.FocusLost:Connect(function(entered)
if entered then
answer = input.Text
window:Close()
end
end)

local submit = window:Add("TextButton", {
Text = ">";
Font = "Arial";
TextSize = 22;
Size = UDim2.new(0, 25, 0, 25);
Position = UDim2.new(1, -30, 1, -30);
OnClick = function()
answer = input.Text
window:Close()
end;
})

gTable = window.gTable
window:Ready()
repeat wait() until answer
return answer
end

0 comments on commit d22ce2f

Please sign in to comment.