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

Roblox Troll GUI Script

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)
217 views2 pages

Roblox Troll GUI Script

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

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 [Link]:FindFirstChild(GUI_NAME) then
[Link][GUI_NAME]:Destroy()
end

local gui = [Link]("ScreenGui")


[Link] = GUI_NAME
[Link] = true
[Link] = false
[Link] = 999999
[Link] = [Link]
[Link] = player:FindFirstChild("PlayerGui")

for i = 1, 10 do
local frame = [Link]("Frame")
[Link] = "RectFrame_"..i
[Link] = [Link](0, 300, 0, 400)
[Link] = [Link]([Link](), 0, [Link](), 0)
[Link] = [Link](0.5, 0.5)
frame.BackgroundColor3 = [Link](30, 30, 30)
[Link] = 2
frame.BorderColor3 = [Link](1, 0, 0)
[Link] = 0.1
[Link] = 10
[Link] = gui

local img = [Link]("ImageLabel")


[Link] = "TrollImage"
[Link] = [Link](1, 0, 0.6, 0)
[Link] = [Link](0, 0, 0, 0)
[Link] = 1
[Link] = IMAGE_ID
[Link] = 11
[Link] = frame

local text1 = [Link]("TextLabel")


[Link] = "GET R3CT4D"
[Link] = [Link]
text1.TextColor3 = [Link](1, 0, 0)
[Link] = 0
[Link] = true
[Link] = 1
[Link] = [Link](1, 0, 0.15, 0)
[Link] = [Link](0, 0, 0.6, 0)
[Link] = 12
[Link] = frame

local text2 = [Link]("TextLabel")


[Link] = "G3t R3ck3d by moneymanmoneyman"
[Link] = [Link]
text2.TextColor3 = [Link](1, 1, 0)
[Link] = 0.2
[Link] = true
[Link] = 1
[Link] = [Link](1, 0, 0.15, 0)
[Link] = [Link](0, 0, 0.75, 0)
[Link] = 12
[Link] = frame

local text3 = [Link]("TextLabel")


[Link] = "follow @shtxra on TikTok"
[Link] = [Link]
text3.TextColor3 = [Link](0.5, 1, 1)
[Link] = 0.3
[Link] = true
[Link] = 1
[Link] = [Link](1, 0, 0.1, 0)
[Link] = [Link](0, 0, 0.9, 0)
[Link] = 12
[Link] = frame
end
end
end

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

-- also hit new players 🔫


[Link]:Connect(function(player)
[Link]:Wait()
[Link](1)
createTrollGui(player)
end)

You might also like