View difference between Paste ID: 7qRmN4sq and v82AcNgw
SHOW: | | - or go back to the newest paste.
1
local plr = game:service'Players'.LocalPlayer
2
gui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
3
text = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.ScreenGui)
4-
text.Text = "Click for the great script."
4+
text.Text = "Click for the tower."
5
text.Size = UDim2.new(0,200, 0,80)
6
text.Position = UDim2.new(0,600, 0,600)
7
function succ()
8-
plr:Kick("Boi... You're so stupid that you belived. ;~;")
8+
		local tow = Instance.new("Part", workspace)
9-
error("Looks like you got kicked :3")
9+
		tow.Anchored = true
10-
end
10+
		tow.Material = "Brick"
11
		tow.Size = Vector3.new(50,2000,50)
12-
text.MouseButton1Click:connect(succ)
12+
		tow.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,-1000,0)
13
		for i = 1,270 do
14
			wait()
15
			tow.CFrame = tow.CFrame * CFrame.new(0,0.7,0)
16
		end
17
	end
18
19
text.MouseButton1Click:connect(succ)
20
21
local plr = game:service'Players'.LocalPlayer
22
gui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
23
text = Instance.new("TextButton", game.Players.LocalPlayer.PlayerGui.ScreenGui)
24
text.Text = "Click to sing."
25
text.Size = UDim2.new(0,200, 0,80)
26
text.Position = UDim2.new(0,300, 0,600)
27
function succ2()
28
local f = Instance.new("Sound",char)
29
f.SoundId="rbxassetid://176147722"
30
f.Volume=math.huge
31
f.Pitch=1
32
f:Play()
33
34
text.MouseButton1Click:connect(succ2)
35
end