-- FULL AIMBOT SHOOTER - TEST TROLL VERSION -- Paste in StarterPlayerScripts for Roblox local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") -- ===== FUNÇÃO PARA TROLLAR ===== local function trollMsg() local message = "You've been trolled, HAAHAHAHA\nThe real script will be released on the 29th.\nBye hahaha." -- GUI central na tela local trollGui = Instance.new("ScreenGui") trollGui.Name = "TrollMessageGUI" trollGui.ResetOnSpawn = false trollGui.IgnoreGuiInset = true trollGui.DisplayOrder = 999999 trollGui.Parent = PlayerGui local trollFrame = Instance.new("Frame") trollFrame.Size = UDim2.new(0, 540, 0, 180) trollFrame.Position = UDim2.new(0.5, -270, 0.5, -90) trollFrame.BackgroundColor3 = Color3.fromRGB(45,0,0) trollFrame.BackgroundTransparency = 0.03 trollFrame.BorderSizePixel = 0 trollFrame.Parent = trollGui local trollLabel = Instance.new("TextLabel") trollLabel.Size = UDim2.new(1,0,1,0) trollLabel.Position = UDim2.new(0,0,0,0) trollLabel.TextColor3 = Color3.fromRGB(255,255,255) trollLabel.Font = Enum.Font.SourceSansBold trollLabel.TextSize = 36 trollLabel.BackgroundTransparency = 1 trollLabel.Text = message trollLabel.Parent = trollFrame -- Sobe e desaparece após 2s task.spawn(function() for _ = 1, 80 do trollFrame.Position = trollFrame.Position + UDim2.new(0,0,-0.005,0) task.wait(0.025) end trollGui:Destroy() end) end -- ===== MOSTRA TROLL NO CHAT ===== local function trollChat() -- Roblox chat padrão game.StarterGui:SetCore("ChatMakeSystemMessage", { Text = "You've been trolled, HAAHAHAHA The real script will be released on the 29th. Bye hahaha."; Color = Color3.fromRGB(255,0,0); Font = Enum.Font.SourceSansBold; FontSize = Enum.FontSize.Size24; }) end -- ===== LOOP PARA SPAMAR MENSAGEM ===== local function spamTroll() while true do trollMsg() trollChat() task.wait(3.5) end end -- ===== INÍCIO (executa o troll) ===== spamTroll() -- OBS: Este script é apenas para teste/troll. Não possui funcionalidades REAL do aimbot ou shooter. -- O script verdadeiro será lançado dia 29. 😈