Last active
November 28, 2024 20:19
-
-
Save vitalii123456/066b9bd2bbbcad3c35389d2fcf8a399e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local test = true | |
local function updateLabelSize(label) | |
label.TextWrapped = true | |
local bounds = game:GetService('TextService'):GetTextSize(label.Text, label.TextSize, label.Font, Vector2.new(label.AbsoluteSize.X, math.huge)) | |
label.Size = UDim2.new(label.Size.X.Scale, 0, 0, bounds.Y) | |
end | |
local function GenerateMsg(msg) | |
local NewMsg = msg | |
NewMsg = string.gsub(NewMsg, "&\lt;", '<') | |
NewMsg = string.gsub(NewMsg, "&\gt;", '>') | |
NewMsg = string.gsub(NewMsg, '<Red>', "<font color='rgb(255, 0, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Green>', "<font color='rgb(0, 255, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Blue>', "<font color='rgb(0, 0, 255)'>") | |
NewMsg = string.gsub(NewMsg, '<White>', "<font color='rgb(255, 255, 255)'>") | |
NewMsg = string.gsub(NewMsg, '<Yellow>', "<font color='rgb(255, 255, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Purple>', "<font color='rgb(128, 0, 128)'>") | |
NewMsg = string.gsub(NewMsg, '<Orange>', "<font color='rgb(255, 165, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Black>', "<font color='rgb(0, 0, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Cyan>', "<font color='rgb(0, 255, 255)'>") | |
NewMsg = string.gsub(NewMsg, '<Magenta>', "<font color='rgb(255, 0, 255)'>") | |
NewMsg = string.gsub(NewMsg, '<Pink>', "<font color='rgb(255, 0, 255)'>") | |
NewMsg = string.gsub(NewMsg, '<Brown>', "<font color='rgb(165, 42, 42)'>") | |
NewMsg = string.gsub(NewMsg, '<Gray>', "<font color='rgb(128, 128, 128)'>") | |
NewMsg = string.gsub(NewMsg, '<Lime>', "<font color='rgb(0, 255, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Teal>', "<font color='rgb(0, 128, 128)'>") | |
NewMsg = string.gsub(NewMsg, '<Lavender>', "<font color='rgb(230, 230, 250)'>") | |
NewMsg = string.gsub(NewMsg, '<Maroon>', "<font color='rgb(128, 0, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Navy>', "<font color='rgb(0, 0, 128)'>") | |
NewMsg = string.gsub(NewMsg, '<Olive>', "<font color='rgb(128, 128, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Gold>', "<font color='rgb(255, 215, 0)'>") | |
NewMsg = string.gsub(NewMsg, '<Salmon>', "<font color='rgb(250, 128, 114)'>") | |
NewMsg = string.gsub(NewMsg, '<Crimson>', "<font color='rgb(220, 20, 60)'>") | |
NewMsg = string.gsub(NewMsg, '<Coral>', "<font color='rgb(255, 127, 80)'>") | |
NewMsg = string.gsub(NewMsg, '<Khaki>', "<font color='rgb(240, 230, 140)'>") | |
NewMsg = string.gsub(NewMsg, '<Mint>', "<font color='rgb(189, 252, 201)'>") | |
NewMsg = string.gsub(NewMsg, '<Ivory>', "<font color='rgb(255, 255, 240)'>") | |
NewMsg = string.gsub(NewMsg, '<Periwinkle>', "<font color='rgb(204, 204, 255)'>") | |
NewMsg = string.gsub(NewMsg, '<Turquoise>', "<font color='rgb(64, 224, 208)'>") | |
NewMsg = string.gsub(NewMsg, '<SkyBlue>', "<font color='rgb(135, 206, 235)'>") | |
NewMsg = string.gsub(NewMsg, '<Plum>', "<font color='rgb(221, 160, 221)'>") | |
NewMsg = string.gsub(NewMsg, '<Tan>', "<font color='rgb(210, 180, 140)'>") | |
NewMsg = string.gsub(NewMsg, '<Beige>', "<font color='rgb(245, 245, 220)'>") | |
NewMsg = string.gsub(NewMsg, '<Chocolate>', "<font color='rgb(210, 105, 30)'>") | |
NewMsg = string.gsub(NewMsg, '<SeaGreen>', "<font color='rgb(46, 139, 87)'>") | |
NewMsg = string.gsub(NewMsg, '<ForestGreen>', "<font color='rgb(34, 139, 34)'>") | |
NewMsg = string.gsub(NewMsg, '<SlateGray>', "<font color='rgb(112, 128, 144)'>") | |
NewMsg = string.gsub(NewMsg, '<Rose>', "<font color='rgb(255, 228, 225)'>") | |
NewMsg = string.gsub(NewMsg, '<Fuchsia>', "<font color='rgb(255, 0, 255)'>") | |
NewMsg = string.gsub(NewMsg, '</End>', "</font>") | |
return NewMsg | |
end | |
local function Notification(message, timed, Time) | |
spawn(function() | |
local ScreenGui | |
if game.Players.LocalPlayer.PlayerGui:FindFirstChild('Notification') then | |
ScreenGui = game.Players.LocalPlayer.PlayerGui:FindFirstChild('Notification') | |
else | |
ScreenGui = Instance.new('ScreenGui') | |
ScreenGui.Name = 'Notification' | |
ScreenGui.ResetOnSpawn = false | |
ScreenGui.IgnoreGuiInset = true | |
ScreenGui.Enabled = true | |
ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui | |
end | |
local frame = Instance.new('Frame') | |
frame.Parent = ScreenGui | |
frame.Size = UDim2.new(0.4,0,0.05,0) | |
frame.Position = UDim2.new(0.3,0,0.-0.1,0) | |
frame.BackgroundColor3 = Color3.fromRGB(0,0,0) | |
frame.BackgroundTransparency = 0.5 | |
frame.BorderSizePixel = 0 | |
frame.Name = 'Notification'..#ScreenGui:GetChildren() | |
local text = Instance.new('TextLabel') | |
text.Parent = ScreenGui | |
text.Size = UDim2.new(0.4,0,1,0) | |
text.BackgroundTransparency = 1 | |
text.TextSize = 35 | |
text.TextColor3 = Color3.fromRGB(255,255,255) | |
text.TextStrokeTransparency = 0 | |
text.TextStrokeColor3 = Color3.fromRGB(0,0,0) | |
text.FontFace = Font.fromName('FredokaOne') | |
text.Text = message | |
updateLabelSize(text) | |
frame.Size = text.Size | |
text.Parent = frame | |
text.Size = UDim2.new(1,0,1,0) | |
local ended = Instance.new('BoolValue') | |
ended.Name = 'Ended' | |
ended.Value = false | |
ended.Parent = frame | |
Instance.new('UICorner').Parent = frame | |
local uistroke = Instance.new('UIStroke') | |
uistroke.Thickness = 2.5 | |
uistroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border | |
uistroke.Parent = frame | |
local pos = 0.05 | |
for i, t in pairs(ScreenGui:GetChildren()) do | |
if t.TextLabel.Text ~= frame.TextLabel.Text and t:FindFirstChild('Ended').Value == false then | |
if t:FindFirstChild('TextButton') then | |
pos += t.Size.Y.Scale + 0.04 | |
else | |
pos += t.Size.Y.Scale + 0.015 | |
end | |
end | |
end | |
frame:TweenPosition(UDim2.new(0.3,0,pos,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
if timed == true then | |
wait(1+Time) | |
frame:TweenPosition(UDim2.new(0.3,0,0,-frame.Size.Y.Offset), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
ended.Value = true | |
wait(1) | |
if #ScreenGui:GetChildren() == 1 then | |
ScreenGui:Destroy() | |
elseif #ScreenGui:GetChildren() > 1 then | |
for i, t in pairs(ScreenGui:GetChildren()) do | |
if t:IsA('Frame') and t.Name ~= frame.Name and t:FindFirstChild('Ended').Value == false then | |
t:TweenPosition(UDim2.new(0.3,0,pos,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1, false) | |
if t:FindFirstChild('TextButton') then | |
pos += t.Size.Y.Scale + 0.04 | |
else | |
pos += t.Size.Y.Scale + 0.015 | |
end | |
end | |
end | |
end | |
frame:Destroy() | |
else | |
local button = Instance.new('TextButton') | |
button.Parent = frame | |
button.Size = UDim2.new(0.25,0,0.5,0) | |
button.Position = UDim2.new(0.75,0,1.15,0) | |
button.BackgroundTransparency = 0.25 | |
button.FontFace = Font.fromName('FredokaOne') | |
button.TextScaled = true | |
button.Visible = false | |
Instance.new('UICorner').Parent = button | |
local uistroke = Instance.new('UIStroke') | |
uistroke.Thickness = 2.5 | |
uistroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border | |
uistroke.Parent = button | |
button.Text = 'Close' | |
button.MouseButton1Click:Connect(function() | |
button:Destroy() | |
frame:TweenPosition(UDim2.new(0.3,0,0,-frame.Size.Y.Offset), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
ended.Value = true | |
if #ScreenGui:GetChildren() > 1 then | |
local pos = 0.05 | |
for i, t in pairs(ScreenGui:GetChildren()) do | |
if t:IsA('Frame') and t.Name ~= frame.Name and t:FindFirstChild('Ended').Value == false then | |
t:TweenPosition(UDim2.new(0.3,0,pos,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1, false) | |
if t:FindFirstChild('TextButton') then | |
pos += t.Size.Y.Scale + 0.04 | |
else | |
pos += t.Size.Y.Scale + 0.015 | |
end | |
end | |
end | |
end | |
wait(1) | |
if #ScreenGui:GetChildren() == 1 then | |
ScreenGui:Destroy() | |
end | |
frame:Destroy() | |
end) | |
wait(1) | |
button.Visible = true | |
end | |
end) | |
end | |
local IsTsb = false | |
if game.PlaceId == 10449761463 and game.GameId == 3808081382 then | |
test = false | |
IsTsb = true | |
elseif game.PlaceId == 85731059341721 and game.GameId == 6563827196 then | |
test = true | |
IsTsb = true | |
else | |
Notification('Please execute the script in The Strongest Battleground, not duels or any other place/game.', false) | |
end | |
local v = '1.6.8' | |
local plr = game.Players.LocalPlayer | |
local function Load() | |
if not game.Players.LocalPlayer.PlayerGui:FindFirstChild("tea's script") and IsTsb == true then | |
local plrChar = plr.Character | |
local mouse = plr:GetMouse() | |
-- UI | |
local ScreenGui = Instance.new('ScreenGui') | |
local on = Instance.new('BoolValue', ScreenGui) | |
local frame = Instance.new('Frame') | |
local frame2 = Instance.new('Frame') | |
local SettingsFrame = Instance.new('Frame') | |
local AwakeningName = Instance.new('TextBox') | |
local ScriptNameTopTag = Instance.new('TextLabel') | |
local TargetButton = Instance.new('TextButton') | |
local BladeTp = Instance.new('TextButton') | |
local DCTp = Instance.new('TextButton') | |
local TpToMap = Instance.new('TextButton') | |
local Destroy = Instance.new('TextButton') | |
local Type = Instance.new('TextButton') | |
local TargetFrame = Instance.new('ScrollingFrame') | |
local Tools = Instance.new('TextButton') | |
local ToolsFrame = Instance.new('ScrollingFrame') | |
local WalkSpeed = Instance.new('TextBox') | |
local JumpPower = Instance.new('TextBox') | |
local Settings = Instance.new('TextButton') | |
local TBKeyCode = Instance.new('TextButton') | |
local BTKeyCode = Instance.new('TextButton') | |
local DCTPKeyCode = Instance.new('TextButton') | |
local TTMKeyCode = Instance.new('TextButton') | |
local Esp = Instance.new('TextButton') | |
local EspHighlightColorSetting = Instance.new('TextButton') | |
local EspHighlightSwitch = Instance.new('TextButton') | |
local Noclip = Instance.new('TextButton') | |
local NoclipKeyCode = Instance.new('TextButton') | |
local HealthDisplay = Instance.new('TextLabel') | |
local SpawnAtSameLocation = Instance.new('TextButton') | |
local SafeZone = Instance.new('TextButton') | |
local SafeZoneHealthB = Instance.new('TextBox') | |
local CTRLCLICKtp = Instance.new('TextButton') | |
local AlwaysOnCoreGUI = Instance.new('TextButton') | |
-- ScreenGui | |
ScreenGui.Name = "tea's script" | |
ScreenGui.IgnoreGuiInset = true | |
ScreenGui.ResetOnSpawn = false | |
ScreenGui.Enabled = true | |
ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui | |
on.Name = 'On' | |
on.Value = true | |
-- Welcome Screen | |
if test == false then | |
local key = 'T3As-hb' | |
local KeyBox = Instance.new('TextBox') | |
KeyBox.Text = '' | |
KeyBox.BackgroundColor3 = Color3.fromRGB(35,35,35) | |
KeyBox.Size = UDim2.new(0.75,0,0.25,0) | |
KeyBox.Position = UDim2.new(0.125,0,0.7,0) | |
KeyBox.Visible = false | |
KeyBox.Font = Enum.Font.FredokaOne | |
KeyBox.TextSize = 22.5 | |
KeyBox.TextColor3 = Color3.fromRGB(255,255,255) | |
KeyBox.Interactable = false | |
KeyBox.ClearTextOnFocus = false | |
KeyBox.TextWrapped = true | |
KeyBox.PlaceholderText = 'Enter key' | |
local KeyBoxStroke = Instance.new('UIStroke', KeyBox) | |
KeyBoxStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border | |
KeyBoxStroke.Color = Color3.fromRGB(45,45,45) | |
KeyBoxStroke.Thickness = 2.5 | |
Instance.new('UICorner').Parent = KeyBox | |
local WelcomeText = Instance.new('TextLabel') | |
KeyBox.Parent = WelcomeText | |
WelcomeText.Size = UDim2.new(0.2,0,0.2,0) | |
WelcomeText.Position = UDim2.new(0.4,0,0.4,0) | |
WelcomeText.BackgroundColor3 = Color3.fromRGB(25,25,25) | |
WelcomeText.TextColor3 = Color3.fromRGB(255,255,255) | |
WelcomeText.Parent = ScreenGui | |
WelcomeText.Text = 'Welcome to '.."tea's script"..'! (v'..v..')' | |
WelcomeText.TextScaled = true | |
WelcomeText.FontFace = Font.fromName('FredokaOne') | |
WelcomeText.ZIndex = 2 | |
Instance.new('UICorner').Parent = WelcomeText | |
WelcomeText.TextTransparency = 1 | |
game.TweenService:Create(WelcomeText, TweenInfo.new(0), {Transparency=1}):Play() | |
wait(1) | |
game.TweenService:Create(WelcomeText, TweenInfo.new(1.5), {Transparency=0}):Play() | |
wait(2.5) | |
if plr.UserId ~= 2442698162 then | |
game.TweenService:Create(WelcomeText, TweenInfo.new(1.5), {TextTransparency=1}):Play() | |
wait(1.5) | |
WelcomeText.Text = 'Please, enter key:' | |
game.TweenService:Create(WelcomeText, TweenInfo.new(1.5), {TextTransparency=0}):Play() | |
wait(1.5) | |
KeyBox.Visible = true | |
KeyBox:TweenPosition(UDim2.new(0.125,0,1.05,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
wait(1) | |
local InputKey = KeyBox.Text | |
local changed = false | |
KeyBox.Changed:Connect(function() | |
if changed == false then | |
changed = true | |
KeyBox.Text = KeyBox.Text:gsub(' ', '') | |
updateLabelSize(KeyBox) | |
KeyBox.Size = KeyBox.Size+UDim2.new(0,0,0.125,0) | |
wait() | |
changed = false | |
end | |
end) | |
KeyBox.FocusLost:Connect(function(enter) | |
if enter then | |
InputKey = KeyBox.Text | |
end | |
end) | |
KeyBox.Interactable = true | |
KeyBox:CaptureFocus() | |
local previousKey = InputKey | |
repeat | |
wait() | |
if previousKey ~= InputKey then | |
if InputKey == key then | |
KeyBoxStroke.Color = Color3.fromRGB(0,255,0) | |
else | |
KeyBoxStroke.Color = Color3.fromRGB(255,0,0) | |
KeyBox.Text = 'Incorrect!' | |
InputKey = '' | |
spawn(function() | |
KeyBox.Interactable = false | |
KeyBox:TweenPosition(UDim2.new(0.11,0,1.05,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1) | |
wait(0.1) | |
KeyBox:TweenPosition(UDim2.new(0.13,0,1.05,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1) | |
wait(0.1) | |
KeyBox:TweenPosition(UDim2.new(0.125,0,1.05,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.1) | |
wait(0.8) | |
KeyBox.Text = '' | |
KeyBox.Interactable = true | |
KeyBox:CaptureFocus() | |
KeyBoxStroke.Color = Color3.fromRGB(45,45,45) | |
end) | |
end | |
end | |
previousKey = InputKey | |
until InputKey == key | |
KeyBox.Interactable = false | |
KeyBox:TweenPosition(UDim2.new(0.125,0,0.95-KeyBox.Size.X.Scale,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
wait(1) | |
end | |
KeyBox:Destroy() | |
game.TweenService:Create(WelcomeText, TweenInfo.new(1.5), {TextTransparency=1}):Play() | |
wait(1.5) | |
WelcomeText:TweenSizeAndPosition(UDim2.new(0.6,0,0.3,0), UDim2.new(0.2,0,0.575,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
game.TweenService:Create(WelcomeText, TweenInfo.new(1), {BackgroundColor3=Color3.fromRGB(20,20,20)}):Play() | |
wait(1) | |
WelcomeText:Destroy() | |
else | |
local WelcomeText = Instance.new('TextLabel') | |
WelcomeText.Size = UDim2.new(0.2,0,0.2,0) | |
WelcomeText.Position = UDim2.new(0.4,0,0.4,0) | |
WelcomeText.BackgroundColor3 = Color3.fromRGB(25,25,25) | |
WelcomeText.TextColor3 = Color3.fromRGB(255,255,255) | |
WelcomeText.Parent = ScreenGui | |
WelcomeText.Text = 'Welcome to '.."tea's script"..'! (v'..v..')' | |
WelcomeText.TextScaled = true | |
WelcomeText.FontFace = Font.fromName('FredokaOne') | |
Instance.new('UICorner').Parent = WelcomeText | |
WelcomeText.TextTransparency = 1 | |
game.TweenService:Create(WelcomeText, TweenInfo.new(0), {Transparency=1}):Play() | |
wait(0.1) | |
game.TweenService:Create(WelcomeText, TweenInfo.new(0.25), {Transparency=0}):Play() | |
wait(0.3) | |
game.TweenService:Create(WelcomeText, TweenInfo.new(0.25), {TextTransparency=1}):Play() | |
wait(0.3) | |
WelcomeText:TweenSizeAndPosition(UDim2.new(0.6,0,0.3,0), UDim2.new(0.2,0,0.575,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
game.TweenService:Create(WelcomeText, TweenInfo.new(0.25), {BackgroundColor3=Color3.fromRGB(20,20,20)}):Play() | |
wait(0.3) | |
WelcomeText:Destroy() | |
end | |
-- ScriptNameTopTag | |
ScriptNameTopTag.Position = UDim2.new(0.195,0,0.5725,0) | |
ScriptNameTopTag.Size = UDim2.new(0.61,0,0.05,0) | |
ScriptNameTopTag.Text = "Tea's script" | |
ScriptNameTopTag.TextScaled = true | |
ScriptNameTopTag.FontFace = Font.fromName('FredokaOne') | |
ScriptNameTopTag.Parent = ScreenGui | |
ScriptNameTopTag.BackgroundColor3 = Color3.fromRGB(20,20,20) | |
ScriptNameTopTag.TextColor3 = Color3.fromRGB(200,200,200) | |
ScriptNameTopTag.TextXAlignment = Enum.TextXAlignment.Left | |
ScriptNameTopTag.TextYAlignment = Enum.TextYAlignment.Top | |
ScriptNameTopTag.Name = 'ScriptName' | |
ScriptNameTopTag.Visible = false | |
-- Frame2 | |
frame2.Parent = ScreenGui | |
frame2.Name = 'FillFrame' | |
frame2.Size = UDim2.new(0.61,0,0.305,0) | |
frame2.Position = UDim2.new(0.195,0,0.5725,0) | |
frame2.BackgroundColor3 = Color3.fromRGB(20,20,20) | |
-- Frame | |
frame.Parent = ScreenGui | |
frame.Name = 'MainFrame' | |
frame.Size = UDim2.new(0.6,0,0.3,0) | |
frame.Position = UDim2.new(0.2,0,0.575,0) | |
frame.BackgroundColor3 = Color3.fromRGB(20,20,20) | |
-- SettingsFrame | |
SettingsFrame.Parent = ScreenGui | |
SettingsFrame.Name = 'SettingsFrame' | |
SettingsFrame.Size = UDim2.new(0.6,0,0.3,0) | |
SettingsFrame.Position = UDim2.new(0.2,0,0.575,0) | |
SettingsFrame.BackgroundColor3 = Color3.fromRGB(20,20,20) | |
SettingsFrame.Visible = false | |
-- TargetFrame | |
TargetFrame.Position = UDim2.new(0,0,1,0) | |
TargetFrame.Size = UDim2.new(1,0,0,0) | |
TargetFrame.Parent = TargetButton | |
TargetFrame.Name = 'Targets' | |
TargetFrame.BackgroundColor3 = Color3.fromRGB(100,100,100) | |
TargetFrame.ScrollBarThickness = 0 | |
TargetFrame.BorderSizePixel = 0 | |
TargetFrame.AutomaticCanvasSize = Enum.AutomaticSize.Y | |
local listlayout = Instance.new('UIListLayout') | |
listlayout.Padding = UDim.new(0,5) | |
listlayout.SortOrder = Enum.SortOrder.LayoutOrder | |
listlayout.FillDirection = Enum.FillDirection.Vertical | |
listlayout.Parent = script | |
listlayout:Clone().Parent = TargetFrame | |
-- ToolsFrame | |
ToolsFrame.Position = UDim2.new(0,0,1,0) | |
ToolsFrame.Size = UDim2.new(1,0,0,0) | |
ToolsFrame.Parent = Tools | |
ToolsFrame.Name = 'Tools' | |
ToolsFrame.BackgroundColor3 = Color3.fromRGB(100,100,100) | |
ToolsFrame.ScrollBarThickness = 0 | |
ToolsFrame.BorderSizePixel = 0 | |
ToolsFrame.AutomaticCanvasSize = Enum.AutomaticSize.Y | |
listlayout:Clone().Parent = ToolsFrame | |
-- TargetButton | |
TargetButton.Position = UDim2.new(0.005, 0,0.075, 0) | |
TargetButton.Size = UDim2.new(0.19, 0,0.15, 0) | |
TargetButton.Text = 'Target (E) (Off)' | |
TargetButton.TextScaled = true | |
TargetButton.FontFace = Font.fromName('FredokaOne') | |
TargetButton.Parent = frame | |
TargetButton.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
TargetButton.TextColor3 = Color3.fromRGB(200,200,200) | |
TargetButton.Name = 'TargetButton' | |
-- TpToMap | |
TpToMap.Position = UDim2.new(0.2, 0,0.075, 0) | |
TpToMap.Size = UDim2.new(0.19, 0,0.15, 0) | |
TpToMap.Text = 'Tp to map (C)' | |
TpToMap.TextScaled = true | |
TpToMap.FontFace = Font.fromName('FredokaOne') | |
TpToMap.Parent = frame | |
TpToMap.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
TpToMap.TextColor3 = Color3.fromRGB(200,200,200) | |
TpToMap.Name = 'TpToMap' | |
-- Death Counter Tp | |
DCTp.Position = UDim2.new(0.4, 0,0.075, 0) | |
DCTp.Size = UDim2.new(0.19, 0,0.15, 0) | |
DCTp.Text = 'Tp to death counter cutscene (T)' | |
DCTp.TextScaled = true | |
DCTp.FontFace = Font.fromName('FredokaOne') | |
DCTp.Parent = frame | |
DCTp.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
DCTp.TextColor3 = Color3.fromRGB(200,200,200) | |
DCTp.Name = 'DeathCounterTp' | |
-- BladeTp | |
BladeTp.Position = UDim2.new(0.6, 0,0.075, 0) | |
BladeTp.Size = UDim2.new(0.19, 0,0.15, 0) | |
BladeTp.Text = 'Tp to blade master cutscene (R)' | |
BladeTp.TextScaled = true | |
BladeTp.FontFace = Font.fromName('FredokaOne') | |
BladeTp.Parent = frame | |
BladeTp.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
BladeTp.TextColor3 = Color3.fromRGB(200,200,200) | |
BladeTp.Name = 'BladeTp' | |
-- Destroy | |
Destroy.Position = UDim2.new(0.8, 0,0.075, 0) | |
Destroy.Size = UDim2.new(0.19, 0,0.15, 0) | |
Destroy.Text = 'Destroy Script' | |
Destroy.TextScaled = true | |
Destroy.FontFace = Font.fromName('FredokaOne') | |
Destroy.Parent = frame | |
Destroy.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
Destroy.TextColor3 = Color3.fromRGB(200,200,200) | |
Destroy.Name = 'DestroyScript' | |
-- Teleport Type | |
Type.Position = UDim2.new(0.005, 0,0.25, 0) | |
Type.Size = UDim2.new(0.19, 0,0.15, 0) | |
Type.Text = 'Type: Spam Teleport' | |
Type.TextScaled = true | |
Type.FontFace = Font.fromName('FredokaOne') | |
Type.Parent = frame | |
Type.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
Type.TextColor3 = Color3.fromRGB(200,200,200) | |
Type.Name = 'Type' | |
-- WalkSpeed | |
WalkSpeed.Size = UDim2.new(0.19, 0,0.15, 0) | |
WalkSpeed.PlaceholderText = 'WalkSpeed (Nothing to default)' | |
WalkSpeed.Text = '' | |
WalkSpeed.TextScaled = true | |
WalkSpeed.FontFace = Font.fromName('FredokaOne') | |
WalkSpeed.Parent = frame | |
WalkSpeed.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
WalkSpeed.TextColor3 = Color3.fromRGB(200,200,200) | |
WalkSpeed.ClearTextOnFocus = false | |
WalkSpeed.Name = 'WalkSpeed' | |
-- JumpPower | |
JumpPower.Size = UDim2.new(0.19, 0,0.15, 0) | |
JumpPower.PlaceholderText = 'JumpPower (Nothing to default) (Bad working)' | |
JumpPower.Text = '' | |
JumpPower.TextScaled = true | |
JumpPower.FontFace = Font.fromName('FredokaOne') | |
JumpPower.Parent = frame | |
JumpPower.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
JumpPower.TextColor3 = Color3.fromRGB(200,200,200) | |
JumpPower.ClearTextOnFocus = false | |
JumpPower.Name = 'JumpPower' | |
-- Settings | |
Settings.Position = UDim2.new(0.7, 0, 0, 0) | |
Settings.Size = UDim2.new(0.3,0,1,0) | |
Settings.Text = 'Settings' | |
Settings.TextScaled = true | |
Settings.FontFace = Font.fromName('FredokaOne') | |
Settings.Parent = ScriptNameTopTag | |
Settings.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
Settings.TextColor3 = Color3.fromRGB(200,200,200) | |
Settings.Name = 'Settings' | |
-- TBKeyCode | |
TBKeyCode.Position = UDim2.new(0.005, 0,0.075, 0) | |
TBKeyCode.Size = UDim2.new(0.19, 0,0.15, 0) | |
TBKeyCode.Text = 'Target Key Code Change' | |
TBKeyCode.TextScaled = true | |
TBKeyCode.FontFace = Font.fromName('FredokaOne') | |
TBKeyCode.Parent = SettingsFrame | |
TBKeyCode.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
TBKeyCode.TextColor3 = Color3.fromRGB(200,200,200) | |
TBKeyCode.Name = 'TargetKeyCode' | |
-- TTMKeyCode | |
TTMKeyCode.Position = UDim2.new(0.2, 0,0.075, 0) | |
TTMKeyCode.Size = UDim2.new(0.19, 0,0.15, 0) | |
TTMKeyCode.Text = 'Tp To Map Key Code Change' | |
TTMKeyCode.TextScaled = true | |
TTMKeyCode.FontFace = Font.fromName('FredokaOne') | |
TTMKeyCode.Parent = SettingsFrame | |
TTMKeyCode.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
TTMKeyCode.TextColor3 = Color3.fromRGB(200,200,200) | |
TTMKeyCode.Name = 'TpToMapKeyCode' | |
-- DCTPKeyCode | |
DCTPKeyCode.Position = UDim2.new(0.4, 0,0.075, 0) | |
DCTPKeyCode.Size = UDim2.new(0.19, 0,0.15, 0) | |
DCTPKeyCode.Text = 'Tp To Death Counter Cutscene Key Code Change' | |
DCTPKeyCode.TextScaled = true | |
DCTPKeyCode.FontFace = Font.fromName('FredokaOne') | |
DCTPKeyCode.Parent = SettingsFrame | |
DCTPKeyCode.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
DCTPKeyCode.TextColor3 = Color3.fromRGB(200,200,200) | |
DCTPKeyCode.Name = 'TpToDeathCounterCutsceneKeyCode' | |
-- BladeTp | |
BTKeyCode.Position = UDim2.new(0.6, 0,0.075, 0) | |
BTKeyCode.Size = UDim2.new(0.19, 0,0.15, 0) | |
BTKeyCode.Text = 'Tp To Blade Master Cutscene Key Code Change' | |
BTKeyCode.TextScaled = true | |
BTKeyCode.FontFace = Font.fromName('FredokaOne') | |
BTKeyCode.Parent = SettingsFrame | |
BTKeyCode.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
BTKeyCode.TextColor3 = Color3.fromRGB(200,200,200) | |
BTKeyCode.Name = 'TpToBladeMasterCutsceneKeyCode' | |
-- Esp | |
Esp.Position = UDim2.new(0.6, 0,0.25, 0) | |
Esp.Size = UDim2.new(0.19, 0,0.15, 0) | |
Esp.Text = 'ESP (Off)' | |
Esp.TextScaled = true | |
Esp.FontFace = Font.fromName('FredokaOne') | |
Esp.Parent = frame | |
Esp.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
Esp.TextColor3 = Color3.fromRGB(200,200,200) | |
Esp.Name = 'Esp' | |
-- EspHighlightColorSetting | |
EspHighlightColorSetting.Position = UDim2.new(0.8, 0,0.075, 0) | |
EspHighlightColorSetting.Size = UDim2.new(0.19, 0,0.15, 0) | |
EspHighlightColorSetting.Text = 'ESP Highlight Color: Red' | |
EspHighlightColorSetting.TextScaled = true | |
EspHighlightColorSetting.FontFace = Font.fromName('FredokaOne') | |
EspHighlightColorSetting.Parent = SettingsFrame | |
EspHighlightColorSetting.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
EspHighlightColorSetting.TextColor3 = Color3.fromRGB(200,200,200) | |
EspHighlightColorSetting.Name = 'EspHighlightColor' | |
-- EspHighlightSwitch | |
EspHighlightSwitch.Position = UDim2.new(0.005, 0,0.25, 0) | |
EspHighlightSwitch.Size = UDim2.new(0.19, 0,0.15, 0) | |
EspHighlightSwitch.Text = 'ESP Highlight (On)' | |
EspHighlightSwitch.TextScaled = true | |
EspHighlightSwitch.FontFace = Font.fromName('FredokaOne') | |
EspHighlightSwitch.Parent = SettingsFrame | |
EspHighlightSwitch.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
EspHighlightSwitch.TextColor3 = Color3.fromRGB(200,200,200) | |
EspHighlightSwitch.Name = 'EspHighlightSwitch' | |
-- NoclipKeyCode | |
NoclipKeyCode.Position = UDim2.new(0.2, 0,0.25, 0) | |
NoclipKeyCode.Size = UDim2.new(0.19, 0,0.15, 0) | |
NoclipKeyCode.Text = 'Noclip Key Code Change' | |
NoclipKeyCode.TextScaled = true | |
NoclipKeyCode.FontFace = Font.fromName('FredokaOne') | |
NoclipKeyCode.Parent = SettingsFrame | |
NoclipKeyCode.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
NoclipKeyCode.TextColor3 = Color3.fromRGB(200,200,200) | |
NoclipKeyCode.Name = 'NoclipKeyCode' | |
-- Noclip | |
Noclip.Position = UDim2.new(0.8, 0,0.25, 0) | |
Noclip.Size = UDim2.new(0.19, 0,0.15, 0) | |
Noclip.Text = 'Noclip (Off) (Z)' | |
Noclip.TextScaled = true | |
Noclip.FontFace = Font.fromName('FredokaOne') | |
Noclip.Parent = frame | |
Noclip.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
Noclip.TextColor3 = Color3.fromRGB(200,200,200) | |
Noclip.Name = 'Noclip' | |
-- AwakeningName | |
AwakeningName.Size = UDim2.new(0.19, 0,0.15, 0) | |
AwakeningName.PlaceholderText = 'Awakening Name (Nothing To Default)' | |
AwakeningName.ClearTextOnFocus = false | |
AwakeningName.TextScaled = true | |
AwakeningName.FontFace = Font.fromName('FredokaOne') | |
AwakeningName.Parent = frame | |
AwakeningName.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
AwakeningName.TextColor3 = Color3.fromRGB(200,200,200) | |
AwakeningName.Text = '' | |
AwakeningName.Name = 'AwakeningName' | |
-- Tools | |
Tools.Size = UDim2.new(0.19, 0,0.15, 0) | |
Tools.Text = 'Change Tools Name' | |
Tools.TextScaled = true | |
Tools.FontFace = Font.fromName('FredokaOne') | |
Tools.Parent = frame | |
Tools.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
Tools.TextColor3 = Color3.fromRGB(200,200,200) | |
Tools.Name = 'ChangeToolsname' | |
-- SafeZoneHealthB | |
SafeZoneHealthB.Size = UDim2.new(0.19, 0,0.15, 0) | |
SafeZoneHealthB.PlaceholderText = 'Safe Zone Health (30 Default)(Nothing to default)' | |
SafeZoneHealthB.Text = '' | |
SafeZoneHealthB.TextScaled = true | |
SafeZoneHealthB.FontFace = Font.fromName('FredokaOne') | |
SafeZoneHealthB.Parent = frame | |
SafeZoneHealthB.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
SafeZoneHealthB.TextColor3 = Color3.fromRGB(200,200,200) | |
SafeZoneHealthB.ClearTextOnFocus = false | |
SafeZoneHealthB.Name = 'SafeZoneHealth' | |
-- SafeZone | |
SafeZone.Size = UDim2.new(0.19, 0,0.15, 0) | |
SafeZone.Text = 'Safe Zone: Off' | |
SafeZone.TextScaled = true | |
SafeZone.FontFace = Font.fromName('FredokaOne') | |
SafeZone.Parent = frame | |
SafeZone.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
SafeZone.TextColor3 = Color3.fromRGB(200,200,200) | |
SafeZone.Name = 'SafeZone' | |
-- SpawnAtSameLocation | |
SpawnAtSameLocation.Size = UDim2.new(0.19, 0,0.15, 0) | |
SpawnAtSameLocation.Text = 'Spawn At The Same Location Where Died (Off)' | |
SpawnAtSameLocation.TextScaled = true | |
SpawnAtSameLocation.FontFace = Font.fromName('FredokaOne') | |
SpawnAtSameLocation.Parent = frame | |
SpawnAtSameLocation.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
SpawnAtSameLocation.TextColor3 = Color3.fromRGB(200,200,200) | |
SpawnAtSameLocation.Name = 'SpawnAtSameLocation' | |
-- CTRLCLICKtp | |
CTRLCLICKtp.Size = UDim2.new(0.19, 0,0.15, 0) | |
CTRLCLICKtp.Text = 'CTRL + Click Tp: Off' | |
CTRLCLICKtp.TextScaled = true | |
CTRLCLICKtp.FontFace = Font.fromName('FredokaOne') | |
CTRLCLICKtp.Parent = frame | |
CTRLCLICKtp.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
CTRLCLICKtp.TextColor3 = Color3.fromRGB(200,200,200) | |
CTRLCLICKtp.Name = 'CTRLCLICKtp' | |
-- AlwaysOnCoreGUI | |
AlwaysOnCoreGUI.Size = UDim2.new(0.19, 0,0.15, 0) | |
AlwaysOnCoreGUI.Text = 'Always On Core GUI: Off' | |
AlwaysOnCoreGUI.TextScaled = true | |
AlwaysOnCoreGUI.FontFace = Font.fromName('FredokaOne') | |
AlwaysOnCoreGUI.Parent = frame | |
AlwaysOnCoreGUI.BackgroundColor3 = Color3.fromRGB(50,50,50) | |
AlwaysOnCoreGUI.TextColor3 = Color3.fromRGB(200,200,200) | |
AlwaysOnCoreGUI.Name = 'AlwaysOnCoreGUI' | |
-- HealthDisplay | |
HealthDisplay.Name = 'TeaLabel' | |
HealthDisplay.Size = UDim2.new(1,0,0,40) | |
HealthDisplay.BackgroundTransparency = 1 | |
HealthDisplay.TextScaled = true | |
HealthDisplay.TextStrokeTransparency = 0 | |
HealthDisplay.FontFace = Font.fromName('FredokaOne') | |
HealthDisplay.Parent = ScreenGui | |
local Humanoid = plrChar:FindFirstChild('Humanoid') | |
local HumanoidRootPart = plrChar:FindFirstChild('HumanoidRootPart') | |
local Health = Humanoid.Health | |
local MaxHealth = Humanoid.MaxHealth | |
local HealthCalculation = (Health / MaxHealth) | |
local HealthColor = Color3.fromRGB(255, 0, 0):Lerp(Color3.fromRGB(60, 255, 0), HealthCalculation) | |
Health = math.floor(Health)+math.floor((Health-math.floor(Health))*10)/10 | |
HealthDisplay.Text = Health..'/'..MaxHealth | |
HealthDisplay.TextColor3 = HealthColor | |
HealthDisplay.Name = 'HealthDisplay' | |
-- UIAddings | |
Instance.new('UICorner').Parent = frame | |
Instance.new('UICorner').Parent = frame2 | |
Instance.new('UICorner').Parent = SettingsFrame | |
Instance.new('UICorner').Parent = TargetButton | |
Instance.new('UICorner').Parent = TpToMap | |
Instance.new('UICorner').Parent = DCTp | |
Instance.new('UICorner').Parent = BladeTp | |
Instance.new('UICorner').Parent = Destroy | |
Instance.new('UICorner').Parent = Type | |
Instance.new('UICorner').Parent = WalkSpeed | |
Instance.new('UICorner').Parent = JumpPower | |
Instance.new('UICorner').Parent = Settings | |
Instance.new('UICorner').Parent = TBKeyCode | |
Instance.new('UICorner').Parent = TTMKeyCode | |
Instance.new('UICorner').Parent = DCTPKeyCode | |
Instance.new('UICorner').Parent = BTKeyCode | |
Instance.new('UICorner').Parent = Esp | |
Instance.new('UICorner').Parent = EspHighlightColorSetting | |
Instance.new('UICorner').Parent = EspHighlightSwitch | |
Instance.new('UICorner').Parent = Noclip | |
Instance.new('UICorner').Parent = NoclipKeyCode | |
Instance.new('UICorner').Parent = SpawnAtSameLocation | |
Instance.new('UICorner').Parent = ScriptNameTopTag | |
Instance.new('UICorner').Parent = AwakeningName | |
Instance.new('UICorner').Parent = Tools | |
Instance.new('UICorner').Parent = SafeZone | |
Instance.new('UICorner').Parent = SafeZoneHealthB | |
Instance.new('UICorner').Parent = CTRLCLICKtp | |
Instance.new('UICorner').Parent = AlwaysOnCoreGUI | |
local Layout=Instance.new('UIListLayout') | |
Layout.Wraps = true | |
Layout.Padding=UDim.new(0.01,0) | |
Layout.SortOrder=Enum.SortOrder.LayoutOrder | |
Layout.FillDirection = Enum.FillDirection.Horizontal | |
Layout.HorizontalAlignment = Enum.HorizontalAlignment.Left | |
Layout.VerticalAlignment = Enum.VerticalAlignment.Top | |
Layout:Clone().Parent=frame | |
Layout:Clone().Parent=SettingsFrame | |
-- Variables | |
-- Bools | |
local AtMap = true | |
local CODB = false | |
local Opened = true | |
local targetNow = false | |
local tp = false | |
local TargetOpened = false | |
local ToolsOpened = false | |
local tdb = false | |
local tdb2 = false | |
local PickingKeyCode = false | |
local TBKeyCodePick = false | |
local TTMKeyCodePick = false | |
local DCTPKeyCodePick = false | |
local BTKeyCodePick = false | |
local NoclipKeyCodePick = false | |
local EspHighlight = true | |
local EspOn = false | |
local SettingsOpen = false | |
local NoclipOn = false | |
local SpawnAtSameLoc = false | |
local SafeZoneOn = false | |
local CTRLCLICKtpOn = false | |
local AlwaysOnCore = false | |
-- KeyCodes | |
local COKeyCode = Enum.KeyCode.X | |
local TargetKeyCode = Enum.KeyCode.E | |
local BladeMasterKeyCode = Enum.KeyCode.R | |
local DeathCounterKeyCode = Enum.KeyCode.T | |
local MapTpKeyCode = Enum.KeyCode.C | |
local NoclipKey = Enum.KeyCode.Z | |
-- Vectors | |
local lastMapPos = Vector3.new(181, 443, 18) | |
local lastPos = game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position | |
-- Colors | |
local EspHighlightColor = Color3.fromRGB(255,0,0) | |
-- Strings | |
local WP = '' | |
local JP = '' | |
local CharacterUsing = '' | |
local prevSafeZoneHealthText = SafeZoneHealthB.Text | |
-- Numbers | |
local EspColorNum = 1 | |
local SafeZoneHealth = 30 | |
--Instances | |
local Nickname = Instance.new('StringValue') | |
Nickname.Parent = TargetButton | |
Nickname.Name = 'Target' | |
--Functions | |
local function GetMatchingKeyCodeFromName(Name: string): Enum.KeyCode? | |
for i, Keycode in Enum.KeyCode:GetEnumItems() do | |
if Keycode.Name == Name then | |
return Keycode | |
end | |
end | |
end | |
game.UserInputService.InputBegan:Connect(function(key, chat) | |
if on.Value == true then | |
if PickingKeyCode == false then | |
if not chat then | |
if key.KeyCode == COKeyCode and not CODB then | |
if Opened == true then | |
Opened = false | |
CODB = true | |
frame:TweenPosition(UDim2.new(0.2,0,1.15,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
SettingsFrame:TweenPosition(UDim2.new(0.2,0,1.15,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
frame2:TweenPosition(UDim2.new(0.195,0,0.5725+0.575,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
ScriptNameTopTag:TweenPosition(UDim2.new(0.195,0,0.5225+0.575,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25, true) | |
wait(0.25) | |
CODB = false | |
else | |
Opened = true | |
CODB = true | |
frame:TweenPosition(UDim2.new(0.2,0,0.575,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
SettingsFrame:TweenPosition(UDim2.new(0.2,0,0.575,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
frame2:TweenPosition(UDim2.new(0.195,0,0.5725,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
ScriptNameTopTag:TweenPosition(UDim2.new(0.195,0,0.5225,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25, true) | |
wait(0.25) | |
CODB = false | |
end | |
elseif key.KeyCode == TargetKeyCode then | |
if tp == false then | |
targetNow = not targetNow | |
if Nickname.Value ~= '' then | |
if targetNow == true then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On) ('..Nickname.Value..')' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off) ('..Nickname.Value..')' | |
end | |
else | |
if targetNow == true then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On)' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off)' | |
end | |
end | |
else | |
if workspace.Live:FindFirstChild(Nickname.Value) then | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = workspace.Live:WaitForChild(Nickname.Value):WaitForChild('HumanoidRootPart').CFrame | |
end | |
end | |
elseif key.KeyCode == BladeMasterKeyCode then | |
if AtMap == true then | |
lastMapPos = Vector3.new(game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.X, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Y, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Z) | |
end | |
AtMap = false | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(Vector3.new(860, 20, 23062), game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
elseif key.KeyCode == DeathCounterKeyCode then | |
if AtMap == true then | |
lastMapPos = Vector3.new(game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.X, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Y, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Z) | |
end | |
AtMap = false | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(Vector3.new(-64, 30, 20336), game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
elseif key.KeyCode == MapTpKeyCode then | |
if AtMap == false then | |
AtMap = true | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(lastMapPos, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end | |
elseif key.KeyCode == NoclipKey then | |
NoclipOn = not NoclipOn | |
if NoclipOn == true then | |
Noclip.Text = 'Noclip (On) ('..tostring(NoclipKey.Name)..')' | |
else | |
Noclip.Text = 'Noclip (Off) ('..tostring(NoclipKey.Name)..')' | |
end | |
elseif key.UserInputType == Enum.UserInputType.MouseButton1 then | |
if game.UserInputService:IsKeyDown(Enum.KeyCode.LeftControl) and CTRLCLICKtpOn == true then | |
plr.Character:MoveTo(mouse.Hit.p) | |
end | |
end | |
end | |
else | |
if key.KeyCode ~= Enum.KeyCode.Unknown then | |
if TBKeyCodePick == true then | |
TargetKeyCode = key.KeyCode | |
elseif TTMKeyCodePick == true then | |
MapTpKeyCode = key.KeyCode | |
elseif DCTPKeyCodePick == true then | |
DeathCounterKeyCode = key.KeyCode | |
elseif BTKeyCodePick == true then | |
BladeMasterKeyCode = key.KeyCode | |
elseif NoclipKeyCodePick == true then | |
NoclipKey = key.KeyCode | |
end | |
TBKeyCodePick = false | |
TTMKeyCodePick = false | |
DCTPKeyCodePick = false | |
BTKeyCodePick = false | |
PickingKeyCode = false | |
NoclipKeyCodePick = false | |
TBKeyCode.Text = 'Target Key Code Change' | |
TTMKeyCode.Text = 'Tp To Map Key Code Change' | |
DCTPKeyCode.Text = 'Tp To Death Counter Cutscene Key Code Change' | |
BTKeyCode.Text = 'Tp To Blade Master Cutscene Key Code Change' | |
NoclipKeyCode.Text = 'Noclip Key Code Change' | |
TpToMap.Text = 'Tp to map ('..tostring(MapTpKeyCode.Name)..')' | |
if Nickname.Value ~= '' then | |
if targetNow == false then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off) ('..Nickname.Value..')' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On) ('..Nickname.Value..')' | |
end | |
else | |
if targetNow == false then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off)' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On)' | |
end | |
end | |
DCTp.Text = 'Tp to death counter cutscene ('..tostring(DeathCounterKeyCode.Name)..')' | |
BladeTp.Text = 'Tp to blade master cutscene ('..tostring(BladeMasterKeyCode.Name)..')' | |
if NoclipOn == true then | |
Noclip.Text = 'Noclip (On) ('..tostring(NoclipKey.Name)..')' | |
else | |
Noclip.Text = 'Noclip (Off) ('..tostring(NoclipKey.Name)..')' | |
end | |
end | |
end | |
end | |
end) | |
AlwaysOnCoreGUI.MouseButton1Click:Connect(function() | |
AlwaysOnCore = not AlwaysOnCore | |
end) | |
CTRLCLICKtp.MouseButton1Click:Connect(function() | |
CTRLCLICKtpOn = not CTRLCLICKtpOn | |
end) | |
BladeTp.MouseButton1Click:Connect(function() | |
if AtMap == true then | |
lastMapPos = Vector3.new(game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.X, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Y, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Z) | |
end | |
AtMap = false | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(Vector3.new(860, 20, 23062), game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end) | |
DCTp.MouseButton1Click:Connect(function() | |
if AtMap == true then | |
lastMapPos = Vector3.new(game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.X, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Y, game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position.Z) | |
end | |
AtMap = false | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(Vector3.new(-64, 30, 20336), game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end) | |
Destroy.MouseButton1Click:Connect(function() | |
on.Value = false | |
ScreenGui:Destroy() | |
script:Destroy() | |
end) | |
on.Changed:Connect(function() | |
if on.Value == false then | |
ScreenGui:Destroy() | |
script:Destroy() | |
end | |
end) | |
TpToMap.MouseButton1Click:Connect(function() | |
if AtMap == false then | |
AtMap = true | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(lastMapPos, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end | |
end) | |
Type.MouseButton1Click:Connect(function() | |
tp = not tp | |
end) | |
WalkSpeed.Changed:Connect(function() | |
if not tonumber(WalkSpeed.Text) and WalkSpeed.Text ~= '' then | |
WalkSpeed.Text = WP | |
end | |
WP = WalkSpeed.Text | |
end) | |
JumpPower.Changed:Connect(function() | |
if not tonumber(JumpPower.Text) and JumpPower.Text ~= '' then | |
JumpPower.Text = JP | |
end | |
JP = JumpPower.Text | |
end) | |
SafeZone.MouseButton1Click:Connect(function() | |
SafeZoneOn = not SafeZoneOn | |
end) | |
TargetButton.MouseButton1Click:Connect(function() | |
if tdb == false then | |
tdb = true | |
if TargetOpened == false then | |
TargetOpened = true | |
TargetFrame:TweenSize(UDim2.new(1,0,5,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
wait(0.05) | |
Type.Interactable = false | |
Type.Transparency = 1 | |
AwakeningName.Interactable = false | |
AwakeningName.Transparency = 1 | |
CTRLCLICKtp.Interactable = false | |
CTRLCLICKtp.Transparency = 1 | |
TargetFrame.ScrollBarThickness = 5 | |
wait(0.2) | |
else | |
TargetOpened = false | |
TargetFrame:TweenSize(UDim2.new(1,0,0,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
wait(0.2) | |
Type.Interactable = true | |
Type.Transparency = 0 | |
AwakeningName.Interactable = true | |
AwakeningName.Transparency = 0 | |
CTRLCLICKtp.Interactable = true | |
CTRLCLICKtp.Transparency = 0 | |
TargetFrame.ScrollBarThickness = 0 | |
wait(0.05) | |
end | |
tdb = false | |
end | |
end) | |
Tools.MouseButton1Click:Connect(function() | |
if tdb2 == false then | |
tdb2 = true | |
if ToolsOpened == false then | |
ToolsOpened = true | |
ToolsFrame:TweenSize(UDim2.new(1,0,5,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
wait(0.05) | |
ToolsFrame.ScrollBarThickness = 5 | |
wait(0.2) | |
else | |
ToolsOpened = false | |
ToolsFrame:TweenSize(UDim2.new(1,0,0,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 0.25) | |
wait(0.2) | |
ToolsFrame.ScrollBarThickness = 0 | |
wait(0.05) | |
end | |
tdb2 = false | |
end | |
end) | |
Settings.MouseButton1Click:Connect(function() | |
SettingsOpen = not SettingsOpen | |
if SettingsOpen == true then | |
SettingsFrame.Visible = true | |
frame.Visible = false | |
Settings.Text = 'Close Settings' | |
else | |
SettingsFrame.Visible = false | |
frame.Visible = true | |
Settings.Text = 'Settings' | |
end | |
end) | |
TBKeyCode.MouseButton1Click:Connect(function() | |
PickingKeyCode = true | |
TBKeyCodePick = true | |
TTMKeyCodePick = false | |
DCTPKeyCodePick = false | |
NoclipKeyCodePick = false | |
BTKeyCodePick = false | |
TBKeyCode.Text = 'Press any button..' | |
TTMKeyCode.Text = 'Tp To Map Key Code Change' | |
DCTPKeyCode.Text = 'Tp To Death Counter Cutscene Key Code Change' | |
BTKeyCode.Text = 'Tp To Blade Master Cutscene Key Code Change' | |
NoclipKeyCode.Text = 'Noclip Key Code Change' | |
end) | |
TTMKeyCode.MouseButton1Click:Connect(function() | |
PickingKeyCode = true | |
TBKeyCodePick = false | |
TTMKeyCodePick = true | |
DCTPKeyCodePick = false | |
NoclipKeyCodePick = false | |
BTKeyCodePick = false | |
TBKeyCode.Text = 'Target Key Code Change' | |
TTMKeyCode.Text = 'Press any button..' | |
DCTPKeyCode.Text = 'Tp To Death Counter Cutscene Key Code Change' | |
BTKeyCode.Text = 'Tp To Blade Master Cutscene Key Code Change' | |
NoclipKeyCode.Text = 'Noclip Key Code Change' | |
end) | |
DCTPKeyCode.MouseButton1Click:Connect(function() | |
PickingKeyCode = true | |
TBKeyCodePick = false | |
TTMKeyCodePick = false | |
DCTPKeyCodePick = true | |
NoclipKeyCodePick = false | |
BTKeyCodePick = false | |
TBKeyCode.Text = 'Target Key Code Change' | |
TTMKeyCode.Text = 'Tp To Map Key Code Change' | |
DCTPKeyCode.Text = 'Press any button..' | |
BTKeyCode.Text = 'Tp To Blade Master Cutscene Key Code Change' | |
NoclipKeyCode.Text = 'Noclip Key Code Change' | |
end) | |
BTKeyCode.MouseButton1Click:Connect(function() | |
PickingKeyCode = true | |
TBKeyCodePick = false | |
TTMKeyCodePick = false | |
DCTPKeyCodePick = false | |
NoclipKeyCodePick = false | |
BTKeyCodePick = true | |
TBKeyCode.Text = 'Target Key Code Change' | |
TTMKeyCode.Text = 'Tp To Map Key Code Change' | |
DCTPKeyCode.Text = 'Tp To Death Counter Cutscene Key Code Change' | |
BTKeyCode.Text = 'Press any button..' | |
NoclipKeyCode.Text = 'Noclip Key Code Change' | |
end) | |
NoclipKeyCode.MouseButton1Click:Connect(function() | |
PickingKeyCode = true | |
TBKeyCodePick = false | |
TTMKeyCodePick = false | |
DCTPKeyCodePick = false | |
NoclipKeyCodePick = true | |
BTKeyCodePick = false | |
TBKeyCode.Text = 'Target Key Code Change' | |
TTMKeyCode.Text = 'Tp To Map Key Code Change' | |
DCTPKeyCode.Text = 'Tp To Death Counter Cutscene Key Code Change' | |
BTKeyCode.Text = 'Tp To Blade Master Cutscene Key Code Change' | |
NoclipKeyCode.Text = 'Press any button..' | |
end) | |
Esp.MouseButton1Click:Connect(function() | |
EspOn = not EspOn | |
if EspOn == true then | |
Esp.Text = 'ESP (On)' | |
else | |
Esp.Text = 'ESP (Off)' | |
end | |
end) | |
SafeZoneHealthB.Changed:Connect(function() | |
local text = SafeZoneHealthB.Text | |
if tonumber(text) and text ~= '' then | |
if tonumber(text) >= plr.Character:WaitForChild('Humanoid').MaxHealth or tonumber(text) < 1 then | |
SafeZoneHealthB.Text = prevSafeZoneHealthText | |
else | |
SafeZoneHealth=tonumber(text) | |
prevSafeZoneHealthText=SafeZoneHealthB.Text | |
end | |
elseif not tonumber(text) and text ~= '' then | |
SafeZoneHealthB.Text = prevSafeZoneHealthText | |
elseif not tonumber(text) and text == '' then | |
SafeZoneHealth = 30 | |
prevSafeZoneHealthText=SafeZoneHealthB.Text | |
end | |
if SafeZoneHealth == 30 then | |
SafeZoneHealthB.Text = '' | |
prevSafeZoneHealthText = '' | |
end | |
end) | |
SpawnAtSameLocation.MouseButton1Click:Connect(function() | |
SpawnAtSameLoc = not SpawnAtSameLoc | |
if SpawnAtSameLoc == true then | |
SpawnAtSameLocation.Text = 'Spawn At The Same Location Where Died (On)' | |
else | |
SpawnAtSameLocation.Text = 'Spawn At The Same Location Where Died (Off)' | |
end | |
end) | |
AwakeningName.Changed:Connect(function() | |
if AwakeningName.Text ~= '' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = AwakeningName.Text | |
else | |
if CharacterUsing == 'Saitama' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'SERIOUS MODE' | |
elseif CharacterUsing == 'Garou' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'RAMPAGE' | |
elseif CharacterUsing == 'Genos' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'MAXIMUM ENERGY OUTPUT' | |
elseif CharacterUsing == 'Sonic' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'CAN YOU EVEN HEAR ME?' | |
elseif CharacterUsing == 'Bat' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'PUMPED UP' | |
elseif CharacterUsing == 'Atomic' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'SCORCHING BLADE' | |
elseif CharacterUsing == 'Tatsumaki' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'BERSERK' | |
elseif CharacterUsing == 'Siruy' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'DRAGON'.."'"..'S DESCENT' | |
elseif CharacterUsing == 'Crab' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = '?' | |
elseif CharacterUsing == 'Sorcerer' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = 'SORCERER' | |
elseif CharacterUsing == 'KJ' then | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = '20 SERIES' | |
else | |
plr.PlayerGui.ScreenGui.MagicHealth.TextLabel.Text = '?' | |
end | |
end | |
end) | |
EspHighlightColorSetting.MouseButton1Click:Connect(function() | |
EspColorNum += 1 | |
if EspColorNum > 30 then | |
EspColorNum = 1 | |
end | |
if EspColorNum == 1 then | |
EspHighlightColor = Color3.fromRGB(255,0,0) | |
EspHighlightColorSetting.Text = 'Red' | |
elseif EspColorNum == 2 then | |
EspHighlightColor = Color3.fromRGB(0,255,0) | |
EspHighlightColorSetting.Text = 'Green' | |
elseif EspColorNum == 3 then | |
EspHighlightColor = Color3.new(0,0,255) | |
EspHighlightColorSetting.Text = 'Blue' | |
elseif EspColorNum == 4 then | |
EspHighlightColor = Color3.fromRGB(255,255,0) | |
EspHighlightColorSetting.Text = 'Yellow' | |
elseif EspColorNum == 5 then | |
EspHighlightColor = Color3.fromRGB(255,0,255) | |
EspHighlightColorSetting.Text = 'Pink' | |
elseif EspColorNum == 6 then | |
EspHighlightColor = Color3.fromRGB(0,255,255) | |
EspHighlightColorSetting.Text = 'Cyan' | |
elseif EspColorNum == 7 then | |
EspHighlightColor = Color3.fromRGB(128,0,128) | |
EspHighlightColorSetting.Text = 'Purple' | |
elseif EspColorNum == 8 then | |
EspHighlightColor = Color3.fromRGB(128,128,0) | |
EspHighlightColorSetting.Text = 'Brown' | |
elseif EspColorNum == 9 then | |
EspHighlightColor = Color3.fromRGB(0,128,128) | |
EspHighlightColorSetting.Text = 'Teal' | |
elseif EspColorNum == 10 then | |
EspHighlightColor = Color3.fromRGB(255,128,0) | |
EspHighlightColorSetting.Text = 'Orange' | |
elseif EspColorNum == 11 then | |
EspHighlightColor = Color3.fromRGB(128,0,0) | |
EspHighlightColorSetting.Text = 'Maroon' | |
elseif EspColorNum == 12 then | |
EspHighlightColor = Color3.fromRGB(0,128,0) | |
EspHighlightColorSetting.Text = 'Dark Green' | |
elseif EspColorNum == 13 then | |
EspHighlightColor = Color3.fromRGB(0,0,128) | |
EspHighlightColorSetting.Text = 'Dark Blue' | |
elseif EspColorNum == 14 then | |
EspHighlightColor = Color3.fromRGB(128,128,128) | |
EspHighlightColorSetting.Text = 'Grey' | |
elseif EspColorNum == 15 then | |
EspHighlightColor = Color3.fromRGB(255,255,255) | |
EspHighlightColorSetting.Text = 'White' | |
elseif EspColorNum == 16 then | |
EspHighlightColor = Color3.fromRGB(192,192,192) | |
EspHighlightColorSetting.Text = 'Light Grey' | |
elseif EspColorNum == 17 then | |
EspHighlightColor = Color3.fromRGB(255,192,203) | |
EspHighlightColorSetting.Text = 'Light Pink' | |
elseif EspColorNum == 18 then | |
EspHighlightColor = Color3.fromRGB(199,210,180) | |
EspHighlightColorSetting.Text = 'Light Brown' | |
elseif EspColorNum == 19 then | |
EspHighlightColor = Color3.fromRGB(255,228,196) | |
EspHighlightColorSetting.Text = 'Light orange' | |
elseif EspColorNum == 20 then | |
EspHighlightColor = Color3.fromRGB(218,112,214) | |
EspHighlightColorSetting.Text = 'Light purple' | |
elseif EspColorNum == 21 then | |
EspHighlightColor = Color3.fromRGB(170,255,195) | |
EspHighlightColorSetting.Text = 'Light yellow green' | |
elseif EspColorNum == 22 then | |
EspHighlightColor = Color3.fromRGB(255,204,153) | |
EspHighlightColorSetting.Text = 'Light orange brown' | |
elseif EspColorNum == 23 then | |
EspHighlightColor = Color3.fromRGB(102,51,0) | |
EspHighlightColorSetting.Text = 'Reddish brown' | |
elseif EspColorNum == 24 then | |
EspHighlightColor = Color3.fromRGB(51,102,0) | |
EspHighlightColorSetting.Text = 'Dark orange green' | |
elseif EspColorNum == 25 then | |
EspHighlightColor = Color3.fromRGB(102,0,102) | |
EspHighlightColorSetting.Text = 'Dark purple' | |
elseif EspColorNum == 26 then | |
EspHighlightColor = Color3.fromRGB(153,51,153) | |
EspHighlightColorSetting.Text = 'Light purple brown' | |
elseif EspColorNum == 27 then | |
EspHighlightColor = Color3.fromRGB(255,153,204) | |
EspHighlightColorSetting.Text = 'Light pink brown' | |
elseif EspColorNum == 28 then | |
EspHighlightColor = Color3.fromRGB(102,102,153) | |
EspHighlightColorSetting.Text = 'Dark purple grey' | |
elseif EspColorNum == 29 then | |
EspHighlightColor = Color3.fromRGB(153,102,102) | |
EspHighlightColorSetting.Text = 'Reddish brown' | |
elseif EspColorNum == 30 then | |
EspHighlightColor = Color3.fromRGB(204,102,0) | |
EspHighlightColorSetting.Text = 'Brown orange' | |
end | |
EspHighlightColorSetting.Text = 'ESP Highlight Color: '..EspHighlightColorSetting.Text..' ('..EspColorNum..')' | |
end) | |
EspHighlightColorSetting.MouseButton2Click:Connect(function() | |
EspColorNum -= 1 | |
if EspColorNum < 1 then | |
EspColorNum = 30 | |
end | |
if EspColorNum == 1 then | |
EspHighlightColor = Color3.fromRGB(255,0,0) | |
EspHighlightColorSetting.Text = 'Red' | |
elseif EspColorNum == 2 then | |
EspHighlightColor = Color3.fromRGB(0,255,0) | |
EspHighlightColorSetting.Text = 'Green' | |
elseif EspColorNum == 3 then | |
EspHighlightColor = Color3.new(0,0,255) | |
EspHighlightColorSetting.Text = 'Blue' | |
elseif EspColorNum == 4 then | |
EspHighlightColor = Color3.fromRGB(255,255,0) | |
EspHighlightColorSetting.Text = 'Yellow' | |
elseif EspColorNum == 5 then | |
EspHighlightColor = Color3.fromRGB(255,0,255) | |
EspHighlightColorSetting.Text = 'Pink' | |
elseif EspColorNum == 6 then | |
EspHighlightColor = Color3.fromRGB(0,255,255) | |
EspHighlightColorSetting.Text = 'Cyan' | |
elseif EspColorNum == 7 then | |
EspHighlightColor = Color3.fromRGB(128,0,128) | |
EspHighlightColorSetting.Text = 'Purple' | |
elseif EspColorNum == 8 then | |
EspHighlightColor = Color3.fromRGB(128,128,0) | |
EspHighlightColorSetting.Text = 'Brown' | |
elseif EspColorNum == 9 then | |
EspHighlightColor = Color3.fromRGB(0,128,128) | |
EspHighlightColorSetting.Text = 'Teal' | |
elseif EspColorNum == 10 then | |
EspHighlightColor = Color3.fromRGB(255,128,0) | |
EspHighlightColorSetting.Text = 'Orange' | |
elseif EspColorNum == 11 then | |
EspHighlightColor = Color3.fromRGB(128,0,0) | |
EspHighlightColorSetting.Text = 'Maroon' | |
elseif EspColorNum == 12 then | |
EspHighlightColor = Color3.fromRGB(0,128,0) | |
EspHighlightColorSetting.Text = 'Dark Green' | |
elseif EspColorNum == 13 then | |
EspHighlightColor = Color3.fromRGB(0,0,128) | |
EspHighlightColorSetting.Text = 'Dark Blue' | |
elseif EspColorNum == 14 then | |
EspHighlightColor = Color3.fromRGB(128,128,128) | |
EspHighlightColorSetting.Text = 'Grey' | |
elseif EspColorNum == 15 then | |
EspHighlightColor = Color3.fromRGB(255,255,255) | |
EspHighlightColorSetting.Text = 'White' | |
elseif EspColorNum == 16 then | |
EspHighlightColor = Color3.fromRGB(192,192,192) | |
EspHighlightColorSetting.Text = 'Light Grey' | |
elseif EspColorNum == 17 then | |
EspHighlightColor = Color3.fromRGB(255,192,203) | |
EspHighlightColorSetting.Text = 'Light Pink' | |
elseif EspColorNum == 18 then | |
EspHighlightColor = Color3.fromRGB(199,210,180) | |
EspHighlightColorSetting.Text = 'Light Brown' | |
elseif EspColorNum == 19 then | |
EspHighlightColor = Color3.fromRGB(255,228,196) | |
EspHighlightColorSetting.Text = 'Light orange' | |
elseif EspColorNum == 20 then | |
EspHighlightColor = Color3.fromRGB(218,112,214) | |
EspHighlightColorSetting.Text = 'Light purple' | |
elseif EspColorNum == 21 then | |
EspHighlightColor = Color3.fromRGB(170,255,195) | |
EspHighlightColorSetting.Text = 'Light yellow green' | |
elseif EspColorNum == 22 then | |
EspHighlightColor = Color3.fromRGB(255,204,153) | |
EspHighlightColorSetting.Text = 'Light orange brown' | |
elseif EspColorNum == 23 then | |
EspHighlightColor = Color3.fromRGB(102,51,0) | |
EspHighlightColorSetting.Text = 'Reddish brown' | |
elseif EspColorNum == 24 then | |
EspHighlightColor = Color3.fromRGB(51,102,0) | |
EspHighlightColorSetting.Text = 'Dark orange green' | |
elseif EspColorNum == 25 then | |
EspHighlightColor = Color3.fromRGB(102,0,102) | |
EspHighlightColorSetting.Text = 'Dark purple' | |
elseif EspColorNum == 26 then | |
EspHighlightColor = Color3.fromRGB(153,51,153) | |
EspHighlightColorSetting.Text = 'Light purple brown' | |
elseif EspColorNum == 27 then | |
EspHighlightColor = Color3.fromRGB(255,153,204) | |
EspHighlightColorSetting.Text = 'Light pink brown' | |
elseif EspColorNum == 28 then | |
EspHighlightColor = Color3.fromRGB(102,102,153) | |
EspHighlightColorSetting.Text = 'Dark purple grey' | |
elseif EspColorNum == 29 then | |
EspHighlightColor = Color3.fromRGB(153,102,102) | |
EspHighlightColorSetting.Text = 'Reddish brown' | |
elseif EspColorNum == 30 then | |
EspHighlightColor = Color3.fromRGB(204,102,0) | |
EspHighlightColorSetting.Text = 'Brown orange' | |
end | |
EspHighlightColorSetting.Text = 'ESP Highlight Color: '..EspHighlightColorSetting.Text..' ('..EspColorNum..')' | |
end) | |
EspHighlightSwitch.MouseButton1Click:Connect(function() | |
EspHighlight = not EspHighlight | |
if EspHighlight == true then | |
EspHighlightSwitch.Text = 'ESP Highlight (On)' | |
else | |
EspHighlightSwitch.Text = 'ESP Highlight (Off)' | |
end | |
end) | |
Noclip.MouseButton1Click:Connect(function() | |
NoclipOn = not NoclipOn | |
if NoclipOn == true then | |
Noclip.Text = 'Noclip (On) ('..tostring(NoclipKey.Name)..')' | |
else | |
Noclip.Text = 'Noclip (Off) ('..tostring(NoclipKey.Name)..')' | |
end | |
end) | |
local function refresht() | |
for i, t in pairs(TargetFrame:GetChildren()) do | |
if t:IsA('TextButton') then | |
t:Destroy() | |
end | |
end | |
local ps = 0 | |
for i, t in pairs(game.Workspace.Live:GetChildren()) do | |
if t.Name ~= game.Players.LocalPlayer.Character.Name then | |
local button = Instance.new('TextButton') | |
button.Changed:Connect(function() | |
updateLabelSize(button) | |
end) | |
button.Size = UDim2.new(1,0,0,35) | |
button.Position = UDim2.new(0,0,0,0+ps) | |
ps+=37.5 | |
local IsPlayer = false | |
if game.Players:FindFirstChild(t.Name) then | |
IsPlayer=true | |
end | |
if IsPlayer == false then | |
button.Text = t.Name | |
else | |
button.Text = game.Players:FindFirstChild(t.Name).DisplayName..' ('..t.Name..')' | |
end | |
button.TextXAlignment = Enum.TextXAlignment.Left | |
button.FontFace = Font.fromName('FredokaOne') | |
button.BackgroundColor3 = Color3.fromRGB(175,175,175) | |
button.TextSize = 30 | |
button.RichText = true | |
button.MouseButton1Click:Connect(function() | |
TargetFrame.Size = UDim2.new(1,0,0,0) | |
if IsPlayer == false then | |
Nickname.Value = button.Text | |
else | |
Nickname.Value = button.Text:split('(')[2]:gsub('%)', '') | |
end | |
if targetNow == true then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On) ('..Nickname.Value..')' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off) ('..Nickname.Value..')' | |
end | |
Type.Interactable = true | |
Type.Transparency = 0 | |
AwakeningName.Interactable = true | |
AwakeningName.Transparency = 0 | |
CTRLCLICKtp.Interactable = true | |
CTRLCLICKtp.Transparency = 0 | |
tdb = false | |
TargetOpened = false | |
end) | |
button.Parent = TargetFrame | |
end | |
end | |
TargetFrame.CanvasSize = UDim2.new(0.76,0,0,#game.Workspace.Live:GetChildren()*37.5-37.5) | |
end | |
local function refresht2() | |
for i, t in pairs(ToolsFrame:GetChildren()) do | |
if t:IsA('TextBox') then | |
t:Destroy() | |
end | |
end | |
local ps = 0 | |
for i, t in pairs(plr.PlayerGui.Hotbar.Backpack.Hotbar:GetChildren()) do | |
if t:IsA('TextButton') and t.Visible == true then | |
local box = Instance.new('TextBox') | |
box.Changed:Connect(function() | |
updateLabelSize(box) | |
end) | |
box.Size = UDim2.new(1,0,0,35) | |
box.Position = UDim2.new(0,0,0,0+ps) | |
ps+=37.5 | |
box.Text = t.Base.ToolName.Text | |
box.TextXAlignment = Enum.TextXAlignment.Left | |
box.FontFace = Font.fromName('FredokaOne') | |
box.BackgroundColor3 = Color3.fromRGB(175,175,175) | |
box.TextSize = 30 | |
box.ClearTextOnFocus = false | |
box.Parent = ToolsFrame | |
box.PlaceholderText = t.Base.ToolName.Text | |
box.PlaceholderColor3 = Color3.fromRGB(200,200,200) | |
local orinigalText = t.Base.ToolName.Text | |
box.Changed:Connect(function() | |
if box.Text ~= '' then | |
t.Base.ToolName.Text = box.Text | |
else | |
t.Base.ToolName.Text = orinigalText | |
end | |
end) | |
end | |
end | |
ToolsFrame.CanvasSize = UDim2.new(0.76,0,0,#ToolsFrame:GetChildren()*37.5-37.5) | |
end | |
game.Players.LocalPlayer.CharacterAppearanceLoaded:Connect(function(char) | |
char:WaitForChild('Humanoid').Changed:Connect(function() | |
AtMap = true | |
end) | |
end) | |
game.Players.PlayerRemoving:Connect(function(plr2) | |
if on.Value == true then | |
if plr2:IsFriendsWith(plr.UserId) then | |
local displayname = '' | |
if plr2.LocaleId ~= '' then | |
displayname = plr2.LocaleId | |
else | |
displayname = plr2.DisplayName | |
end | |
Notification('Your friend '..plr2.Name..' ('..displayname..')'..' left this experience.', true, 3) | |
end | |
end | |
end) | |
--Fire Functions | |
refresht() | |
refresht2() | |
game.Workspace.Live.ChildAdded:Connect(refresht) | |
game.Workspace.Live.ChildRemoved:Connect(refresht) | |
plr.CharacterAppearanceLoaded:Connect(refresht2) | |
plr.Backpack.ChildAdded:Connect(refresht2) | |
plr.Backpack.ChildRemoved:Connect(refresht2) | |
plr.CharacterAppearanceLoaded:Connect(refresht2) | |
-- Anims | |
wait(0.5) | |
ScriptNameTopTag.TextTransparency = 1 | |
ScriptNameTopTag.Visible = true | |
game.TweenService:Create(ScriptNameTopTag, TweenInfo.new(1), {Position=UDim2.new(0.195,0,0.5225,0),TextTransparency=0}):Play() | |
--Loops | |
local prev = game.Players.LocalPlayer.Character.HumanoidRootPart.Position | |
local prevespcolor = EspHighlightColor | |
local EspHighlightWasOn = EspHighlight | |
local CanCollide = {} | |
local NoclipWasOn = NoclipOn | |
local waitness = 0 | |
local waitness2 = 0 | |
local Died = false | |
local FirstTimeJoined = true | |
local SafeZoneWasOn=SafeZoneOn | |
local inSafeZone=false | |
while wait() do | |
if game.UserInputService.KeyboardEnabled == false then | |
game.Players.LocalPlayer:Kick('Connect ur keyboard atleast') | |
end | |
local success, errormsg = pcall(function() | |
if on.Value == true then | |
Humanoid=plr.Character:WaitForChild('Humanoid') | |
if FirstTimeJoined == true then | |
if game.ReplicatedStorage:FindFirstChild(game.Players.LocalPlayer.Name.."'s tea script settings") then | |
local Data = game.ReplicatedStorage:FindFirstChild(game.Players.LocalPlayer.Name.."'s tea script settings") | |
if Data:FindFirstChild('Esp') then | |
EspOn = Data:FindFirstChild('Esp').Value | |
end | |
if Data:FindFirstChild('EspHighlightColor') then | |
EspColorNum = Data:FindFirstChild('EspHighlightColor').Value | |
end | |
if Data:FindFirstChild('EspHighlight') then | |
EspHighlight = Data:FindFirstChild('EspHighlight').Value | |
EspHighlightWasOn = EspHighlight | |
end | |
if Data:FindFirstChild('NoclipOn') then | |
NoclipOn = Data:FindFirstChild('NoclipOn').Value | |
NoclipWasOn = NoclipOn | |
end | |
if Data:FindFirstChild('DCTPKeyBind') then | |
DeathCounterKeyCode = GetMatchingKeyCodeFromName(Data:FindFirstChild('DCTPKeyBind').Value) | |
end | |
if Data:FindFirstChild('MapTp') then | |
MapTpKeyCode = GetMatchingKeyCodeFromName(Data:FindFirstChild('MapTp').Value) | |
end | |
if Data:FindFirstChild('BladeTpKeyBind') then | |
BladeMasterKeyCode = GetMatchingKeyCodeFromName(Data:FindFirstChild('BladeTpKeyBind').Value) | |
end | |
if Data:FindFirstChild('TargetKeyCode') then | |
TargetKeyCode = GetMatchingKeyCodeFromName(Data:FindFirstChild('TargetKeyCode').Value) | |
end | |
if Data:FindFirstChild('tp') then | |
tp = Data:FindFirstChild('tp').Value | |
end | |
if Data:FindFirstChild('SpawnAtSameLocationWhereDied') then | |
SpawnAtSameLoc = Data:FindFirstChild('SpawnAtSameLocationWhereDied').Value | |
end | |
if Data:FindFirstChild('Nickname') then | |
Nickname.Value = Data:FindFirstChild('Nickname').Value | |
end | |
if Data:FindFirstChild('AwakeningName') then | |
AwakeningName.Text = Data:FindFirstChild('AwakeningName').Value | |
end | |
if Data:FindFirstChild('sfzn') then | |
SafeZoneOn = Data:FindFirstChild('sfzn').Value | |
end | |
if Data:FindFirstChild('sfznH') then | |
SafeZoneHealth = Data:FindFirstChild('sfznH').Value | |
end | |
if Data:FindFirstChild('sfznT') then | |
SafeZoneHealth = Data:FindFirstChild('sfznT').Value | |
end | |
if Data:FindFirstChild('ctrlClckTP') then | |
CTRLCLICKtpOn = Data:FindFirstChild('ctrlClckTP').Value | |
end | |
if Data:FindFirstChild('AlwaysOnCoreGUI') then | |
AlwaysOnCore = Data:FindFirstChild('AlwaysOnCoreGUI').Value | |
end | |
Notification('Your data on this server loaded.', false) | |
end | |
else | |
if game.ReplicatedStorage:FindFirstChild(game.Players.LocalPlayer.Name.."'s tea script settings") then | |
local Data = game.ReplicatedStorage:FindFirstChild(game.Players.LocalPlayer.Name.."'s tea script settings") | |
if Data:FindFirstChild('Esp') then | |
Data:FindFirstChild('Esp').Value = EspOn | |
else | |
local Esp = Instance.new('BoolValue') | |
Esp.Name = 'Esp' | |
Esp.Value = EspOn | |
Esp.Parent = Data | |
end | |
if Data:FindFirstChild('EspHighlightColor') then | |
Data:FindFirstChild('EspHighlightColor').Value = EspColorNum | |
else | |
local EspHighlightColor = Instance.new('NumberValue') | |
EspHighlightColor.Name = 'EspHighlightColor' | |
EspHighlightColor.Value = EspColorNum | |
EspHighlightColor.Parent = Data | |
end | |
if Data:FindFirstChild('EspHighlight') then | |
Data:FindFirstChild('EspHighlight').Value = EspHighlight | |
else | |
local EspHighlight = Instance.new('BoolValue') | |
EspHighlight.Name = 'EspHighlight' | |
EspHighlight.Value = EspHighlight | |
EspHighlight.Parent = Data | |
end | |
if Data:FindFirstChild('NoclipOn') then | |
Data:FindFirstChild('NoclipOn').Value = NoclipOn | |
else | |
local NoclipOn = Instance.new('BoolValue') | |
NoclipOn.Name = 'NoclipOn' | |
NoclipOn.Value = NoclipOn | |
NoclipOn.Parent = Data | |
end | |
if Data:FindFirstChild('DCTPKeyBind') then | |
Data:FindFirstChild('DCTPKeyBind').Value = DeathCounterKeyCode.Name | |
else | |
local DCTPKeyBind = Instance.new('StringValue') | |
DCTPKeyBind.Name = 'DCTPKeyBind' | |
DCTPKeyBind.Value = DeathCounterKeyCode.Name | |
DCTPKeyBind.Parent = Data | |
end | |
if Data:FindFirstChild('MapTp') then | |
Data:FindFirstChild('MapTp').Value = MapTpKeyCode.Name | |
else | |
local MapTp = Instance.new('StringValue') | |
MapTp.Name = 'MapTp' | |
MapTp.Value = MapTpKeyCode.Name | |
MapTp.Parent = Data | |
end | |
if Data:FindFirstChild('BladeTpKeyBind') then | |
Data:FindFirstChild('BladeTpKeyBind').Value = BladeMasterKeyCode.Name | |
else | |
local BladeTpKeyBind = Instance.new('StringValue') | |
BladeTpKeyBind.Name = 'BladeTpKeyBind' | |
BladeTpKeyBind.Value = BladeMasterKeyCode.Name | |
BladeTpKeyBind.Parent = Data | |
end | |
if Data:FindFirstChild('TargetKeyCode') then | |
Data:FindFirstChild('TargetKeyCode').Value = TargetKeyCode.Name | |
else | |
local TargetKeyCode = Instance.new('StringValue') | |
TargetKeyCode.Name = 'TargetKeyCode' | |
TargetKeyCode.Value = TargetKeyCode.Name | |
TargetKeyCode.Parent = Data | |
end | |
if Data:FindFirstChild('SpawnAtSameLocationWhereDied') then | |
Data:FindFirstChild('SpawnAtSameLocationWhereDied').Value = SpawnAtSameLoc | |
else | |
local SpawnAtSameLocationWhereDied = Instance.new('BoolValue') | |
SpawnAtSameLocationWhereDied.Name = 'SpawnAtSameLocationWhereDied' | |
SpawnAtSameLocationWhereDied.Value = SpawnAtSameLoc | |
SpawnAtSameLocationWhereDied.Parent = Data | |
end | |
if Data:FindFirstChild('Nickname') then | |
Data:FindFirstChild('Nickname').Value = Nickname.Value | |
else | |
local Nickname = Instance.new('StringValue') | |
Nickname.Name = 'Nickname' | |
Nickname.Value = Nickname.Value | |
Nickname.Parent = Data | |
end | |
if Data:FindFirstChild('AwakeningName') then | |
Data:FindFirstChild('AwakeningName').Value = AwakeningName.Text | |
else | |
local Awakeningname = Instance.new('StringValue') | |
Awakeningname.Name = 'AwakeningName' | |
Awakeningname.Value = AwakeningName.Text | |
Awakeningname.Parent = Data | |
end | |
if Data:FindFirstChild('sfzn') then | |
Data:FindFirstChild('sfzn').Value = SafeZoneOn | |
else | |
local sfzn = Instance.new('BoolValue') | |
sfzn.Name = 'sfzn' | |
sfzn.Value = SafeZoneOn | |
sfzn.Parent = Data | |
end | |
if Data:FindFirstChild('sfznH') then | |
Data:FindFirstChild('sfznH').Value = SafeZoneHealth | |
else | |
local sfznH = Instance.new('NumberValue') | |
sfznH.Name = 'sfznH' | |
sfznH.Value = SafeZoneHealth | |
sfznH.Parent = Data | |
end | |
if Data:FindFirstChild('ctrlClckTP') then | |
Data:FindFirstChild('ctrlClckTP').Value = CTRLCLICKtpOn | |
else | |
local ctrlClckTP = Instance.new('BoolValue') | |
ctrlClckTP.Name = 'ctrlClckTP' | |
ctrlClckTP.Value = CTRLCLICKtpOn | |
ctrlClckTP.Parent = Data | |
end | |
if Data:FindFirstChild('AlwaysOnCoreGUI') then | |
Data:FindFirstChild('AlwaysOnCoreGUI').Value = AlwaysOnCore | |
else | |
local AlwaysOnCor = Instance.new('BoolValue') | |
AlwaysOnCor.Name ='AlwaysOnCoreGUI' | |
AlwaysOnCor.Value = AlwaysOnCore | |
AlwaysOnCor.Parent = Data | |
end | |
else | |
local Data = Instance.new('Folder', game.ReplicatedStorage) | |
Data.Name = plr.Name.."'s tea script settings" | |
local esp = Instance.new('BoolValue', Data) | |
esp.Name = 'Esp' | |
esp.Value = EspOn | |
local espHighlightColor = Instance.new('NumberValue', Data) | |
espHighlightColor.Name = 'EspHighlightColor' | |
espHighlightColor.Value = EspColorNum | |
local espHighlight = Instance.new('BoolValue', Data) | |
espHighlight.Name = 'EspHighlight' | |
espHighlight.Value = EspHighlight | |
local noclipOn = Instance.new('BoolValue', Data) | |
noclipOn.Name = 'NoclipOn' | |
noclipOn.Value = NoclipOn | |
local DCTPKeyBind = Instance.new('StringValue', Data) | |
DCTPKeyBind.Name = 'DCTPKeyBind' | |
DCTPKeyBind.Value = DeathCounterKeyCode.Name | |
local MapTp = Instance.new('StringValue', Data) | |
MapTp.Name = 'MapTp' | |
MapTp.Value = MapTpKeyCode.Name | |
local BladeTpKeyBind = Instance.new('StringValue', Data) | |
BladeTpKeyBind.Name = 'BladeTpKeyBind' | |
BladeTpKeyBind.Value = BladeMasterKeyCode.Name | |
local TargetKeyCode = Instance.new('StringValue', Data) | |
TargetKeyCode.Name = 'TargetKeyCode' | |
TargetKeyCode.Value = TargetKeyCode.Name | |
local Tp = Instance.new('BoolValue', Data) | |
Tp.Name = 'tp' | |
Tp.Value = tp | |
local spawnAtSameLocationWhereDied = Instance.new('BoolValue', Data) | |
spawnAtSameLocationWhereDied.Name = 'SpawnAtSameLocationWhereDied' | |
spawnAtSameLocationWhereDied.Value = SpawnAtSameLoc | |
local nickname = Instance.new('StringValue', Data) | |
nickname.Name = 'Nickname' | |
nickname.Value = Nickname.Value | |
local AwakeningName = Instance.new('StringValue', Data) | |
AwakeningName.Name = 'AwakeningName' | |
AwakeningName.Value = AwakeningName.Text | |
local sfzn = Instance.new('BoolValue', Data) | |
sfzn.Name = 'sfzn' | |
sfzn.Value = SafeZoneOn | |
local sfznH = Instance.new('NumberValue', Data) | |
sfznH.Name = 'sfznH' | |
sfznH.Value = SafeZoneHealth | |
local ctrlClckTP = Instance.new('BoolValue') | |
ctrlClckTP.Name = 'ctrlClckTP' | |
ctrlClckTP.Value = CTRLCLICKtpOn | |
ctrlClckTP.Parent = Data | |
local AlwaysOnCor = Instance.new('BoolValue') | |
AlwaysOnCor.Name ='AlwaysOnCoreGUI' | |
AlwaysOnCor.Value = AlwaysOnCore | |
AlwaysOnCor.Parent = Data | |
end | |
end | |
if workspace.Live:FindFirstChild(Nickname.Value) and targetNow == true and tp == false then | |
if SafeZoneOn == true and Humanoid.Health >= SafeZoneHealth then | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = workspace.Live:WaitForChild(Nickname.Value):WaitForChild('HumanoidRootPart').CFrame - workspace.Live:WaitForChild(Nickname.Value):WaitForChild('HumanoidRootPart').CFrame.LookVector*1 | |
elseif SafeZoneOn == false then | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = workspace.Live:WaitForChild(Nickname.Value):WaitForChild('HumanoidRootPart').CFrame - workspace.Live:WaitForChild(Nickname.Value):WaitForChild('HumanoidRootPart').CFrame.LookVector*1 | |
end | |
end | |
if game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Y >= 1000 or game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Y <= 375 or game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X >= 1750 or game.Players.LocalPlayer.Character.HumanoidRootPart.Position.X <= -500 or game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z >= 900 or game.Players.LocalPlayer.Character.HumanoidRootPart.Position.Z <= -1400 then | |
if AtMap == true then | |
lastMapPos = prev | |
AtMap = false | |
end | |
else | |
AtMap = true | |
end | |
if AtMap==true then | |
inSafeZone=false | |
end | |
if SafeZoneOn==true and Died == false then | |
if Humanoid.Health < SafeZoneHealth then | |
if inSafeZone == false then | |
inSafeZone=true | |
AtMap=false | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(Vector3.new(860, 2000, 23062), game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end | |
else | |
if inSafeZone==true then | |
inSafeZone=false | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(lastPos, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end | |
end | |
end | |
if WalkSpeed.Text ~= '' then | |
game.Players.LocalPlayer.Character:WaitForChild('Humanoid').WalkSpeed = tonumber(WalkSpeed.Text) | |
end | |
if JumpPower.Text ~= '' then | |
game.Players.LocalPlayer.Character:WaitForChild('Humanoid').JumpPower = tonumber(JumpPower.Text) | |
end | |
if EspOn == true and prevespcolor == EspHighlightColor and EspHighlightWasOn == EspHighlight then | |
for i, t in pairs(workspace.Live:GetChildren()) do | |
if t.Name ~= game.Players.LocalPlayer.Name then | |
if t:FindFirstChild('HumanoidRootPart') and t:FindFirstChild('HumanoidRootPart'):FindFirstChild('TeaGui') then | |
local TextLabel = t:FindFirstChild('HumanoidRootPart'):FindFirstChild('TeaGui'):FindFirstChild('TeaLabel') | |
local Humanoid = t:FindFirstChild('Humanoid') | |
local HumanoidRootPart = t:FindFirstChild('HumanoidRootPart') | |
local Health = Humanoid.Health | |
local MaxHealth = Humanoid.MaxHealth | |
local HealthCalculation = (Health / MaxHealth) | |
local HealthColor = Color3.fromRGB(255, 0, 0):Lerp(Color3.fromRGB(60, 255, 0), HealthCalculation) | |
Health = math.floor(Health)+math.floor((Health-math.floor(Health))*10)/10 | |
local distance = 0 | |
if HumanoidRootPart and game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart') then | |
distance=(game.Players.LocalPlayer.Character.HumanoidRootPart.Position-HumanoidRootPart.Position).Magnitude | |
distance = math.floor(distance)+math.floor((distance-math.floor(distance))*10)/10 | |
if distance >= 1000 then | |
distance=distance/1000 | |
distance=math.floor(distance)+math.floor((distance-math.floor(distance))*10)/10 | |
distance=tostring(distance)..'km' | |
else | |
distance=tostring(distance)..'m' | |
end | |
end | |
local TargetName = '' | |
if game.Players:FindFirstChild(t.Name) then | |
TargetName = game.Players:FindFirstChild(t.Name).DisplayName..' ('..t.Name..')' | |
else | |
TargetName = t.Name | |
end | |
local AddingText = '' | |
if t:FindFirstChild('Counter') then | |
if AddingText == '' then | |
AddingText = ' ' | |
end | |
AddingText = AddingText..'<Red>[DEATH COUNTER]</End>' | |
end | |
if t:FindFirstChild('AbsoluteImmortal') then | |
AddingText = AddingText..' <Cyan>[ABSOLUTE IMMORTAL]</End>' | |
end | |
if t:FindFirstChild('ForceField') then | |
AddingText = AddingText..' <Purple>[HALF IMMORTAL]</End>' | |
end | |
AddingText = GenerateMsg(AddingText) | |
if AddingText ~= '' then | |
TextLabel.RichText = true | |
if HumanoidRootPart then | |
TextLabel.Text = TargetName..' ['..Health..'/'..MaxHealth..'] ['..distance..']'..AddingText | |
else | |
TextLabel.Text = TargetName..' ['..Health..'/'..MaxHealth..']'..AddingText | |
end | |
else | |
if HumanoidRootPart then | |
TextLabel.Text = TargetName..' ['..Health..'/'..MaxHealth..'] ['..distance..']' | |
else | |
TextLabel.Text = TargetName..' ['..Health..'/'..MaxHealth..']' | |
end | |
end | |
TextLabel.TextColor3 = HealthColor | |
end | |
if not t:FindFirstChild('TeaHighlight') then | |
if EspHighlight == true then | |
local Highlight = Instance.new('Highlight') | |
Highlight.Name = 'TeaHighlight' | |
Highlight.Parent = t | |
Highlight.FillColor = EspHighlightColor | |
end | |
end | |
if t:FindFirstChild('HumanoidRootPart') and not t:FindFirstChild('HumanoidRootPart'):FindFirstChild('TeaGui') then | |
local BillboardGui = Instance.new('BillboardGui') | |
BillboardGui.Name = 'TeaGui' | |
BillboardGui.Size = UDim2.new(0, 150, 0, 35) | |
BillboardGui.AlwaysOnTop = true | |
BillboardGui.StudsOffset = Vector3.new(0, 3, 0) | |
local TextLabel = Instance.new('TextLabel') | |
TextLabel.Name = 'TeaLabel' | |
TextLabel.Size = UDim2.new(1,0,1,0) | |
TextLabel.BackgroundTransparency = 1 | |
TextLabel.TextScaled = true | |
TextLabel.TextStrokeTransparency = 0 | |
TextLabel.FontFace = Font.fromName('FredokaOne') | |
TextLabel.Text = t.Name | |
TextLabel.Parent = BillboardGui | |
BillboardGui.Parent = t.HumanoidRootPart | |
end | |
if t:FindFirstChild('Humanoid') then | |
t:FindFirstChild('Humanoid').HealthDisplayType = Enum.HumanoidHealthDisplayType.AlwaysOff | |
t:FindFirstChild('Humanoid').DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None | |
end | |
end | |
end | |
else | |
for i, t in pairs(workspace.Live:GetChildren()) do | |
if t:FindFirstChild('TeaHighlight') then | |
t:FindFirstChild('TeaHighlight'):Destroy() | |
end | |
if t:FindFirstChild('HumanoidRootPart') and t:FindFirstChild('HumanoidRootPart'):FindFirstChild('TeaGui') then | |
t:FindFirstChild('HumanoidRootPart'):FindFirstChild('TeaGui'):Destroy() | |
end | |
if t:FindFirstChild('Humanoid') then | |
t:FindFirstChild('Humanoid').HealthDisplayType = Enum.HumanoidHealthDisplayType.DisplayWhenDamaged | |
t:FindFirstChild('Humanoid').DisplayDistanceType = Enum.HumanoidDisplayDistanceType.Viewer | |
end | |
end | |
end | |
if waitness2 >= 35 then | |
if not game.UserInputService:GetFocusedTextBox() then | |
refresht2() | |
waitness2 = 0 | |
end | |
else | |
waitness2+=1 | |
end | |
if NoclipOn == true then | |
if waitness >= 20 then | |
for i, t in pairs(workspace:GetDescendants()) do | |
if t:IsA('Part') or t:IsA('MeshPart') then | |
if game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart') and (t.Position-game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart').Position).Magnitude < 100 then | |
local player = game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart').Position.Y-game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart').Size.Y/2-game.Players.LocalPlayer.Character:FindFirstChild('Right Leg').Size.Y/2 | |
local tpp = t.Position.Y+t.Size.Y/2 | |
if game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart') then | |
if tpp > player then | |
if t.CanCollide == true and not table.find(CanCollide, t) then | |
table.insert(CanCollide, t) | |
end | |
t.CanCollide = false | |
else | |
if table.find(CanCollide, t) then | |
table.remove(CanCollide, table.find(CanCollide, t)) | |
t.CanCollide = true | |
end | |
end | |
end | |
end | |
end | |
end | |
waitness = 0 | |
end | |
waitness += 1 | |
else | |
if NoclipWasOn == true then | |
for i, t in pairs(CanCollide) do | |
t.CanCollide = true | |
CanCollide[i] = nil | |
end | |
end | |
waitness = 20 | |
end | |
if game.Players.LocalPlayer.Character:FindFirstChild('HumanoidRootPart') then | |
prev = game.Players.LocalPlayer.Character.HumanoidRootPart.Position | |
end | |
local function HaveItem(name) | |
if plr.Backpack:FindFirstChild(name) then | |
return true | |
else | |
return false | |
end | |
end | |
if HaveItem('Normal Punch') or HaveItem('Shove') or HaveItem('Death Counter') or HaveItem('Table Flip') then | |
CharacterUsing='Saitama' | |
elseif HaveItem('Flowing Water') or HaveItem("Hunter's Grasp") or HaveItem('Crushed Rock') or HaveItem('The Final Hunt') then | |
CharacterUsing='Garou' | |
elseif HaveItem("Blitz Shot") or HaveItem("Jet Dive") or HaveItem("Flamewave Cannon") or HaveItem("Incinerate") then | |
CharacterUsing="Genos" | |
elseif HaveItem("Flash Strike") or HaveItem("Scatter") or HaveItem("Twinblade Rush") or HaveItem("Straight On") then | |
CharacterUsing="Sonic" | |
elseif HaveItem("Homerun") or HaveItem("Beatdown") or HaveItem("Death Blow") or HaveItem("Savage Tornado") then | |
CharacterUsing="Bat" | |
elseif HaveItem("Atmos Cleave") or HaveItem("Quick Slice") or HaveItem("Sunset") or HaveItem("Sunrise") then | |
CharacterUsing="Atomic" | |
elseif HaveItem("Crushing Pull") or HaveItem("Stone Coffin") or HaveItem("Cosmic Strike") or HaveItem("Sky") then | |
CharacterUsing="Tatsumaki" | |
elseif HaveItem("Bullet Barrage") or HaveItem("Head First") or HaveItem("Earth Splitting Strike") or HaveItem("Twin Fangs") then | |
CharacterUsing="Siruy" | |
elseif HaveItem("Giant Leap") or HaveItem("Acid Spit") then | |
CharacterUsing="Crab" | |
elseif HaveItem("Repulse") or HaveItem("Infinity") then | |
CharacterUsing="Sorcerer" | |
elseif HaveItem("Ravage") or HaveItem("Collateral Ruin") or HaveItem("Stoic Bomb") or HaveItem("20-20-20 Dropkick") then | |
CharacterUsing="KJ" | |
end | |
plrChar = plr.Character | |
local Humanoid = plrChar:WaitForChild('Humanoid') | |
local Health = Humanoid.Health | |
local MaxHealth = Humanoid.MaxHealth | |
local HealthCalculation = (Health / MaxHealth) | |
local HealthColor = Color3.fromRGB(255, 0, 0):Lerp(Color3.fromRGB(60, 255, 0), HealthCalculation) | |
Health = math.floor(Health)+math.floor((Health-math.floor(Health))*10)/10 | |
HealthDisplay.RichText = true | |
local txtAdd = '' | |
if plrChar:FindFirstChild('Counter') then | |
txtAdd = txtAdd..' <Red>[DEATH COUNTER]</End>' | |
end | |
if plrChar:FindFirstChild('ForceField') then | |
txtAdd = txtAdd..' <Purple>[HALF IMMORTAL]</End>' | |
end | |
if plrChar:FindFirstChild('AbsoluteImmortal') then | |
txtAdd = txtAdd..' <Cyan>[ABSOLUTE IMMORTAL]</End>' | |
end | |
txtAdd = GenerateMsg(txtAdd) | |
HealthDisplay.Text = Health..'/'..MaxHealth..txtAdd | |
HealthDisplay.TextColor3 = HealthColor | |
prevespcolor = EspHighlightColor | |
EspHighlightWasOn = EspHighlight | |
NoclipWasOn = NoclipOn | |
local DiedBefore = false | |
DiedBefore = Died | |
if Humanoid.Health == 0 then | |
Died = true | |
else | |
Died = false | |
end | |
if DiedBefore ~= Died and SpawnAtSameLoc == true then | |
game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').CFrame = CFrame.new(lastPos, game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector) | |
end | |
if Died == false and inSafeZone == false then | |
lastPos = game.Players.LocalPlayer.Character:WaitForChild('HumanoidRootPart').Position | |
end | |
TpToMap.Text = 'Tp to map ('..tostring(MapTpKeyCode.Name)..')' | |
if Nickname.Value ~= '' then | |
if targetNow == false then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off) ('..Nickname.Value..')' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On) ('..Nickname.Value..')' | |
end | |
else | |
if targetNow == false then | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (Off)' | |
else | |
TargetButton.Text = 'Target ('..tostring(TargetKeyCode.Name)..') (On)' | |
end | |
end | |
if AlwaysOnCore == true then | |
AlwaysOnCoreGUI.Text = 'Always On Core GUI: On' | |
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true) | |
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, true) | |
else | |
AlwaysOnCoreGUI.Text = 'Always On Core GUI: Off' | |
end | |
DCTp.Text = 'Tp to death counter cutscene ('..tostring(DeathCounterKeyCode.Name)..')' | |
BladeTp.Text = 'Tp to blade master cutscene ('..tostring(BladeMasterKeyCode.Name)..')' | |
if SafeZoneOn == true then | |
SafeZone.Text = 'Safe Zone: On' | |
else | |
SafeZone.Text = 'Safe Zone: Off' | |
end | |
if SafeZoneHealth == 30 then | |
SafeZoneHealthB.Text = '' | |
else | |
SafeZoneHealthB.Text = tostring(SafeZoneHealth) | |
end | |
if NoclipOn == true then | |
Noclip.Text = 'Noclip (On) ('..tostring(NoclipKey.Name)..')' | |
else | |
Noclip.Text = 'Noclip (Off) ('..tostring(NoclipKey.Name)..')' | |
end | |
if SpawnAtSameLoc == true then | |
SpawnAtSameLocation.Text = 'Spawn At The Same Location Where Died (On)' | |
else | |
SpawnAtSameLocation.Text = 'Spawn At The Same Location Where Died (Off)' | |
end | |
if CTRLCLICKtpOn == true then | |
CTRLCLICKtp.Text = 'CTRL + Click Tp: On' | |
else | |
CTRLCLICKtp.Text = 'CTRL + Click Tp: Off' | |
end | |
if tp == true then | |
Type.Text = 'Type: Teleport' | |
else | |
Type.Text = 'Type: Spam Teleport' | |
end | |
if EspOn == true then | |
Esp.Text = 'ESP (On)' | |
else | |
Esp.Text = 'ESP (Off)' | |
end | |
if EspColorNum == 1 then | |
EspHighlightColor = Color3.fromRGB(255,0,0) | |
EspHighlightColorSetting.Text = 'Red' | |
elseif EspColorNum == 2 then | |
EspHighlightColor = Color3.fromRGB(0,255,0) | |
EspHighlightColorSetting.Text = 'Green' | |
elseif EspColorNum == 3 then | |
EspHighlightColor = Color3.new(0,0,255) | |
EspHighlightColorSetting.Text = 'Blue' | |
elseif EspColorNum == 4 then | |
EspHighlightColor = Color3.fromRGB(255,255,0) | |
EspHighlightColorSetting.Text = 'Yellow' | |
elseif EspColorNum == 5 then | |
EspHighlightColor = Color3.fromRGB(255,0,255) | |
EspHighlightColorSetting.Text = 'Pink' | |
elseif EspColorNum == 6 then | |
EspHighlightColor = Color3.fromRGB(0,255,255) | |
EspHighlightColorSetting.Text = 'Cyan' | |
elseif EspColorNum == 7 then | |
EspHighlightColor = Color3.fromRGB(128,0,128) | |
EspHighlightColorSetting.Text = 'Purple' | |
elseif EspColorNum == 8 then | |
EspHighlightColor = Color3.fromRGB(128,128,0) | |
EspHighlightColorSetting.Text = 'Brown' | |
elseif EspColorNum == 9 then | |
EspHighlightColor = Color3.fromRGB(0,128,128) | |
EspHighlightColorSetting.Text = 'Teal' | |
elseif EspColorNum == 10 then | |
EspHighlightColor = Color3.fromRGB(255,128,0) | |
EspHighlightColorSetting.Text = 'Orange' | |
elseif EspColorNum == 11 then | |
EspHighlightColor = Color3.fromRGB(128,0,0) | |
EspHighlightColorSetting.Text = 'Maroon' | |
elseif EspColorNum == 12 then | |
EspHighlightColor = Color3.fromRGB(0,128,0) | |
EspHighlightColorSetting.Text = 'Dark Green' | |
elseif EspColorNum == 13 then | |
EspHighlightColor = Color3.fromRGB(0,0,128) | |
EspHighlightColorSetting.Text = 'Dark Blue' | |
elseif EspColorNum == 14 then | |
EspHighlightColor = Color3.fromRGB(128,128,128) | |
EspHighlightColorSetting.Text = 'Grey' | |
elseif EspColorNum == 15 then | |
EspHighlightColor = Color3.fromRGB(255,255,255) | |
EspHighlightColorSetting.Text = 'White' | |
elseif EspColorNum == 16 then | |
EspHighlightColor = Color3.fromRGB(192,192,192) | |
EspHighlightColorSetting.Text = 'Light Grey' | |
elseif EspColorNum == 17 then | |
EspHighlightColor = Color3.fromRGB(255,192,203) | |
EspHighlightColorSetting.Text = 'Light Pink' | |
elseif EspColorNum == 18 then | |
EspHighlightColor = Color3.fromRGB(199,210,180) | |
EspHighlightColorSetting.Text = 'Light Brown' | |
elseif EspColorNum == 19 then | |
EspHighlightColor = Color3.fromRGB(255,228,196) | |
EspHighlightColorSetting.Text = 'Light orange' | |
elseif EspColorNum == 20 then | |
EspHighlightColor = Color3.fromRGB(218,112,214) | |
EspHighlightColorSetting.Text = 'Light purple' | |
elseif EspColorNum == 21 then | |
EspHighlightColor = Color3.fromRGB(170,255,195) | |
EspHighlightColorSetting.Text = 'Light yellow green' | |
elseif EspColorNum == 22 then | |
EspHighlightColor = Color3.fromRGB(255,204,153) | |
EspHighlightColorSetting.Text = 'Light orange brown' | |
elseif EspColorNum == 23 then | |
EspHighlightColor = Color3.fromRGB(102,51,0) | |
EspHighlightColorSetting.Text = 'Reddish brown' | |
elseif EspColorNum == 24 then | |
EspHighlightColor = Color3.fromRGB(51,102,0) | |
EspHighlightColorSetting.Text = 'Dark orange green' | |
elseif EspColorNum == 25 then | |
EspHighlightColor = Color3.fromRGB(102,0,102) | |
EspHighlightColorSetting.Text = 'Dark purple' | |
elseif EspColorNum == 26 then | |
EspHighlightColor = Color3.fromRGB(153,51,153) | |
EspHighlightColorSetting.Text = 'Light purple brown' | |
elseif EspColorNum == 27 then | |
EspHighlightColor = Color3.fromRGB(255,153,204) | |
EspHighlightColorSetting.Text = 'Light pink brown' | |
elseif EspColorNum == 28 then | |
EspHighlightColor = Color3.fromRGB(102,102,153) | |
EspHighlightColorSetting.Text = 'Dark purple grey' | |
elseif EspColorNum == 29 then | |
EspHighlightColor = Color3.fromRGB(153,102,102) | |
EspHighlightColorSetting.Text = 'Reddish brown' | |
elseif EspColorNum == 30 then | |
EspHighlightColor = Color3.fromRGB(204,102,0) | |
EspHighlightColorSetting.Text = 'Brown orange' | |
end | |
EspHighlightColorSetting.Text = 'ESP Highlight Color: '..EspHighlightColorSetting.Text..' ('..EspColorNum..')' | |
FirstTimeJoined = false | |
else | |
ScreenGui:Destroy() | |
script:Destroy() | |
end | |
end) | |
if not success and errormsg ~= 'HumanoidRootPart is not a valid member of Model "Workspace.'..plr.Name..'"' then | |
Notification('Something went wrong. Error Message: '..errormsg, true, 1.5) | |
end | |
end | |
elseif game.Players.LocalPlayer.PlayerGui:FindFirstChild("tea's script") and GameIn ~= '' then | |
local ScreenGui = Instance.new('ScreenGui', game.Players.LocalPlayer.PlayerGui) | |
local frame = Instance.new('Frame', ScreenGui) | |
local TextLabel = Instance.new('TextLabel') | |
local Yes = Instance.new('TextButton') | |
local No = Instance.new('TextButton') | |
local UiStroke = Instance.new('UIStroke') | |
UiStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border | |
UiStroke.Thickness = 0 | |
ScreenGui.ResetOnSpawn = false | |
ScreenGui.IgnoreGuiInset = true | |
frame.Size = UDim2.new(0,0,0,0) | |
frame.Position = UDim2.new(0.5,0,0.5,0) | |
TextLabel.Parent = frame | |
TextLabel.Name = 'Ask' | |
TextLabel.Size = UDim2.new(0.8,0,0.4,0) | |
TextLabel.Position = UDim2.new(0.1,0,0.025,0) | |
TextLabel.Text = "There's found a tea's script, do you want to replace it?" | |
TextLabel.TextTransparency = 1 | |
TextLabel.BackgroundTransparency = 1 | |
TextLabel.TextScaled = true | |
TextLabel.FontFace = Font.fromName("FredokaOne") | |
Yes.Parent = frame | |
Yes.Name = 'Ask' | |
Yes.Size = UDim2.new(0.3,0,0.15,0) | |
Yes.Position = UDim2.new(0.075,0,0.7,0) | |
Yes.Text = "Yes" | |
Yes.TextTransparency = 1 | |
Yes.BackgroundTransparency = 1 | |
Yes.TextScaled = true | |
Yes.FontFace = Font.fromName("FredokaOne") | |
No.Parent = frame | |
No.Name = 'Ask' | |
No.Size = UDim2.new(0.3,0,0.15,0) | |
No.Position = UDim2.new(0.625,0,0.7,0) | |
No.Text = "No" | |
No.TextTransparency = 1 | |
No.BackgroundTransparency = 1 | |
No.TextScaled = true | |
No.FontFace = Font.fromName("FredokaOne") | |
UiStroke:Clone().Parent = frame | |
UiStroke:Clone().Parent = Yes | |
UiStroke:Clone().Parent = No | |
Instance.new('UICorner').Parent = frame | |
Instance.new('UICorner').Parent = Yes | |
Instance.new('UICorner').Parent = No | |
wait(0.5) | |
local answer = '' | |
frame:TweenSizeAndPosition(UDim2.new(0.3,0,0.15,0), UDim2.new(0.35,0,0.425,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
game:GetService('TweenService'):Create(frame:FindFirstChild('UIStroke'), TweenInfo.new(1), {Thickness=3.5}):Play() | |
game:GetService('TweenService'):Create(Yes:FindFirstChild('UIStroke'), TweenInfo.new(1), {Thickness=2.5}):Play() | |
game:GetService('TweenService'):Create(No:FindFirstChild('UIStroke'), TweenInfo.new(1), {Thickness=2.5}):Play() | |
game:GetService('TweenService'):Create(TextLabel, TweenInfo.new(1), {TextTransparency=0}):Play() | |
game:GetService('TweenService'):Create(Yes, TweenInfo.new(1), {BackgroundTransparency=0}):Play() | |
game:GetService('TweenService'):Create(Yes, TweenInfo.new(1), {TextTransparency=0}):Play() | |
game:GetService('TweenService'):Create(No, TweenInfo.new(1), {BackgroundTransparency=0}):Play() | |
game:GetService('TweenService'):Create(No, TweenInfo.new(1), {TextTransparency=0}):Play() | |
frame.BackgroundTransparency = 0.25 | |
Yes.MouseButton1Click:Connect(function() | |
answer = 'Yes' | |
Yes:Destroy() | |
No:Destroy() | |
end) | |
No.MouseButton1Click:Connect(function() | |
answer = 'No' | |
Yes:Destroy() | |
No:Destroy() | |
Notification('Will not replace.', true, 1.5) | |
end) | |
repeat wait() until answer ~= '' | |
if answer == 'Yes' then | |
frame:TweenSizeAndPosition(UDim2.new(0,0,0,0), UDim2.new(0.5,0,0.5,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
game:GetService('TweenService'):Create(frame:FindFirstChild('UIStroke'), TweenInfo.new(1), {Thickness=0}):Play() | |
game:GetService('TweenService'):Create(TextLabel, TweenInfo.new(1), {TextTransparency=1}):Play() | |
wait(1) | |
ScreenGui:Destroy() | |
if game.Players.LocalPlayer.PlayerGui:FindFirstChild("tea's script") and game.Players.LocalPlayer.PlayerGui:FindFirstChild("tea's script"):FindFirstChild('On') then | |
game.Players.LocalPlayer.PlayerGui:FindFirstChild("tea's script"):FindFirstChild('On').Value = false | |
end | |
Load() | |
else | |
frame:TweenSizeAndPosition(UDim2.new(0,0,0,0), UDim2.new(0.5,0,0.5,0), Enum.EasingDirection.InOut, Enum.EasingStyle.Quad, 1) | |
game:GetService('TweenService'):Create(frame:FindFirstChild('UIStroke'), TweenInfo.new(1), {Thickness=0}):Play() | |
game:GetService('TweenService'):Create(TextLabel, TweenInfo.new(1), {TextTransparency=1}):Play() | |
wait(1) | |
ScreenGui:Destroy() | |
end | |
end | |
end | |
Load() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment