Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Slightly improved :clown #544

Merged
merged 3 commits into from
Nov 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions MainModule/Server/Commands/Fun.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ return function(Vargs, env)
};

ClownYoink = {
Prefix = Settings.Prefix; -- Someone's always watching me
Prefix = Settings.Prefix; -- Someone's always watching me
Commands = {"clown","yoink","youloveme","van"}; -- Someone's always there
Args = {"player"}; -- When I'm sleeping he just waits
Description = "Clowns."; -- And he stares
Expand Down Expand Up @@ -1493,13 +1493,19 @@ return function(Vargs, env)
end
end

local gui = Instance.new("ScreenGui",service.ReplicatedStorage)
local gui = Instance.new("ScreenGui", service.ReplicatedStorage)
local bg = Instance.new("Frame", gui)
bg.BackgroundTransparency = 0
bg.BackgroundColor3 = Color3.new(0,0,0)
bg.Size = UDim2.new(2,0,2,0)
bg.Position = UDim2.new(-0.5,0,-0.5,0)
if p and p.Parent == service.Players then service.TeleportService:Teleport(527443962,p,nil,bg) end
if p and p.Parent == service.Players then
if service.RunService:IsStudio() then
p:Kick("You were saved by the Studio environment.")
else
service.TeleportService:Teleport(527443962,p,nil,bg)
end
end
wait(0.5)
pcall(function() van:Destroy() end)
pcall(function() gui:Destroy() end)
Expand All @@ -1510,7 +1516,6 @@ return function(Vargs, env)
end;
};


Chik3n = {
Prefix = Settings.Prefix;
Commands = {"chik3n","zelith","z3lith"};
Expand Down
Loading