How do i make a script that load text from pastebin? what i need help with was if the text in the textbox matches text from pastebin text trigger the script
You can use HttpService:GetAsync(). Note that you must use it in a server script.
An example:
Server:
1 | local url = "http://pastebin.com/raw/blabla" |
2 | local pastebinText = game:GetService( "HttpService" ):GetAsync(url, true ) --the "true" as 2nd argument is to prevent it from caching the response, although I guess its not necessary here |
3 |
4 | local remoteFunc = Instance.new( "RemoteFunction" , game:GetService( "ReplicatedStorage" )) |
5 | remoteFunc.Name = "TextRemote" |
6 | remoteFunc.OnServerInvoke = function (plr, text) |
7 | return text = = pastebinText |
8 | end |
Client:
1 | local remoteFunc = game:GetService( "ReplicatedStorage" ):WaitForChild "TextRemote" |
2 | local textBox = script.Parent.TextBox |
3 | local textButton = script.Parent.TextButton |
4 |
5 | textButton.MouseButton 1 Click:Connect( function () |
6 | local isValid = remoteFunc:InvokeServer(textBox.Text) |
7 | print ( "The text is" ,isValid and "valid" or "invalid" ) |
8 | end ) |