Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
23 views2 pages

Script Latte - Lua

The document contains a Lua script for a Roblox game that creates a trolling GUI for players. It generates multiple frames with images and text that display messages like 'GET R3CT4D' and promotes a TikTok account. The script applies the GUI to all current players and also to new players as they join the game.

Uploaded by

sa.keba75
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views2 pages

Script Latte - Lua

The document contains a Lua script for a Roblox game that creates a trolling GUI for players. It generates multiple frames with images and text that display messages like 'GET R3CT4D' and promotes a TikTok account. The script applies the GUI to all current players and also to new players as they join the game.

Uploaded by

sa.keba75
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

local Players = game:GetService("Players")

local GUI_NAME = "SSGetR3ct4dGui"


local IMAGE_ID = "rbxthumb://type=AvatarHeadShot&id=8784270336&w=420&h=420"

local function createTrollGui(player)


if player:FindFirstChild("PlayerGui") then
if player.PlayerGui:FindFirstChild(GUI_NAME) then
player.PlayerGui[GUI_NAME]:Destroy()
end

local gui = Instance.new("ScreenGui")


gui.Name = GUI_NAME
gui.IgnoreGuiInset = true
gui.ResetOnSpawn = false
gui.DisplayOrder = 999999
gui.ZIndexBehavior = Enum.ZIndexBehavior.Global
gui.Parent = player:FindFirstChild("PlayerGui")

for i = 1, 10 do
local frame = Instance.new("Frame")
frame.Name = "RectFrame_"..i
frame.Size = UDim2.new(0, 300, 0, 400)
frame.Position = UDim2.new(math.random(), 0, math.random(), 0)
frame.AnchorPoint = Vector2.new(0.5, 0.5)
frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
frame.BorderSizePixel = 2
frame.BorderColor3 = Color3.new(1, 0, 0)
frame.BackgroundTransparency = 0.1
frame.ZIndex = 10
frame.Parent = gui

local img = Instance.new("ImageLabel")


img.Name = "TrollImage"
img.Size = UDim2.new(1, 0, 0.6, 0)
img.Position = UDim2.new(0, 0, 0, 0)
img.BackgroundTransparency = 1
img.Image = IMAGE_ID
img.ZIndex = 11
img.Parent = frame

local text1 = Instance.new("TextLabel")


text1.Text = "GET R3CT4D"
text1.Font = Enum.Font.GothamBlack
text1.TextColor3 = Color3.new(1, 0, 0)
text1.TextStrokeTransparency = 0
text1.TextScaled = true
text1.BackgroundTransparency = 1
text1.Size = UDim2.new(1, 0, 0.15, 0)
text1.Position = UDim2.new(0, 0, 0.6, 0)
text1.ZIndex = 12
text1.Parent = frame

local text2 = Instance.new("TextLabel")


text2.Text = "G3t R3ck3d by moneymanmoneyman"
text2.Font = Enum.Font.GothamBold
text2.TextColor3 = Color3.new(1, 1, 0)
text2.TextStrokeTransparency = 0.2
text2.TextScaled = true
text2.BackgroundTransparency = 1
text2.Size = UDim2.new(1, 0, 0.15, 0)
text2.Position = UDim2.new(0, 0, 0.75, 0)
text2.ZIndex = 12
text2.Parent = frame

local text3 = Instance.new("TextLabel")


text3.Text = "follow @shtxra on TikTok"
text3.Font = Enum.Font.Gotham
text3.TextColor3 = Color3.new(0.5, 1, 1)
text3.TextStrokeTransparency = 0.3
text3.TextScaled = true
text3.BackgroundTransparency = 1
text3.Size = UDim2.new(1, 0, 0.1, 0)
text3.Position = UDim2.new(0, 0, 0.9, 0)
text3.ZIndex = 12
text3.Parent = frame
end
end
end

-- blast EVERYONE 💥
for _, player in pairs(Players:GetPlayers()) do
createTrollGui(player)
end

-- also hit new players 🔫


Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Wait()
task.wait(1)
createTrollGui(player)
end)

You might also like