View difference between Paste ID: y8xUtnT0 and uHAk2Sp9
SHOW: | | - or go back to the newest paste.
1
-- Farewell Infortality.
2
-- Version: 2.82
3
-- Instances:
4
--FE Converter By basstracker1970
5
--Made With Gui To Lua Plugin
6
local ScreenGui = Instance.new("ScreenGui")
7
local TextBox = Instance.new("TextBox")
8
local TextLabel = Instance.new("TextLabel")
9
--Properties:
10-
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
10+
ScreenGui.Parent = game.Players.basstracker1970:WaitForChild("PlayerGui")
11
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
12
13
TextBox.Parent = ScreenGui
14
TextBox.BackgroundColor3 = Color3.new(0, 0.333333, 1)
15
TextBox.BorderColor3 = Color3.new(0, 0.333333, 1)
16
TextBox.BorderSizePixel = 0
17
TextBox.Position = UDim2.new(0.742599726, 0, 0.83808744, 0)
18
TextBox.Size = UDim2.new(0, 200, 0, 50)
19
TextBox.Font = Enum.Font.SourceSans
20
TextBox.Text = ""
21
TextBox.TextColor3 = Color3.new(0, 0, 0)
22
TextBox.TextSize = 14
23
24
TextLabel.Parent = ScreenGui
25
TextLabel.BackgroundColor3 = Color3.new(0, 0.333333, 1)
26
TextLabel.BorderSizePixel = 0
27
TextLabel.Position = UDim2.new(0.742599726, 0, 0.758901358, 0)
28
TextLabel.Size = UDim2.new(0, 200, 0, 50)
29
TextLabel.Font = Enum.Font.SourceSans
30
TextLabel.Text = "FE Script Converter By basstracker1970"
31
TextLabel.TextColor3 = Color3.new(0, 0, 0)
32
TextLabel.TextScaled = true
33
TextLabel.TextSize = 14
34
TextLabel.TextWrapped = true
35
-- Scripts:
36
function SCRIPT_AHJG82_FAKESCRIPT() -- TextBox.Script 
37
	local script = Instance.new('Script')
38
	script.Parent = TextBox
39
	link = script.Parent.Text
40
	script.Parent.FocusLost:Connect(function()
41
	local ScriptLink = ""..link
42
	
43
	--//Do not touch anything below this line, you may break it.
44
	local FeSource = nil;pcall(function()FeSource = game:GetService("HttpService"):GetAsync("https://pastebin.com/raw/V5gzxd1Z")end);
45
	local ScriptSource = nil;pcall(function()ScriptSource = game:GetService("HttpService"):GetAsync(ScriptLink)end);
46
	if not FeSource then error("Failed to grab update! Try again later.",0)end;if not ScriptSource then error("Failed to get link!",0)end;
47
	local FeConversion = loadstring(FeSource);local FeSucc,FeErr = pcall(FeConversion);if not FeSucc then warn(FeErr)error("Failed to initiate! Try again later.",0) end;
48
	local Script = loadstring(ScriptSource);local Succ,Err = pcall(Script);if not Succ then warn(Err)error("Error loading script.",0) end;
49
	end)
50
51
end
52
coroutine.resume(coroutine.create(SCRIPT_AHJG82_FAKESCRIPT))