Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- --random system
- function randomString()
- local legth = math.random(2,3)
- local characters = "abcdefghijklmnopqrstuvwyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
- local result = ""
- for i = 1, legth do
- local randomIndex = math.random(1, #characters)
- result = result .. characters:sub(randomIndex, randomIndex)
- end
- return result
- end
- local abcc = randomString()
- print(abcc)
- local Window = Rayfield:CreateWindow({
- Name = "Echo | Hub",
- LoadingTitle = "Echo | Hub",
- LoadingSubtitle = "by Henzo",
- Theme = "Ocean",
- ConfigurationSaving = {
- Enabled = false,
- FolderName = nil,
- FileName = "Echo Hub"
- },
- Discord = {
- Enabled = false,
- Invite = "noinvitelink",
- RememberJoins = true
- },
- KeySystem = true,
- KeySettings = {
- Title = "Key | Echo Hub",
- Subtitle = "Sistema de Chave",
- Note = "Chave no console",
- FileName = "TestKey",
- SaveKey = true,
- GrabKeyFromSite = true,
- Key = tostring(abcc)
- }
- })
- local MainTab = Window:CreateTab("Tsb", nil)
- local MainSection = MainTab:CreateSection("Personagens")
- Rayfield:Notify({
- Title = "Script executado",
- Content = "Bem-vindo ao Echo Hub, criado por Henzo!",
- Duration = 5,
- Image = 13047715178,
- Actions = {
- Ignore = {
- Name = "Entendido!",
- Callback = function()
- print("Entendido!")
- end
- },
- },
- })
- local Scripts = MainTab:CreateButton({
- Name = "Gojo | Saitama",
- Callback = function()
- Rayfield:Notify({
- Title = "Gojo executado",
- Content = "Gojo",
- Duration = 5,
- Image = 13047715178,
- Actions = {
- Ignore = {
- Name = "Entendido!",
- Callback = function()
- print("Entendido!")
- end
- },
- },
- })
- loadstring(game:HttpGet("https://gist.githubusercontent.com/JcBoomin/a63e9ac3e90cef03ecf37e997fd21632/raw/98b567b81f61bb30042e0078b78f3fb24685fb8d/Gojo", true))()
- end,
- })
- local Scripts = MainTab:CreateButton({
- Name = "Hakari | Saitama",
- Callback = function()
- Rayfield:Notify({
- Title = "Hakari executado",
- Content = "Hakari",
- Duration = 5,
- Image = 13047715178,
- Actions = {
- Ignore = {
- Name = "Entendido!",
- Callback = function()
- print("Entendido!")
- end
- },
- },
- })
- loadstring(game:HttpGet("https://raw.githubusercontent.com/damir512/hakari/main/Protected_5980408162046394.txt"))()
- end,
- })
- local Action = MainTab:CreateSection("Extras")
- local Extras = MainTab:CreateButton({
- Name = "No Stun",
- Callback = function()
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:WaitForChild("Humanoid")
- humanoid.WalkSpeed = 30 --speed u want
- local function NoStun()
- if humanoid.WalkSpeed < 29 then --28 is sprint speed
- humanoid.WalkSpeed = 30 --speed u want
- end
- end
- humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(NoStun)
- NoStun()
- end
- humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(NoStun)
- NoStun()
- end,
- })
- Rayfield:Notify({
- Title = "No Stun",
- Content = "No Stun",
- Duration = 5,
- Image = 13047715178,
- Actions = {
- Ignore = {
- Name = "Entendido!",
- Callback = function()
- print("Entendido!")
- end
- },
- },
- })
- end,
- })
- local TPTab = Window:CreateTab("🎲 Diversos", nil)
- local TabSection = TPTab:CreateSection("Principal")
- -- Botão de Rejoin
- local RejoinButton = TPTab:CreateButton({
- Name = "Rejoin Server",
- Callback = function()
- local player = game.Players.LocalPlayer
- game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, player)
- end,
- })
- -- Função No-Clip
- local noClip = false
- local noClipButton = TPTab:CreateButton({
- Name = "Ativar No-Clip",
- Callback = function()
- noClip = not noClip
- if noClip then
- game.StarterGui:SetCore("SendNotification", {Title="Echo Hub"; Text="No-Clip Ativado!"; Duration=5;})
- game:GetService("RunService").Stepped:Connect(function()
- if noClip then
- game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
- end
- end)
- else
- game.StarterGui:SetCore("SendNotification", {Title="Echo Hub"; Text="No-Clip Desativado!"; Duration=5;})
- end
- end,
- })
- -- Botão de Reset Automático
- local resetButton = TPTab:CreateButton({
- Name = "Reset Automático",
- Callback = function()
- local humanoid = game.Players.LocalPlayer.Character.Humanoid
- if humanoid and humanoid.Health <= 10 then
- humanoid.Health = 0
- game.Players.LocalPlayer:LoadCharacter()
- end
- end,
- })
- local Button = TPTab:CreateButton({
- Name = "Em breve"
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement