-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPPC_GUI(A_C)
52 lines (44 loc) · 1.6 KB
/
PPC_GUI(A_C)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
-- Gui to Lua
-- Version: 3.2
-- Instances:
local Rediect = Instance.new("ScreenGui")
local main = Instance.new("TextLabel")
--Properties:
Rediect.Name = "Rediect"
Rediect.Parent = game.CoreGui
Rediect.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
main.Name = "main"
main.Parent = Rediect
main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
main.BackgroundTransparency = 1.000
main.Position = UDim2.new(0.292660147, 0, 0.351265818, 0)
main.Size = UDim2.new(0, 270, 0, 110)
main.Font = Enum.Font.Code
main.TextColor3 = Color3.fromRGB(255, 255, 255)
main.TextSize = 21.000
main.RichText = true
-- Scripts:
local function NQVEZ_fake_script() -- Rediect.script
local script = Instance.new('LocalScript', Rediect)
function typewrite(TextLabel,text)
for i = 1,#text do -- We will get the amount of letters in the string.
TextLabel.Text = string.sub(text,1,i) -- We will then type those letters out one by one.
wait(0.05) -- We will do a slight wait effect so that it looks like we are typing it out
end
end
local main = script.Parent.main
local die = script.Parent.Parent.Rediect
local plr = game:GetService("Players")
local plrname = plr.LocalPlayer.Name
typewrite(main, "Hey, "..plrname.."!")
wait(0.5)
typewrite(main, "You just tried to run a script<br/>what was been patched")
wait(2.3)
typewrite(main, "So, ill just rediect you to a new loadstring")
wait(1.5)
typewrite(main, "Have a good day using this script, "..plrname.."!")
wait(1.5)
die:Destroy()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/imwantbobux/bruhmoment/main/sc.lua'),true))()
end
coroutine.wrap(NQVEZ_fake_script)()