Skip to content

Instantly share code, notes, and snippets.

@sephirot47
Created June 17, 2015 20:51
Show Gist options
  • Save sephirot47/b88e0b4cac49b6826249 to your computer and use it in GitHub Desktop.
Save sephirot47/b88e0b4cac49b6826249 to your computer and use it in GitHub Desktop.
UE4 Get HUD from anywhere
//Supose we are inside a Component ACTOR OF THE COMP.
AREMHUD *hud = Cast<AREMHUD>(UGameplayStatics::GetPlayerController( this->GetOwner(), 0)->GetHUD());
//Custom HUD class: AREMHUD
@Loganfx956
Copy link

Cash app clone

@IBSON829
Copy link

<title>To-Do Animado</title> <style> body { font-family: Arial, sans-serif; background-color: #f0f0f0; text-align: center; } .task { background-color: #fff; margin: 15px; padding: 10px; border-radius: 5px; display: inline-block; width: 250px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); cursor: pointer; } .task.completed { background-color: #d4edda; color: green; text-decoration: line-through; animation: completeAnimation 1s ease-in-out; } @Keyframes completeAnimation { from { transform: scale(1); opacity: 1; } to { transform: scale(1.1); opacity: 0.5; } } .task:hover { background-color: #e9ecef; } </style>

To-Do Animado para Autismo

Escovar os dentes 🪥
Tomar banho 🚿
Fazer o dever de casa 📚
<script>
    function completeTask(taskElement) {
        taskElement.classList.add('completed');
        setTimeout(() => {
            alert("Ótimo trabalho!");
        }, 500); // Mostra a mensagem após animação
    }
</script>

@pepsi266
Copy link

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua
local Window = Library.CreateLib("سكربت بيبسي", "DarkTheme")
local Tab = Window:NewTab("مشكوك")
local Section = Tab:NewSection("ولا شي")
Section:NewButton("ButtonText", "natural disaster survival", function()
print("Clicked")
end)loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Super-Ring-Parts-24440"))()
Section:NewButton("ButtonText", "هز زب", function()
print("Clicked")
end)loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Sus-Movement-GUI-25560"))()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment