Skip to content

Instantly share code, notes, and snippets.

View wupsbr's full-sized avatar

David Ruiz wupsbr

View GitHub Profile
@wupsbr
wupsbr / index.html
Created June 2, 2020 11:54
[Prensa - David] // source https://jsbin.com/mewasad
<meta name="description" content="[Prensa - David]">
<div id="x_x_Signature">
<div></div>
<div></div>
<div style="color:black;font-size:12pt;font-family:Calibri,Arial,Helvetica,sans-serif;">
<table style="color:#363636;font-size:medium;font-family:sans-serif;background-color:white;border-collapse:collapse;max-width:580px;line-height:1.5;">
<tbody><tr>
<td>
<table style="color:#323232;width:315px;border-collapse:collapse;line-height:16px;">
<tbody><tr>
@wupsbr
wupsbr / ColorChangeAPI.lua
Created April 8, 2024 05:45
Dev2Blox - ColorChangeAPI
local HttpService = game:GetService("HttpService")
local Module = {}
-- Lista dos nomes de sinais permitidos para atualização
local allowedSignals = {
objSinal1 = true,
objSinal2 = true,
objSinal3 = true,
objSinal4 = true
}
@wupsbr
wupsbr / CheckAPIAndChangeColor.lua
Created April 8, 2024 05:47
Dev2Blox - CheckAPIAndChangeColor
local ColorChangeAPI = require(game.ServerScriptService.ColorChangeAPI)
while true do
ColorChangeAPI.CheckAPIAndChangeColor()
wait(1) -- Espera 5 segundos antes de verificar novamente
end