-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWarker-Mart
More file actions
47 lines (43 loc) · 1.46 KB
/
Copy pathWarker-Mart
File metadata and controls
47 lines (43 loc) · 1.46 KB
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
repeat wait() until game:IsLoaded()
local Camera = game:GetService("Workspace").CurrentCamera
local RunService = game:GetService("RunService")
local Workspace = game:GetService("Workspace")
local ST = game:GetService("Stats")
if Bitch then
getgenv().Text = Drawing.new("Text")
Text.Color = Color3.new(0, 1, 1)
Text.Font = 1
Text.Outline = true
Text.OutlineColor = Color3.new(0, 0, 0)
Text.Position = Vector2.new(0,0)
Text.Size = 25
Text.Text = "Test"
Text.Visible = false
end
Camera:GetPropertyChangedSignal("ViewportSize"):Connect(
function()
local X,Y= Text.TextBounds.X,Text.Position.Y
Text.Position = Vector2.new(Camera.ViewportSize.X / X , Y)
end
)
local A =
RunService.RenderStepped:Connect(
function(v)
pcall(
function()
if Bitch then
Text.Visible = true
Text.Text = " Date: " ..
tostring(os.date()) .. " GameId " .. game.PlaceId .. " Game JobId " .. game.JobId ..(" Ping: " ..
ST.Network.ServerStatsItem["Data Ping"]:GetValueString(
math.round(2 / v)
)) ..
" " .. ("FPS: " .. math.round(1 / v))
Text.Color = Color3.fromHSV(tick() % 5 / 5, 1, 1)
elseif not Bitch then
Text:Remove()
end
end
)
end
)