forked from eprx/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VortexHub Intro
75 lines (62 loc) · 2.05 KB
/
VortexHub Intro
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
function intro()
-- Gui to Lua
-- Version: 3.2
-- Instances:
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
--Properties:
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Frame.BackgroundTransparency = 1.000
Frame.Position = UDim2.new(0, 0, 0.899999976, 0)
Frame.Size = UDim2.new(0, 330, 0, 191)
TextLabel.Parent = Frame
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.BorderSizePixel = 3
TextLabel.Position = UDim2.new(-10, 0, 0.158000007, 0)
TextLabel.Size = UDim2.new(0, 200, 0, 50)
TextLabel.Font = Enum.Font.Gotham
TextLabel.Text = "Vortex Hub"
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextSize = 20.000
TextLabel.TextStrokeTransparency = 0.500
-- Scripts:
local function SXVR_fake_script() -- TextLabel.LocalScript
local script = Instance.new('LocalScript', TextLabel)
local t = 4; --how long does it take to go through the rainbow
while wait() do
local hue = tick() % t / t
local color = Color3.fromHSV(hue, 1, 1)
script.Parent.TextColor3 = color
end
end
coroutine.wrap(SXVR_fake_script)()
local function ZHGMMIU_fake_script() -- TextLabel.LocalScript
local script = Instance.new('LocalScript', TextLabel)
script.Parent:TweenPosition(UDim2.new(0.5,-170,0,0),"In","Quad",0.5)
wait(4)
script.Parent:TweenPosition(UDim2.new(0.5,-600,0,0),"In","Quad",0.5)
wait(2)
--script.Parent.Parent:Remove()
end
coroutine.wrap(ZHGMMIU_fake_script)()
end
intro()
function antiafk()
spawn(function()
while wait(3) do
local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function()
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)
wait(60000000000000000)
end
end)
end
antiafk()