This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- GolpeFuerteServer.lua (ServerScriptService) | |
| local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
| local Players = game:GetService("Players") | |
| -- Crear RemoteEvent si no existe | |
| local event = ReplicatedStorage:FindFirstChild("GolpeFuerteEvent") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- SuperPunch_Final.lua | |
| -- LocalScript: Botón desplazable "Super Punch" que empuja enemigos con fuerza épica. | |
| -- Pegar en StarterPlayer > StarterPlayerScripts. | |
| local Players = game:GetService("Players") | |
| local UserInputService = game:GetService("UserInputService") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- SanXRButton_Fixed.lua | |
| -- Botón "San XR 🍐" minimalista, desplazable y con clamp para evitar salirse de pantalla. | |
| local Players = game:GetService("Players") | |
| local UserInputService = game:GetService("UserInputService") | |
| local RunService = game:GetService("RunService") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Botón San XR minimalista y desplazable para cualquier servidor | |
| local Players = game:GetService("Players") | |
| local player = Players.LocalPlayer | |
| -- Crear ScreenGui | |
| local screenGui = Instance.new("ScreenGui") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Botón San XR minimalista y desplazable para cualquier servidor | |
| local Players = game:GetService("Players") | |
| local player = Players.LocalPlayer | |
| -- Crear ScreenGui | |
| local screenGui = Instance.new("ScreenGui") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Botón San XR minimalista y desplazable | |
| local Players = game:GetService("Players") | |
| local player = Players.LocalPlayer | |
| -- Crear ScreenGui | |
| local screenGui = Instance.new("ScreenGui") |